dxFeed Graal CXX API v7.0.0
Loading...
Searching...
No Matches
Candle.hpp
1// Copyright (c) 2025 Devexperts LLC.
2// SPDX-License-Identifier: MPL-2.0
3
4#pragma once
5
6#include "../../internal/Conf.hpp"
7
9
10#include "../../internal/Common.hpp"
11#include "../EventType.hpp"
12#include "../LastingEvent.hpp"
13#include "../TimeSeriesEvent.hpp"
14#include "./CandleSymbol.hpp"
15
16#include <cstdint>
17#include <memory>
18#include <string>
19
20/**
21 * \addtogroup dxfcpp_candle
22 * @{
23 */
24
26
27class EventTypeEnum;
28struct EventMapper;
29
30/**
31 * Candle event with open, high, low, close prices and other information for a specific period.
32 * Candles are built with a specified CandlePeriod using a specified CandlePrice type with data taken from the
33 * specified CandleExchange from the specified CandleSession with further details of aggregation provided by
34 * CandleAlignment.
35 *
36 * <p> Event symbol of the candle is represented with CandleSymbol class.
37 * Since the `Candle is a time-series event, it is typically subscribed to using DXFeedTimeSeriesSubscription class
38 * that handles the necessary wrapping of the symbol into TimeSeriesSubscriptionSymbol to specify a subscription
39 * time range.
40 *
41 * <h3><a name="eventFlagsSection">Event flags, transactions, and snapshots.</a></h3>
42 *
43 * Some candle sources provide a consistent view of the set of known candles.
44 * The corresponding information is carried in @ref Candle::getEventFlags() "eventFlags" property.
45 * The logic behind this property is detailed in IndexedEvent class documentation.
46 * Multiple event sources for the same symbol are not supported for candles, thus @ref Candle::getSource() "source"
47 * property is always @ref IndexedEventSource::DEFAULT "DEFAULT".
48 *
49 * <p>TimeSeriesEventModel class handles all the snapshot and transaction logic and conveniently represents a list
50 * current of time-series events ordered by their @ref Candle::getTime() "time".
51 *
52 * <h3>Publishing Candles</h3>
53 *
54 * Publishing of candle events follows the general rules explained in TimeSeriesEvent class documentation.
55 *
56 * <h3>Implementation details</h3>
57 *
58 * This event is implemented on top of QDS record `TradeHistory` for tick candles with CandlePeriod::TICK,
59 * records `Trade.<period>` for a certain set of popular periods, and QDS record `Candle` for arbitrary custom
60 * periods, with a set of `Candle{<attributes>}` records for popular combinations of custom candle symbol attributes
61 * like CandlePrice for an efficient support of bid-ask charting.
62 */
63class DXFCPP_EXPORT Candle final : public EventTypeWithSymbol<CandleSymbol>,
64 public TimeSeriesEvent,
65 public LastingEvent {
66 friend struct EventMapper;
67
68 static constexpr std::uint64_t SECONDS_SHIFT = 32ULL;
69 static constexpr std::uint64_t MILLISECONDS_SHIFT = 22ULL;
70 static constexpr std::uint64_t MILLISECONDS_MASK = 0x3ffULL;
71
72 /*
73 * EventFlags property has several significant bits that are packed into an integer in the following way:
74 * 31..7 6 5 4 3 2 1 0
75 * +---------+----+----+----+----+----+----+----+
76 * | | SM | | SS | SE | SB | RE | TX |
77 * +---------+----+----+----+----+----+----+----+
78 */
79
80 std::optional<CandleSymbol> eventSymbol_{};
81
82 struct Data {
83 // dxfg_event_type_t event_type;
84 // const char *event_symbol;
85 std::int64_t eventTime{};
86 std::int32_t eventFlags{};
87 std::int64_t index{};
88 std::int64_t count{};
89 double open = math::NaN;
90 double high = math::NaN;
91 double low = math::NaN;
92 double close = math::NaN;
93 double volume = math::NaN;
94 double vwap = math::NaN;
95 double bidVolume = math::NaN;
96 double askVolume = math::NaN;
97 double impVolatility = math::NaN;
98 double openInterest = math::NaN;
99 };
100
101 Data data_{};
102
103 void fillData(void *graalNative);
104 void fillGraalData(void *graalNative) const;
105 static void freeGraalData(void *graalNative) noexcept;
106
107 public:
108 /// The alias to a type of shared pointer to the Candle object
109 using Ptr = std::shared_ptr<Candle>;
110
111 /// The alias to a type of unique pointer to the Candle object
112 using Unique = std::unique_ptr<Candle>;
113
114 /// Type identifier and additional information about the current event class.
115 static const EventTypeEnum &TYPE;
116
117 /**
118 * Maximum allowed sequence value.
119 *
120 * @see Candle::setSequence()
121 */
122 static constexpr std::uint32_t MAX_SEQUENCE = (1U << 22U) - 1U;
123
124 /**
125 * Creates an object of the current type and fills it with data from the dxFeed Graal SDK structure.
126 *
127 * @param graalNative The pointer to the dxFeed Graal SDK structure.
128 * @return The object of the current type.
129 * @throws InvalidArgumentException
130 */
131 static Ptr fromGraal(void *graalNative);
132
133 /**
134 * Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
135 * Fills the dxFeed Graal SDK structure's fields by the data of the current entity (recursively if necessary).
136 * Returns the pointer to the filled structure.
137 *
138 * @return The pointer to the filled dxFeed Graal SDK structure
139 */
140 void *toGraal() const override;
141
142 ///
143 void assign(std::shared_ptr<EventType> event) override;
144
145 /**
146 * Releases the memory occupied by the dxFeed Graal SDK structure (recursively if necessary).
147 *
148 * @param graalNative The pointer to the dxFeed Graal SDK structure.
149 * @throws InvalidArgumentException
150 */
151 static void freeGraal(void *graalNative);
152
153 /**
154 * Creates a new candle with default values.
155 */
156 Candle() noexcept;
157
158 /**
159 * Creates a new candle with the specified candle event symbol.
160 * @param eventSymbol candle event symbol.
161 */
162 explicit Candle(CandleSymbol eventSymbol) noexcept;
163
164 // EventType methods
165
166 /**
167 * Returns a symbol of this event.
168 *
169 * @return symbol of this event or dxfcpp::CandleSymbol::NUL (`dxfcpp::CandleSymbol{"<null>"}`)
170 */
171 const CandleSymbol &getEventSymbol() const & noexcept override;
172
173 /**
174 * Returns a symbol of this event.
175 *
176 * @return symbol of this event or `std::nullopt`.
177 */
178 const std::optional<CandleSymbol> &getEventSymbolOpt() const & noexcept override;
179
180 ///
181 void setEventSymbol(const CandleSymbol &eventSymbol) noexcept override;
182
183 /**
184 * Changes an event's symbol and returns the current candle.
185 *
186 * @param eventSymbol The symbol of this event.
187 * @return The current candle.
188 */
189 Candle &withEventSymbol(const CandleSymbol &eventSymbol) noexcept;
190
191 ///
192 std::int64_t getEventTime() const noexcept override;
193
194 ///
195 void setEventTime(std::int64_t eventTime) noexcept override;
196
197 /**
198 * Changes event's creation time and returns the current candle.
199 *
200 * @param eventTime the difference, measured in milliseconds, between the event creation time and
201 * midnight, January 1, 1970 UTC.
202 * @return The current candle.
203 */
204 Candle &withEventTime(std::int64_t eventTime) noexcept;
205
206 // IndexedEvent methods
207
208 ///
209 std::int32_t getEventFlags() const noexcept override;
210
211 ///
212 EventFlagsMask getEventFlagsMask() const noexcept override;
213
214 ///
215 void setEventFlags(std::int32_t eventFlags) noexcept override;
216
217 /**
218 * Changes transactional event flags and returns the current candle.
219 * See EventFlag "Event Flags" section.
220 *
221 * @param eventFlags transactional event flags.
222 * @return The current candle.
223 */
224 Candle &withEventFlags(std::int32_t eventFlags) noexcept;
225
226 ///
227 void setEventFlags(const EventFlagsMask &eventFlags) noexcept override;
228
229 /**
230 * Changes transactional event flags and returns the current candle.
231 * See EventFlag "Event Flags" section.
232 *
233 * @param eventFlags transactional event flags' mask.
234 * @return The current candle.
235 */
236 Candle &withEventFlags(const EventFlagsMask &eventFlags) noexcept;
237
238 ///
239 void setIndex(std::int64_t index) override;
240
241 /**
242 * Changes the unique per-symbol index of this event.
243 * Returns the current candle.
244 *
245 * @param index unique per-symbol index of this candle.
246 * @return The current candle.
247 */
248 Candle &withIndex(std::int64_t index) noexcept;
249
250 // TimeSeriesEvent methods
251
252 ///
253 std::int64_t getIndex() const noexcept override;
254
255 /**
256 * Returns the timestamp of the event in milliseconds.
257 *
258 * @return timestamp of the event in milliseconds
259 */
260 std::int64_t getTime() const noexcept override;
261
262 // Candle methods
263
264 /**
265 * Changes the timestamp of the event in milliseconds.
266 *
267 * @param time timestamp of the event in milliseconds.
268 * @see Candle::getTime()
269 */
270 void setTime(std::int64_t time) noexcept;
271
272 /**
273 * Changes the timestamp of the event in milliseconds.
274 * Returns the current candle.
275 *
276 * @param time timestamp of the event in milliseconds.
277 * @return The current candle.
278 */
279 Candle &withTime(std::int64_t time) noexcept;
280
281 /**
282 * Returns the sequence number of this event to distinguish events that have the same @ref Candle::getTime() "time".
283 * This sequence number does not have to be unique and does not need to be sequential.
284 * Sequence can range from 0 to Candle::MAX_SEQUENCE.
285 *
286 * @return The sequence number of this event
287 */
288 std::int32_t getSequence() const noexcept;
289
290 /**
291 * Changes @ref Candle::getSequence() "sequence number" of this event.
292 *
293 * @param sequence the sequence.
294 * @see Candle::getSequence()
295 * @throws InvalidArgumentException if the sequence is below zero or above ::MAX_SEQUENCE.
296 */
297 void setSequence(std::int32_t sequence);
298
299 /**
300 * Changes @ref Candle::getSequence() "sequence number" of this event.
301 * Returns the current candle.
302 *
303 * @param sequence the sequence.
304 * @return The current candle.
305 * @see Candle::getSequence()
306 */
307 Candle &withSequence(std::int32_t sequence) noexcept;
308
309 /**
310 * Returns total number of original trade (or quote) events in this candle.
311 * @return Total number of original trade (or quote) events in this candle.
312 */
313 std::int64_t getCount() const noexcept;
314
315 /**
316 * Changes total number of original trade (or quote) events in this candle.
317 * @param count Total number of original trade (or quote) events in this candle.
318 */
319 void setCount(std::int64_t count) noexcept;
320
321 /**
322 * Changes total number of original trade (or quote) events in this candle.
323 * Returns the current candle.
324 *
325 * @param count Total number of original trade (or quote) events in this candle.
326 * @return The current candle.
327 */
328 Candle &withCount(std::int64_t count) noexcept;
329
330 /**
331 * Returns the first (open) price of this candle.
332 * @return The first (open) price of this candle.
333 */
334 double getOpen() const noexcept;
335
336 /**
337 * Changes the first (open) price of this candle.
338 * @param open The first (open) price of this candle.
339 */
340 void setOpen(double open) noexcept;
341
342 /**
343 * Changes the first (open) price of this candle.
344 * Returns the current candle.
345 *
346 * @param open The first (open) price of this candle.
347 * @return The current candle.
348 */
349 Candle &withOpen(double open) noexcept;
350
351 /**
352 * Returns the maximal (high) price of this candle.
353 * @return The maximal (high) price of this candle.
354 */
355 double getHigh() const noexcept;
356
357 /**
358 * Changes the maximal (high) price of this candle.
359 * @param high The maximal (high) price of this candle.
360 */
361 void setHigh(double high) noexcept;
362
363 /**
364 * Changes the maximal (high) price of this candle.
365 * Returns the current candle.
366 *
367 * @param high The maximal (high) price of this candle.
368 * @return The current candle.
369 */
370 Candle &withHigh(double high) noexcept;
371
372 /**
373 * Returns the minimal (low) price of this candle.
374 * @return The minimal (low) price of this candle.
375 */
376 double getLow() const noexcept;
377
378 /**
379 * Changes the minimal (low) price of this candle.
380 * @param low The minimal (low) price of this candle.
381 */
382 void setLow(double low) noexcept;
383
384 /**
385 * Changes the minimal (low) price of this candle.
386 * Returns the current candle.
387 *
388 * @param low The minimal (low) price of this candle.
389 * @return The current candle.
390 */
391 Candle &withLow(double low) noexcept;
392
393 /**
394 * Returns the last (close) price of this candle.
395 * @return The last (close) price of this candle.
396 */
397 double getClose() const noexcept;
398
399 /**
400 * Changes the last (close) price of this candle.
401 * @param close The last (close) price of this candle.
402 */
403 void setClose(double close) noexcept;
404
405 /**
406 * Changes the last (close) price of this candle.
407 * Returns the current candle.
408 *
409 * @param close The last (close) price of this candle.
410 * @return The current candle.
411 */
412 Candle &withClose(double close) noexcept;
413
414 /**
415 * Returns total volume in this candle.
416 * @return Total volume in this candle.
417 */
418 double getVolume() const noexcept;
419
420 /**
421 * Changes total volume in this candle.
422 * @param volume Total volume in this candle.
423 */
424 void setVolume(double volume) noexcept;
425
426 /**
427 * Changes total volume in this candle.
428 * Returns the current candle.
429 *
430 * @param volume Total volume in this candle.
431 * @return The current candle.
432 */
433 Candle &withVolume(double volume) noexcept;
434
435 /**
436 * Returns volume-weighted average price (VWAP) in this candle.
437 * Total turnover in this candle can be computed with <code>getVWAP() * @ref Candle::getVolume()
438 * "getVolume"()</code>.
439 * @return Volume-weighted average price (VWAP) in this candle.
440 */
441 double getVWAP() const noexcept;
442
443 /**
444 * Changes volume-weighted average price (VWAP) in this candle.
445 * @param vwap Volume-weighted average price (VWAP) in this candle.
446 */
447 void setVWAP(double vwap) noexcept;
448
449 /**
450 * Changes volume-weighted average price (VWAP) in this candle.
451 * Returns the current candle.
452 *
453 * @param vwap Volume-weighted average price (VWAP) in this candle.
454 * @return The current candle.
455 */
456 Candle &withVWAP(double vwap) noexcept;
457
458 /**
459 * Returns bid volume in this candle.
460 * @return Bid volume in this candle.
461 */
462 double getBidVolume() const noexcept;
463
464 /**
465 * Changes bid volume in this candle.
466 * @param bidVolume Bid volume in this candle.
467 */
468 void setBidVolume(double bidVolume) noexcept;
469
470 /**
471 * Changes bid volume in this candle.
472 * Returns the current candle.
473 *
474 * @param bidVolume Bid volume in this candle.
475 * @return The current candle.
476 */
477 Candle &withBidVolume(double bidVolume) noexcept;
478
479 /**
480 * Returns ask volume in this candle.
481 * @return The ask volume in this candle.
482 */
483 double getAskVolume() const noexcept;
484
485 /**
486 * Changes ask volume in this candle.
487 * @param askVolume The ask volume in this candle.
488 */
489 void setAskVolume(double askVolume) noexcept;
490
491 /**
492 * Changes ask volume in this candle.
493 * Returns the current candle.
494 *
495 * @param askVolume The ask volume in this candle.
496 * @return The current candle.
497 */
498 Candle &withAskVolume(double askVolume) noexcept;
499
500 /**
501 * Returns the implied volatility.
502 * @return The implied volatility.
503 */
504 double getImpVolatility() const noexcept;
505
506 /**
507 * Changes implied volatility.
508 * @param impVolatility The implied volatility.
509 */
510 void setImpVolatility(double impVolatility);
511
512 /**
513 * Changes implied volatility.
514 * Returns the current candle.
515 *
516 * @param impVolatility The implied volatility.
517 * @return The current candle.
518 */
519 Candle &withImpVolatility(double impVolatility) noexcept;
520
521 /**
522 * Returns the open interest.
523 * @return The open interest.
524 */
525 double getOpenInterest() const noexcept;
526
527 /**
528 * Changes the open interest.
529 * @param openInterest The open interest.
530 */
531 void setOpenInterest(double openInterest) noexcept;
532
533 /**
534 * Changes the open interest.
535 * Returns the current candle.
536 *
537 * @param openInterest The open interest.
538 * @return The current candle.
539 */
540 Candle &withOpenInterest(double openInterest) noexcept;
541
542 // EventType methods
543
544 std::string toString() const override;
545};
546
548
549/// @}
550
#define DXFCPP_MACRO_CONCAT_INNER(a, b)
Definition Common.hpp:129
#define DXFCPP_MACRO_CONCAT(a, b)
Definition Common.hpp:128
#define DXFCPP_MACRO_UNIQUE_NAME(base)
Definition Common.hpp:130
#define DXFCXX_DISABLE_MSC_WARNINGS_POP()
Definition Conf.hpp:31
#define DXFCPP_END_NAMESPACE
Definition Conf.hpp:97
#define DXFCPP_BEGIN_NAMESPACE
Definition Conf.hpp:94
#define DXFCXX_DISABLE_GCC_WARNINGS_PUSH(warnings)
Definition Conf.hpp:47
#define DXFCXX_DISABLE_GCC_WARNINGS_POP()
Definition Conf.hpp:49
#define DXFCXX_DISABLE_MSC_WARNINGS_PUSH(warnings)
Definition Conf.hpp:30
#define DXFCPP_TRACE_ISOLATES
Definition Debug.hpp:19
#define DXFCPP_DEBUG
Definition Debug.hpp:15
#define DXFCPP_TRACE_LISTS
Definition Debug.hpp:22
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_with_name(dxfc_dxendpoint_builder_t builderHandle, const char *name)
Changes the name used to distinguish multiple endpoints in the same process (GraalVM Isolate) in logs...
Definition DXEndpoint.cpp:692
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_with_properties(dxfc_dxendpoint_builder_t builder, const dxfc_dxendpoint_property_t **properties, size_t size)
Sets all supported properties from the provided properties object.
Definition DXEndpoint.cpp:725
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_password(dxfc_dxendpoint_t endpoint, const char *password)
Changes password for this endpoint.
Definition DXEndpoint.cpp:973
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_publisher(dxfc_dxendpoint_t endpoint, DXFC_OUT dxfc_dxpublisher_t *publisher)
Definition DXEndpoint.cpp:1163
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_supports_property(dxfc_dxendpoint_builder_t builder, const char *key, DXFC_OUT int *supports)
Checks if a property is supported.
Definition DXEndpoint.cpp:752
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_add_state_change_listener(dxfc_dxendpoint_t endpoint, dxfc_dxendpoint_state_change_listener listener)
Adds a listener notified about changes in state property.
Definition DXEndpoint.cpp:1109
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_disconnect(dxfc_dxendpoint_t endpoint)
Terminates all remote network connections.
Definition DXEndpoint.cpp:1024
#define DXFCPP_EXPORT
Definition api.h:35
void * dxfc_dxendpoint_builder_t
The dxFeed endpoint's builder handle.
Definition api.h:207
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_close_and_await_termination(dxfc_dxendpoint_t endpoint)
Closes this endpoint and wait until all pending data processing tasks are completed.
Definition DXEndpoint.cpp:922
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_await_not_connected(dxfc_dxendpoint_t endpoint)
Waits while this endpoint state becomes NOT_CONNECTED or CLOSED.
Definition DXEndpoint.cpp:1075
dxfc_dxendpoint_state_t
Represents the current state of endpoint.
Definition api.h:149
@ DXFC_DXENDPOINT_STATE_CLOSED
Endpoint was closed.
Definition api.h:169
@ DXFC_DXENDPOINT_STATE_NOT_CONNECTED
Endpoint was created by is not connected to remote endpoints.
Definition api.h:153
@ DXFC_DXENDPOINT_STATE_CONNECTING
The connect function was called to establish connection to remove endpoint, but the connection is not...
Definition api.h:159
@ DXFC_DXENDPOINT_STATE_CONNECTED
The connection to the remote endpoint is established.
Definition api.h:164
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_instance(void *user_data, DXFC_OUT dxfc_dxendpoint_t *endpoint)
Returns a default application-wide singleton instance of dxFeed endpoint with a FEED role.
Definition DXEndpoint.cpp:811
#define DXFC_OUT
Definition api.h:17
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_state(dxfc_dxendpoint_t endpoint, DXFC_OUT dxfc_dxendpoint_state_t *state)
Returns the state of this endpoint.
Definition DXEndpoint.cpp:1092
void * dxfc_dxendpoint_t
The dxFeed endpoint handle.
Definition api.h:198
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_with_property(dxfc_dxendpoint_builder_t builder, const char *key, const char *value)
Sets the specified property.
Definition DXEndpoint.cpp:708
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_free(dxfc_dxendpoint_builder_t builder)
Removes a builder from the registry.
Definition DXEndpoint.cpp:799
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_connect(dxfc_dxendpoint_t endpoint, const char *address)
Connects to the specified remote address.
Definition DXEndpoint.cpp:990
dxfc_error_code_t
List of error codes.
Definition api.h:49
@ DXFC_EC_ERROR
The error returned if the current operation cannot be completed.
Definition api.h:60
@ DXFC_EC_SUCCESS
OK.
Definition api.h:53
@ DXFC_EC_G_ERR
dxFeed Graal Native API error.
Definition api.h:57
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_remove_state_change_listener(dxfc_dxendpoint_t endpoint, dxfc_dxendpoint_state_change_listener listener)
Removes a listener notified about changes in state property.
Definition DXEndpoint.cpp:1135
DXFCPP_EXPORT dxfc_error_code_t dxfc_system_set_property(const char *key, const char *value)
Sets the system property indicated by the specified key.
Definition System.cpp:73
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_build(dxfc_dxendpoint_builder_t builder, void *user_data, DXFC_OUT dxfc_dxendpoint_t *endpoint)
Builds the new dxFeed endpoint instance.
Definition DXEndpoint.cpp:769
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_feed(dxfc_dxendpoint_t endpoint, DXFC_OUT dxfc_dxfeed_t *feed)
Definition DXEndpoint.cpp:1158
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_await_processed(dxfc_dxendpoint_t endpoint)
Waits until this endpoint stops processing data (becomes quiescent).
Definition DXEndpoint.cpp:1058
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_close(dxfc_dxendpoint_t endpoint)
Closes this endpoint.
Definition DXEndpoint.cpp:905
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_new_builder(DXFC_OUT dxfc_dxendpoint_builder_t *builder)
Creates a new dxFeed endpoint's builder instance.
Definition DXEndpoint.cpp:659
void(* dxfc_dxendpoint_state_change_listener)(dxfc_dxendpoint_state_t old_state, dxfc_dxendpoint_state_t new_state, void *user_data)
The endpoint current state change listener.
Definition api.h:178
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_reconnect(dxfc_dxendpoint_t endpoint)
Terminates all established network connections and initiates connecting again with the same address.
Definition DXEndpoint.cpp:1007
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_role(dxfc_dxendpoint_t endpoint, DXFC_OUT dxfc_dxendpoint_role_t *role)
Returns the role of this endpoint.
Definition DXEndpoint.cpp:939
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_user(dxfc_dxendpoint_t endpoint, const char *user)
Changes username for this endpoint.
Definition DXEndpoint.cpp:956
DXFCPP_EXPORT dxfc_error_code_t dxfc_system_get_property(const char *key, DXFC_OUT char *buffer, size_t buffer_size)
Gets the system property indicated by the specified key.
dxfc_dxendpoint_role_t
Represents the role of an endpoint that was specified during its creation.
Definition api.h:89
@ DXFC_DXENDPOINT_ROLE_PUBLISHER
PUBLISHER endpoint connects to the remote publisher hub (also known as multiplexor) or creates a publ...
Definition api.h:127
@ DXFC_DXENDPOINT_ROLE_STREAM_FEED
STREAM_FEED endpoint is similar to DXFC_DXENDPOINT_ROLE_FEED and also connects to the remote data fee...
Definition api.h:116
@ DXFC_DXENDPOINT_ROLE_FEED
FEED endpoint connects to the remote data feed provider and is optimized for real-time or delayed dat...
Definition api.h:99
@ DXFC_DXENDPOINT_ROLE_STREAM_PUBLISHER
STREAM_PUBLISHER endpoint is similar to DXFC_DXENDPOINT_ROLE_PUBLISHER and also connects to the remot...
Definition api.h:136
@ DXFC_DXENDPOINT_ROLE_LOCAL_HUB
LOCAL_HUB endpoint is a local hub without the ability to establish network connections.
Definition api.h:143
@ DXFC_DXENDPOINT_ROLE_ON_DEMAND_FEED
ON_DEMAND_FEED endpoint is similar to DXFC_DXENDPOINT_ROLE_FEED, but it is designed to be used with d...
Definition api.h:107
void * dxfc_dxpublisher_t
The dxFeed publisher handle.
Definition api.h:217
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_create(void *user_data, DXFC_OUT dxfc_dxendpoint_t *endpoint)
Creates an endpoint with FEED role.
Definition DXEndpoint.cpp:858
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_get_instance2(dxfc_dxendpoint_role_t role, void *user_data, DXFC_OUT dxfc_dxendpoint_t *endpoint)
Returns a default application-wide singleton instance of DXEndpoint for a specific role.
Definition DXEndpoint.cpp:834
void * dxfc_dxfeed_t
The dxFeed handle.
Definition api.h:212
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_builder_with_role(dxfc_dxendpoint_builder_t builder, dxfc_dxendpoint_role_t role)
Sets role for the created dxFeed endpoint.
Definition DXEndpoint.cpp:675
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_create2(dxfc_dxendpoint_role_t role, void *user_data, DXFC_OUT dxfc_dxendpoint_t *endpoint)
Creates an endpoint with a specified role.
Definition DXEndpoint.cpp:881
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_free(dxfc_dxendpoint_t endpoint)
Removes the dxFeed endpoint from the registry.
Definition DXEndpoint.cpp:1168
DXFCPP_EXPORT dxfc_error_code_t dxfc_dxendpoint_disconnect_and_clear(dxfc_dxendpoint_t endpoint)
Terminates all remote network connections and clears stored data.
Definition DXEndpoint.cpp:1041
void setSequence(std::int32_t sequence)
Changes sequence number of this event.
Definition Candle.cpp:254
Candle & withBidVolume(double bidVolume) noexcept
Changes bid volume in this candle.
Definition Candle.cpp:377
double getImpVolatility() const noexcept
Returns the implied volatility.
Definition Candle.cpp:397
void setClose(double close) noexcept
Changes the last (close) price of this candle.
Definition Candle.cpp:331
Candle & withSequence(std::int32_t sequence) noexcept
Changes sequence number of this event.
Definition Candle.cpp:265
void setTime(std::int64_t time) noexcept
Changes the timestamp of the event in milliseconds.
Definition Candle.cpp:238
void setBidVolume(double bidVolume) noexcept
Changes bid volume in this candle.
Definition Candle.cpp:373
void setEventFlags(std::int32_t eventFlags) noexcept override
Changes transactional event flags.
Definition Candle.cpp:196
static Ptr fromGraal(void *graalNative)
Creates an object of the current type and fills it with data from the dxFeed Graal SDK structure.
Definition Candle.cpp:84
void assign(std::shared_ptr< EventType > event) override
Replaces the contents of the event.
Definition Candle.cpp:117
void setImpVolatility(double impVolatility)
Changes implied volatility.
Definition Candle.cpp:401
Candle & withOpen(double open) noexcept
Changes the first (open) price of this candle.
Definition Candle.cpp:293
Candle & withHigh(double high) noexcept
Changes the maximal (high) price of this candle.
Definition Candle.cpp:307
Candle & withCount(std::int64_t count) noexcept
Changes total number of original trade (or quote) events in this candle.
Definition Candle.cpp:279
Candle & withAskVolume(double askVolume) noexcept
Changes ask volume in this candle.
Definition Candle.cpp:391
double getAskVolume() const noexcept
Returns ask volume in this candle.
Definition Candle.cpp:383
std::int64_t getTime() const noexcept override
Returns the timestamp of the event in milliseconds.
Definition Candle.cpp:232
Candle(CandleSymbol eventSymbol) noexcept
Creates a new candle with the specified candle event symbol.
Definition Candle.cpp:147
void setEventSymbol(const CandleSymbol &eventSymbol) noexcept override
Changes the event symbol that identifies this event type in subscription.
Definition Candle.cpp:162
Candle() noexcept
Creates a new candle with default values.
Definition Candle.cpp:144
void setOpen(double open) noexcept
Changes the first (open) price of this candle.
Definition Candle.cpp:289
const std::optional< CandleSymbol > & getEventSymbolOpt() const &noexcept override
Returns a symbol of this event.
Definition Candle.cpp:158
double getOpen() const noexcept
Returns the first (open) price of this candle.
Definition Candle.cpp:285
void setEventTime(std::int64_t eventTime) noexcept override
Changes event creation time.
Definition Candle.cpp:176
std::int64_t getCount() const noexcept
Returns total number of original trade (or quote) events in this candle.
Definition Candle.cpp:271
void setAskVolume(double askVolume) noexcept
Changes ask volume in this candle.
Definition Candle.cpp:387
double getBidVolume() const noexcept
Returns bid volume in this candle.
Definition Candle.cpp:369
Candle & withEventFlags(const EventFlagsMask &eventFlags) noexcept
Changes transactional event flags and returns the current candle.
Definition Candle.cpp:210
const CandleSymbol & getEventSymbol() const &noexcept override
Returns a symbol of this event.
Definition Candle.cpp:150
double getHigh() const noexcept
Returns the maximal (high) price of this candle.
Definition Candle.cpp:299
Candle & withClose(double close) noexcept
Changes the last (close) price of this candle.
Definition Candle.cpp:335
void setHigh(double high) noexcept
Changes the maximal (high) price of this candle.
Definition Candle.cpp:303
double getVWAP() const noexcept
Returns volume-weighted average price (VWAP) in this candle.
Definition Candle.cpp:355
Candle & withVolume(double volume) noexcept
Changes total volume in this candle.
Definition Candle.cpp:349
Candle & withEventFlags(std::int32_t eventFlags) noexcept
Changes transactional event flags and returns the current candle.
Definition Candle.cpp:200
void * toGraal() const override
Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
Definition Candle.cpp:104
double getLow() const noexcept
Returns the minimal (low) price of this candle.
Definition Candle.cpp:313
Candle & withIndex(std::int64_t index) noexcept
Changes the unique per-symbol index of this event.
Definition Candle.cpp:220
Candle & withLow(double low) noexcept
Changes the minimal (low) price of this candle.
Definition Candle.cpp:321
Candle & withEventSymbol(const CandleSymbol &eventSymbol) noexcept
Changes an event's symbol and returns the current candle.
Definition Candle.cpp:166
EventFlagsMask getEventFlagsMask() const noexcept override
Returns transactional event flags.
Definition Candle.cpp:192
double getVolume() const noexcept
Returns total volume in this candle.
Definition Candle.cpp:341
std::int64_t getIndex() const noexcept override
Returns unique per-symbol index of this event.
Definition Candle.cpp:228
void setLow(double low) noexcept
Changes the minimal (low) price of this candle.
Definition Candle.cpp:317
void setEventFlags(const EventFlagsMask &eventFlags) noexcept override
Changes transactional event flags.
Definition Candle.cpp:206
void setIndex(std::int64_t index) override
Changes unique per-symbol index of this event.
Definition Candle.cpp:216
Candle & withImpVolatility(double impVolatility) noexcept
Changes implied volatility.
Definition Candle.cpp:405
void setOpenInterest(double openInterest) noexcept
Changes the open interest.
Definition Candle.cpp:415
static void freeGraal(void *graalNative)
Releases the memory occupied by the dxFeed Graal SDK structure (recursively if necessary).
Definition Candle.cpp:124
Candle & withOpenInterest(double openInterest) noexcept
Changes the open interest.
Definition Candle.cpp:419
std::int64_t getEventTime() const noexcept override
Returns time when an event was created or zero when time is not available.
Definition Candle.cpp:172
Candle & withTime(std::int64_t time) noexcept
Changes the timestamp of the event in milliseconds.
Definition Candle.cpp:244
Candle & withVWAP(double vwap) noexcept
Changes volume-weighted average price (VWAP) in this candle.
Definition Candle.cpp:363
static constexpr std::uint32_t MAX_SEQUENCE
Maximum allowed sequence value.
Definition Candle.hpp:122
void setVWAP(double vwap) noexcept
Changes volume-weighted average price (VWAP) in this candle.
Definition Candle.cpp:359
static const EventTypeEnum & TYPE
Type identifier and additional information about the current event class.
Definition Candle.hpp:115
double getClose() const noexcept
Returns the last (close) price of this candle.
Definition Candle.cpp:327
Candle & withEventTime(std::int64_t eventTime) noexcept
Changes event's creation time and returns the current candle.
Definition Candle.cpp:180
std::int32_t getSequence() const noexcept
Returns the sequence number of this event to distinguish events that have the same time.
Definition Candle.cpp:250
std::int32_t getEventFlags() const noexcept override
Returns transactional event flags.
Definition Candle.cpp:188
void setCount(std::int64_t count) noexcept
Changes total number of original trade (or quote) events in this candle.
Definition Candle.cpp:275
double getOpenInterest() const noexcept
Returns the open interest.
Definition Candle.cpp:411
std::string toString() const override
Returns a string representation of the current object.
Definition Candle.cpp:427
void setVolume(double volume) noexcept
Changes total volume in this candle.
Definition Candle.cpp:345
Builder class for DXEndpoint that supports additional configuration properties.
Definition DXEndpoint.hpp:850
std::shared_ptr< DXEndpoint > build()
Builds DXEndpoint instance.
Definition DXEndpoint.cpp:335
std::shared_ptr< Builder > withName(const StringLike &name)
Changes the name used to distinguish multiple endpoints in the same process (GraalVM Isolate) in logs...
Definition DXEndpoint.cpp:378
bool supportsProperty(const StringLike &key) const
Checks if a property is supported.
Definition DXEndpoint.cpp:325
std::shared_ptr< Builder > withProperties(Properties &&properties)
Sets all supported properties from the provided properties object.
Definition DXEndpoint.hpp:939
~Builder() noexcept override
Releases the GraalVM handle.
Definition DXEndpoint.cpp:367
std::shared_ptr< Builder > withRole(Role role)
Sets role for the created DXEndpoint.
Definition DXEndpoint.cpp:297
std::shared_ptr< Builder > withProperty(const StringLike &key, const StringLike &value)
Sets the specified property.
Definition DXEndpoint.cpp:310
Subscription for a set of symbols and event types.
Definition DXFeedSubscription.hpp:44
bool containsEventType(const EventTypeEnum &eventType) override
Returns true if this subscription contains the corresponding event type.
Definition DXFeedSubscription.cpp:227
std::size_t addChangeListener(std::shared_ptr< ObservableSubscriptionChangeListener > listener) override
Adds subscription change listener.
Definition DXFeedSubscription.cpp:318
bool isClosed() override
Returns true if this subscription is closed.
Definition DXFeedSubscription.cpp:205
void addSymbols(SymbolIt begin, SymbolIt end) const
Adds the specified collection (using iterators) of symbols to the set of subscribed symbols.
Definition DXFeedSubscription.hpp:433
void close() const
Closes this subscription and makes it permanently detached.
Definition DXFeedSubscription.cpp:214
void setEventsBatchLimit(std::int32_t eventsBatchLimit) const
Sets maximum number of events in the single notification of OnEventHandler.
Definition DXFeedSubscription.cpp:356
std::unordered_set< EventTypeEnum > getEventTypes() override
Returns a set of subscribed event types.
Definition DXFeedSubscription.cpp:223
void setSymbols(std::initializer_list< SymbolWrapper > collection) const
Changes the set of subscribed symbols so that it contains just the symbols from the specified collect...
Definition DXFeedSubscription.cpp:258
void removeSymbols(SymbolIt begin, SymbolIt end) const
Removes the specified collection (using iterators) of symbols from the set of subscribed symbols.
Definition DXFeedSubscription.hpp:505
void removeSymbols(SymbolsCollection &&collection) const
Removes the specified collection of symbols from the set of subscribed symbols.
Definition DXFeedSubscription.hpp:531
static const std::int32_t MAX_BATCH_LIMIT
The maximum events' batch limit for a single notification in OnEventHandler.
Definition DXFeedSubscription.hpp:60
void removeSymbols(const SymbolWrapper &symbolWrapper) const
Removes the specified symbol from the set of subscribed symbols.
Definition DXFeedSubscription.cpp:277
void attach(std::shared_ptr< DXFeed > feed)
Attaches subscription to the specified feed.
Definition DXFeedSubscription.cpp:187
TimePeriod getAggregationPeriod() const
Returns the aggregation period for data for this subscription instance.
Definition DXFeedSubscription.cpp:292
std::string toString() const override
Returns a string representation of the current object.
Definition DXFeedSubscription.cpp:145
static const std::int32_t OPTIMAL_BATCH_LIMIT
The optimal events' batch limit for a single notification in OnEventHandler.
Definition DXFeedSubscription.hpp:55
std::size_t addEventListener(std::function< void(const std::vector< std::shared_ptr< EventT > > &)> &&listener)
Adds typed listener for events.
Definition DXFeedSubscription.hpp:674
void addSymbols(std::initializer_list< SymbolWrapper > collection) const
Adds the specified collection (initializer list) of symbols to the set of subscribed symbols.
Definition DXFeedSubscription.cpp:273
void setSymbols(SymbolsCollection &&collection) const
Changes the set of subscribed symbols so that it contains just the symbols from the specified collect...
Definition DXFeedSubscription.hpp:384
void setAggregationPeriod(const TimePeriod &aggregationPeriod) const
Sets the aggregation period for data.
Definition DXFeedSubscription.cpp:296
static std::shared_ptr< DXFeedSubscription > create(const EventTypeEnum &eventType)
Creates a detached subscription for a single event type.
Definition DXFeedSubscription.cpp:164
std::int32_t getEventsBatchLimit() const
Definition DXFeedSubscription.cpp:352
std::size_t addEventListener(EventListener &&listener)
Adds listener for events.
Definition DXFeedSubscription.hpp:619
static std::shared_ptr< DXFeedSubscription > create(EventTypesCollection &&eventTypes)
Creates a detached subscription for the given collection of event types.
Definition DXFeedSubscription.hpp:260
OnEventHandler & onEvent()
Returns a reference to an incoming events' handler (delegate), to which listeners can be added and re...
Definition DXFeedSubscription.cpp:312
void addSymbols(const SymbolsCollection &collection) const
Adds the specified collection of symbols to the set of subscribed symbols.
Definition DXFeedSubscription.hpp:459
void setSymbols(SymbolIt begin, SymbolIt end) const
Changes the set of subscribed symbols so that it contains just the symbols from the specified collect...
Definition DXFeedSubscription.hpp:358
void setAggregationPeriod(std::int64_t aggregationPeriod) const
Sets the aggregation period for data.
Definition DXFeedSubscription.cpp:304
void removeChangeListener(std::size_t changeListenerId) override
Removes subscription change listener by id.
Definition DXFeedSubscription.cpp:335
std::vector< SymbolWrapper > getDecoratedSymbols() const
Returns a set of decorated symbols (depending on the actual implementation of the subscription).
Definition DXFeedSubscription.cpp:249
void clear() const
Clears the set of subscribed symbols.
Definition DXFeedSubscription.cpp:231
void detach(std::shared_ptr< DXFeed > feed)
Detaches subscription from the specified feed.
Definition DXFeedSubscription.cpp:196
void addSymbols(const SymbolWrapper &symbolWrapper) const
Adds the specified symbol to the set of subscribed symbols.
Definition DXFeedSubscription.cpp:262
void setAggregationPeriod(std::chrono::milliseconds aggregationPeriod) const
Sets the aggregation period for data.
Definition DXFeedSubscription.cpp:300
void removeSymbols(std::initializer_list< SymbolWrapper > collection) const
Removes the specified collection (initializer list) of symbols from the set of subscribed symbols.
Definition DXFeedSubscription.cpp:288
std::vector< SymbolWrapper > getSymbols() const
Returns a set of subscribed symbols (depending on the actual implementation of the subscription).
Definition DXFeedSubscription.cpp:240
Extends DXFeedSubscription to conveniently subscribe to time-series of events for a set of symbols an...
Definition DXFeedSubscription.hpp:785
std::int64_t getFromTime()
Returns the earliest timestamp from which time-series of events shall be received.
Definition DXFeedSubscription.cpp:384
void setFromTime(std::chrono::milliseconds fromTime)
Sets the earliest timestamp from which time-series of events shall be received.
Definition DXFeedSubscription.cpp:395
void setFromTime(std::int64_t fromTime)
Sets the earliest timestamp from which time-series of events shall be received.
Definition DXFeedSubscription.cpp:388
bool in(std::uint32_t eventFlagsMask) const noexcept
Determines if the given flag is in the mask.
Definition IndexedEvent.cpp:27
std::uint32_t getFlag() const noexcept
Definition IndexedEvent.cpp:23
static bool isSnapshotSnip(const std::shared_ptr< Event > &event)
Determines if the given event is marked as a snapshot snip.
Definition EventFlag.hpp:344
friend std::int32_t operator|(const EventFlag &eventFlag1, std::int32_t eventFlag2) noexcept
Performs a bit or operation with two event flags.
Definition EventFlag.hpp:234
EventFlag() noexcept
Creates the invalid event flag.
Definition IndexedEvent.cpp:20
static bool isSnapshotBegin(const std::shared_ptr< Event > &event)
Determines if the given event marks the beginning of a snapshot.
Definition EventFlag.hpp:322
friend std::int32_t operator&(const EventFlag &eventFlag1, std::int32_t eventFlag2) noexcept
Performs a bit and operation with two event flags.
Definition EventFlag.hpp:256
static const EventFlag SNAPSHOT_SNIP
0x10 - A bitmask to get snapshot snip indicator from the value of eventFlags property.
Definition EventFlag.hpp:15
friend std::int32_t operator|(std::int32_t eventFlag1, const EventFlag &eventFlag2) noexcept
Performs a bit or operation with two event flags.
Definition EventFlag.hpp:245
static bool isPending(const std::shared_ptr< Event > &event)
Determines if the given event is in a pending state.
Definition EventFlag.hpp:365
friend std::int32_t operator&(std::int32_t eventFlag1, const EventFlag &eventFlag2) noexcept
Performs a bit and operation with two event flags.
Definition EventFlag.hpp:267
static const EventFlag SNAPSHOT_MODE
0x40 - A bitmask to set snapshot mode indicator into the value of eventFlags property.
Definition EventFlag.hpp:17
bool in(const EventFlagsMask &eventFlagsMask) const noexcept
Determines if the given flag is in the mask.
Definition EventFlag.hpp:211
static bool isRemove(const std::shared_ptr< Event > &event)
Determines if the given event is marked for removal.
Definition EventFlag.hpp:376
static bool isSnapshotEndOrSnip(const std::shared_ptr< Event > &event)
Determines if the given event marks the end of a snapshot or a snapshot snip.
Definition EventFlag.hpp:354
static const EventFlag TX_PENDING
0x01 - A bitmask to get transaction pending indicator from the value of eventFlags property.
Definition EventFlag.hpp:11
static const EventFlag SNAPSHOT_BEGIN
0x04 - A bitmask to get snapshot begin indicator from the value of eventFlags property.
Definition EventFlag.hpp:13
static const EventFlag REMOVE_SYMBOL
0x80 - For internal use.
Definition EventFlag.hpp:18
static const EventFlag SNAPSHOT_END
0x08 - A bitmask to get snapshot end indicator from the value of eventFlags property.
Definition EventFlag.hpp:14
static const EventFlag REMOVE_EVENT
0x02 - A bitmask to get removal indicator from the value of eventFlags property.
Definition EventFlag.hpp:12
static bool isSnapshotEnd(const std::shared_ptr< Event > &event)
Determines if the given event marks the end of a snapshot.
Definition EventFlag.hpp:333
constexpr std::uint32_t getMask() const noexcept
Returns an integer representation of an event mask.
Definition EventFlag.hpp:437
bool contains(const EventFlag &flag) const noexcept
Definition IndexedEvent.cpp:46
friend EventFlagsMask operator|(const EventFlagsMask &eventFlagsMask, const EventFlag &eventFlag) noexcept
Performs a bit or operation with an event flags' mask and an event flag.
Definition EventFlag.hpp:454
EventFlagsMask() noexcept
Creates an empty event flags mask.
Definition IndexedEvent.cpp:39
EventFlagsMask(std::initializer_list< EventFlag > eventFlags) noexcept
Creates event flags mask by initializer list with flags.
Definition IndexedEvent.cpp:42
EventFlagsMask(MaskType mask) noexcept
Create event flags mask by integer value.
Definition EventFlag.hpp:409
EventFlagsMask(EventFlagIt begin, EventFlagIt end) noexcept
Creates event flags mask by iterators of container with flags.
Definition EventFlag.hpp:419
friend EventFlagsMask operator&(const EventFlagsMask &eventFlagsMask, const EventFlag &eventFlag) noexcept
Performs a bit and operation with an event flags' mask and an event flag.
Definition EventFlag.hpp:465
The enumeration type that provides additional information about the dxFeed Graal C++-API event type.
Definition EventTypeEnum.hpp:26
bool isTimeSeries() const noexcept
Definition EventTypeEnum.cpp:148
const std::string & getClassName() const &noexcept
Definition EventTypeEnum.cpp:120
bool isLasting() const noexcept
Definition EventTypeEnum.cpp:140
bool isOnlyIndexed() const noexcept
Definition EventTypeEnum.cpp:152
bool isIndexed() const noexcept
Definition EventTypeEnum.cpp:144
std::uint32_t getId() const noexcept
Definition EventTypeEnum.cpp:112
bool isMarket() const noexcept
Definition EventTypeEnum.cpp:156
const std::string & getName() const &noexcept
Definition EventTypeEnum.cpp:116
Builder is a static inner class that provides a flexible and readable way to construct instances of t...
Definition HistoryEndpoint.hpp:113
std::shared_ptr< Builder > withAuthToken(const StringLike &authToken)
Sets the authentication token for the target endpoint.
Definition HistoryEndpoint.cpp:56
std::shared_ptr< Builder > withAddress(const StringLike &address)
Specifies the address for the target endpoint.
Definition HistoryEndpoint.cpp:38
std::shared_ptr< HistoryEndpoint > build() const
Builds and returns a configured instance of HistoryEndpoint.
Definition HistoryEndpoint.cpp:74
std::shared_ptr< Builder > withFormat(Format format)
Sets the format to be used for data handling.
Definition HistoryEndpoint.cpp:68
std::shared_ptr< Builder > withPassword(const StringLike &password)
Sets the password for the target endpoint.
Definition HistoryEndpoint.cpp:50
std::shared_ptr< Builder > withUserName(const StringLike &userName)
Sets the username for the target endpoint.
Definition HistoryEndpoint.cpp:44
std::shared_ptr< Builder > withCompression(Compression compression)
Sets the compression type to be used for data transmission or storage.
Definition HistoryEndpoint.cpp:62
std::shared_ptr< Builder > withAuthToken(const AuthToken &authToken)
Sets the authentication token for the target endpoint.
Definition HistoryEndpoint.hpp:160
Represents a subscription to a specific source of indexed events.
Definition IndexedEventSubscriptionSymbol.hpp:42
virtual const std::unique_ptr< SymbolWrapper > & getEventSymbol() const
Returns the wrapped event symbol (CandleSymbol, WildcardSymbol, etc.).
Definition IndexedEventSubscriptionSymbol.cpp:18
virtual void * toGraal() const
Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
Definition IndexedEventSubscriptionSymbol.cpp:26
static IndexedEventSubscriptionSymbol fromGraal(void *graalNative)
Creates an object of the current type and fills it with data from the dxFeed Graal SDK structure (rec...
Definition IndexedEventSubscriptionSymbol.cpp:48
virtual const std::unique_ptr< IndexedEventSource > & getSource() const
Returns indexed event source.
Definition IndexedEventSubscriptionSymbol.cpp:22
IndexedEventSubscriptionSymbol(const SymbolWrapper &eventSymbol, const IndexedEventSource &source)
Creates an indexed event subscription symbol with a specified event symbol and source.
Definition IndexedEventSubscriptionSymbol.cpp:12
static void freeGraal(void *graalNative)
Releases the memory occupied by the dxFeed Graal SDK structure (recursively if necessary).
Definition IndexedEventSubscriptionSymbol.cpp:35
virtual std::string toString() const
Returns string representation of this indexed event subscription symbol.
Definition IndexedEventSubscriptionSymbol.cpp:64
static const OrderSource GLBX
CME Globex.
Definition OrderSource.hpp:357
static const OrderSource smfe
Small Exchange.
Definition OrderSource.hpp:421
static const OrderSource bzx
Bats BZX Exchange.
Definition OrderSource.hpp:285
static const OrderSource DEX
Direct-Edge EDGX Exchange.
Definition OrderSource.hpp:252
static const OrderSource NTV
NASDAQ Total View.
Definition OrderSource.hpp:188
static const OrderSource AGGREGATE_ASK
Ask side of an aggregate order book (futures depth and NASDAQ Level II).
Definition OrderSource.hpp:141
static const OrderSource & valueOf(std::int32_t sourceId)
Returns order source for the specified source identifier.
Definition OrderSource.cpp:197
static const OrderSource ESPD
NASDAQ eSpeed.
Definition OrderSource.hpp:212
static const OrderSource CFE
CBOE Futures Exchange.
Definition OrderSource.hpp:397
static const OrderSource ntv
NASDAQ Total View.
Definition OrderSource.hpp:196
static const OrderSource ICE
Intercontinental Exchange.
Definition OrderSource.hpp:228
static const OrderSource BZX
Bats BZX Exchange.
Definition OrderSource.hpp:277
static const OrderSource C2OX
CBOE Options C2 Exchange.
Definition OrderSource.hpp:405
static const OrderSource AGGREGATE
Aggregate order book (futures depth and NASDAQ Level II).
Definition OrderSource.hpp:173
static const OrderSource REGIONAL_ASK
Ask side of a regional Quote.
Definition OrderSource.hpp:125
static const OrderSource REGIONAL_BID
Bid side of a regional Quote.
Definition OrderSource.hpp:116
static const OrderSource igc
IG CFDs Gate.
Definition OrderSource.hpp:517
static const OrderSource ABE
ABE (abe.io) exchange.
Definition OrderSource.hpp:341
static const OrderSource CEUX
Bats Europe DXE Exchange.
Definition OrderSource.hpp:309
static const OrderSource OCEA
Blue Ocean Technologies Alternative Trading System.
Definition OrderSource.hpp:453
static const OrderSource AGGREGATE_BID
Bid side of an aggregate order book (futures depth and NASDAQ Level II).
Definition OrderSource.hpp:133
static const OrderSource BXTR
Bats Europe TRF.
Definition OrderSource.hpp:317
static const OrderSource & valueOf(const StringLike &name)
Returns order source for the specified source name.
Definition OrderSource.cpp:211
static const OrderSource dex
Direct-Edge EDGX Exchange.
Definition OrderSource.hpp:261
static const OrderSource cedx
Cboe European Derivatives.
Definition OrderSource.hpp:501
static const OrderSource COMPOSITE
Composite Quote.
Definition OrderSource.hpp:152
static const OrderSource COMPOSITE_ASK
Ask side of a composite Quote.
Definition OrderSource.hpp:107
static const OrderSource REGIONAL
Regional Quote.
Definition OrderSource.hpp:163
static const OrderSource XNFI
NASDAQ Fixed Income.
Definition OrderSource.hpp:220
static const OrderSource iex
Investors exchange.
Definition OrderSource.hpp:429
static const OrderSource xeur
Eurex Exchange.
Definition OrderSource.hpp:389
static const OrderSource CEDX
Cboe European Derivatives.
Definition OrderSource.hpp:493
static const OrderSource ISE
International Securities Exchange.
Definition OrderSource.hpp:236
static const OrderSource DEA
Direct-Edge EDGA Exchange.
Definition OrderSource.hpp:244
static const OrderSource glbx
CME Globex.
Definition OrderSource.hpp:365
static const OrderSource ocea
Blue Ocean Technologies Alternative Trading System.
Definition OrderSource.hpp:460
static const OrderSource EDX
EDX Exchange.
Definition OrderSource.hpp:525
static const OrderSource BI20
Borsa Istanbul Exchange.
Definition OrderSource.hpp:333
static const OrderSource NUAM
Nuam Exchange Gate.
Definition OrderSource.hpp:541
static const OrderSource BYX
Bats BYX Exchange.
Definition OrderSource.hpp:269
static const OrderSource IGC
IG CFDs Gate.
Definition OrderSource.hpp:509
static const OrderSource FAIR
FAIR (FairX) exchange.
Definition OrderSource.hpp:349
static const OrderSource BATE
Bats Europe BXE Exchange.
Definition OrderSource.hpp:293
static const OrderSource pink
Pink Sheets.
Definition OrderSource.hpp:469
static const OrderSource DEFAULT
Default source for publishing custom order books.
Definition OrderSource.hpp:180
static const OrderSource NFX
NASDAQ Futures Exchange.
Definition OrderSource.hpp:204
static const OrderSource memx
Members Exchange.
Definition OrderSource.hpp:445
static bool isSpecialSourceId(std::int32_t sourceId) noexcept
Determines whether the specified source identifier refers to a special order source.
Definition OrderSource.cpp:193
static const OrderSource IST
Borsa Istanbul Exchange.
Definition OrderSource.hpp:325
static const OrderSource edx
EDX Exchange.
Definition OrderSource.hpp:533
static const OrderSource ARCA
NYSE Arca traded securities.
Definition OrderSource.hpp:477
static const OrderSource CHIX
Bats Europe CXE Exchange.
Definition OrderSource.hpp:301
static const OrderSource ERIS
Eris Exchange group of companies.
Definition OrderSource.hpp:373
static const OrderSource nuam
Nuam Exchange Gate.
Definition OrderSource.hpp:549
static const OrderSource XEUR
Eurex Exchange.
Definition OrderSource.hpp:381
static const OrderSource MEMX
Members Exchange.
Definition OrderSource.hpp:437
static const OrderSource COMPOSITE_BID
Bid side of a composite Quote.
Definition OrderSource.hpp:98
static const OrderSource arca
NYSE Arca traded securities.
Definition OrderSource.hpp:485
static const OrderSource SMFE
Small Exchange.
Definition OrderSource.hpp:413
TimeSeriesSubscriptionSymbol(const SymbolWrapper &eventSymbol, std::int64_t fromTime)
Creates a time-series subscription symbol with a specified event symbol and subscription time.
void * toGraal() const override
Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
Definition TimeSeriesSubscriptionSymbol.cpp:19
std::string toString() const override
Returns string representation of this time-series subscription symbol.
Definition TimeSeriesSubscriptionSymbol.cpp:66
std::int64_t getFromTime() const
Returns the subscription time.
Definition TimeSeriesSubscriptionSymbol.cpp:15
static TimeSeriesSubscriptionSymbol fromGraal(void *graalNative)
Creates an object of the current type and fills it with data from the dxFeed Graal SDK structure (rec...
Definition TimeSeriesSubscriptionSymbol.cpp:50
static void freeGraal(void *graalNative)
Releases the memory occupied by the dxFeed Graal SDK structure (recursively if necessary).
Definition TimeSeriesSubscriptionSymbol.cpp:33
DXFCPP_END_NAMESPACE dxfcpp::EventFlagsMask operator|(const dxfcpp::EventFlag &eventFlag1, const dxfcpp::EventFlag &eventFlag2) noexcept
Performs a bit or operation with two event flags.
Definition EventFlag.hpp:482
SessionTypeEnum
Definition SessionType.hpp:17
SessionFilterEnum
Definition SessionFilter.hpp:22
@ NO_TRADING
Non-trading session type is used to mark periods of time during which trading is not allowed.
Definition SessionType.hpp:19
@ REGULAR
Regular session type marks regular trading hours session.
Definition SessionType.hpp:23
@ AFTER_MARKET
After-market session type marks extended trading session after regular trading hours.
Definition SessionType.hpp:25
@ PRE_MARKET
Pre-market session type marks extended trading session before regular trading hours.
Definition SessionType.hpp:21
@ NO_TRADING
Accepts any session with type SessionType::NO_TRADING.
Definition SessionFilter.hpp:31
@ REGULAR
Accepts any session with type SessionType::REGULAR.
Definition SessionFilter.hpp:35
@ ANY
Accepts any session - useful for pure schedule navigation.
Definition SessionFilter.hpp:24
@ AFTER_MARKET
Accepts any session with type SessionType::AFTER_MARKET.
Definition SessionFilter.hpp:37
@ TRADING
Accepts trading sessions only - those with (Session::isTrading() == true).
Definition SessionFilter.hpp:26
@ PRE_MARKET
Accepts any session with type SessionType::PRE_MARKET.
Definition SessionFilter.hpp:33
@ NON_TRADING
Accepts non-trading sessions only - those with (Session::isTrading() == false).
Definition SessionFilter.hpp:28
The AuthToken class represents an authorization token and encapsulates information about the authoriz...
Definition AuthToken.hpp:35
std::string getScheme() const
Returns the authentication scheme.
Definition AuthToken.cpp:82
static const std::string BEARER_SCHEME
String representation for the Bearer (token) authorization.
Definition AuthToken.hpp:14
std::string getPassword() const
Returns the password or dxfcpp::String::NUL (std::string{"<null>"}) if it is not known or applicable.
Definition AuthToken.cpp:74
static AuthToken createBasicToken(const StringLike &user, const StringLike &password)
Constructs an AuthToken with the specified username and password per RFC2617.
Definition AuthToken.cpp:26
static const std::string BASIC_SCHEME
String representation for Basic (Base64(login:password)) authorization.
Definition AuthToken.hpp:13
static AuthToken createBasicTokenOrNull(const StringLike &user, const StringLike &password)
Constructs an AuthToken with the specified username and password per RFC2617.
Definition AuthToken.cpp:30
std::string getHttpAuthorization() const
Returns the HTTP authorization header value.
Definition AuthToken.cpp:58
static AuthToken createBearerToken(const StringLike &token)
Constructs an AuthToken with the specified bearer token per RFC6750.
Definition AuthToken.cpp:40
static AuthToken createCustomToken(const StringLike &scheme, const StringLike &value)
Constructs an AuthToken with a custom scheme and value.
Definition AuthToken.cpp:54
std::string getValue() const
Returns the access token for RFC6750 or the Base64-encoded "username:password" for RFC2617.
Definition AuthToken.cpp:90
static AuthToken createBearerTokenOrNull(const StringLike &token)
Constructs an AuthToken with the specified bearer token per RFC6750.
Definition AuthToken.cpp:44
std::string getUser() const
Returns the username or dxfcpp::String::NUL (std::string{"<null>"}) if it is not known or applicable.
Definition AuthToken.cpp:66
static const AuthToken NULL_TOKEN
A stub that is needed to simulate null AuthToken without using std::optional.
Definition AuthToken.hpp:43
static AuthToken valueOf(const StringLike &string)
Constructs an AuthToken from the specified string.
Definition AuthToken.cpp:18
static AuthToken createBasicToken(const StringLike &userPassword)
Constructs an AuthToken with the specified username and password per RFC2617.
Definition AuthToken.cpp:22
Candle alignment attribute of CandleSymbol defines how candles are aligned with respect to time.
Definition CandleAlignment.hpp:37
static const CandleAlignment DEFAULT
Default alignment is CandleAlignment::MIDNIGHT.
Definition CandleAlignment.hpp:51
static const CandleAlignment MIDNIGHT
Align candles at midnight.
Definition CandleAlignment.hpp:14
static const CandleAlignment SESSION
Align candles on trading sessions.
Definition CandleAlignment.hpp:15
static std::reference_wrapper< const CandleAlignment > getAttributeForSymbol(const StringLike &symbol)
Returns candle alignment of the given candle symbol string.
Definition CandleAlignment.cpp:50
std::string toString() const
Returns string representation of this candle alignment.
Definition CandleAlignment.cpp:28
static std::reference_wrapper< const CandleAlignment > parse(const StringLike &s)
Parses string representation of candle alignment into an object.
Definition CandleAlignment.cpp:36
static const std::string ATTRIBUTE_KEY
The attribute key that is used to store the value of CandleAlignment in a symbol string using methods...
Definition CandleAlignment.hpp:17
std::string changeAttributeForSymbol(const StringLike &symbol) const override
Returns candle event symbol string with this candle alignment set.
Definition CandleAlignment.cpp:23
static std::string normalizeAttributeForSymbol(const StringLike &symbol)
Returns candle symbol string with the normalized representation of the candle alignment attribute.
Definition CandleAlignment.cpp:56
Exchange attribute of CandleSymbol defines the exchange identifier where data is taken from to build ...
Definition CandleExchange.hpp:34
char getExchangeCode() const noexcept
Returns exchange code.
Definition CandleExchange.cpp:17
static const CandleExchange DEFAULT
Default exchange is CandleExchange::COMPOSITE.
Definition CandleExchange.hpp:43
std::string toString() const
Returns string representation of this exchange.
Definition CandleExchange.cpp:25
std::string changeAttributeForSymbol(const StringLike &symbol) const override
Returns candle event symbol string with this exchange set.
Definition CandleExchange.cpp:21
static CandleExchange valueOf(char exchangeCode) noexcept
Returns an exchange attribute object that corresponds to the specified exchange code character.
Definition CandleExchange.cpp:33
static CandleExchange getAttributeForSymbol(const StringLike &symbol)
Returns exchange an attribute object of the given candle symbol string.
Definition CandleExchange.cpp:37
static const CandleExchange COMPOSITE
Composite exchange where data is taken from all exchanges.
Definition CandleExchange.hpp:32
Period attribute of CandleSymbol defines an aggregation period of the candles.
Definition CandlePeriod.hpp:38
double getValue() const noexcept
Returns aggregation period value.
Definition CandlePeriod.cpp:27
static const std::string ATTRIBUTE_KEY
The attribute key that is used to store the value of CandlePeriod in a symbol string using methods of...
Definition CandlePeriod.hpp:80
static const CandlePeriod TICK
Tick aggregation where each candle represents an individual tick.
Definition CandlePeriod.hpp:77
static std::string normalizeAttributeForSymbol(const StringLike &symbol)
Returns candle symbol string with the normalized representation of the candle period attribute.
Definition CandlePeriod.cpp:96
static CandlePeriod valueOf(double value, const CandleType &type) noexcept
Returns candle period with the given value and type.
Definition CandlePeriod.cpp:78
static const CandlePeriod DEFAULT
The default period is CandlePeriod::TICK.
Definition CandlePeriod.hpp:52
std::int64_t getPeriodIntervalMillis() const noexcept
Returns an aggregation period in milliseconds as closely as possible.
Definition CandlePeriod.cpp:18
static const CandlePeriod DAY
Day aggregation where each candle represents a day.
Definition CandlePeriod.hpp:78
const CandleType & getType() const &noexcept
Returns aggregation period type.
Definition CandlePeriod.cpp:31
const std::string & toString() const &
Returns string representation of this aggregation period.
Definition CandlePeriod.cpp:35
std::string changeAttributeForSymbol(const StringLike &symbol) const override
Returns candle event symbol string with this aggregation period set.
Definition CandlePeriod.cpp:22
static CandlePeriod getAttributeForSymbol(const StringLike &symbol) noexcept
Returns candle period of the given candle symbol string.
Definition CandlePeriod.cpp:90
static CandlePeriod parse(const StringLike &s)
Parses string representation of an aggregation period into an object.
Definition CandlePeriod.cpp:50
Candle price level attribute of CandleSymbol defines how candles shall be aggregated in respect to a ...
Definition CandlePriceLevel.hpp:45
std::string changeAttributeForSymbol(const StringLike &symbol) const override
Returns candle event symbol string with this candle price level set.
Definition CandlePriceLevel.cpp:33
static CandlePriceLevel valueOf(double value)
Returns candle price level with the given value.
Definition CandlePriceLevel.cpp:42
static const CandlePriceLevel DEFAULT
Default price level corresponds to NaN (std::numeric_limits<double>::quiet_NaN())
Definition CandlePriceLevel.hpp:108
static CandlePriceLevel parse(const StringLike &s)
Parses string representation of candle price level into an object.
Definition CandlePriceLevel.cpp:38
std::string toString() const
Returns string representation of this price level.
Definition CandlePriceLevel.cpp:21
double getValue() const noexcept
Returns price level value.
Definition CandlePriceLevel.cpp:17
static const std::string ATTRIBUTE_KEY
The attribute key that is used to store the value of CandlePriceLevel in a symbol string using method...
Definition CandlePriceLevel.hpp:110
static std::string normalizeAttributeForSymbol(const StringLike &symbol)
Returns candle symbol string with the normalized representation of the candle price level attribute.
Definition CandlePriceLevel.cpp:56
static CandlePriceLevel getAttributeForSymbol(const StringLike &symbol)
Returns candle price level of the given candle symbol string.
Definition CandlePriceLevel.cpp:50
Price type attribute of CandleSymbol defines the price used to build the candles.
Definition CandlePrice.hpp:39
static std::string normalizeAttributeForSymbol(const StringLike &symbol)
Returns candle symbol string with the normalized representation of the candle price type attribute.
Definition CandlePrice.cpp:58
static const CandlePrice BID
Quote bid price.
Definition CandlePrice.hpp:85
static const CandlePrice ASK
Quote ask price.
Definition CandlePrice.hpp:86
static const CandlePrice MARK
Market price defined as average between quote bid and ask prices.
Definition CandlePrice.hpp:87
const std::string & toString() const &noexcept
Returns string representation of this candle price type.
Definition CandlePrice.cpp:25
static const CandlePrice DEFAULT
The default price type is CandlePrice::LAST.
Definition CandlePrice.hpp:70
static const CandlePrice SETTLEMENT
Official settlement price that is defined by exchange or last trading price otherwise.
Definition CandlePrice.hpp:88
static std::reference_wrapper< const CandlePrice > getAttributeForSymbol(const StringLike &symbol) noexcept
Returns the candle price type of the given candle symbol string.
Definition CandlePrice.cpp:52
static const CandlePrice LAST
Last trading price.
Definition CandlePrice.hpp:84
static std::reference_wrapper< const CandlePrice > parse(const StringLike &s)
Parses string representation of a candle price type into an object.
Definition CandlePrice.cpp:33
std::string changeAttributeForSymbol(const StringLike &symbol) const override
Returns candle event symbol string with this candle price type set.
Definition CandlePrice.cpp:20
static const std::string ATTRIBUTE_KEY
The attribute key that is used to store the value of CandlePrice in a symbol string using methods of ...
Definition CandlePrice.hpp:91
const std::string & toString() const &noexcept
Returns string representation of this candle session attribute.
Definition CandleSession.cpp:103
static const CandleSession REGULAR
Only regular trading session data is used to build candles.
Definition CandleSession.hpp:134
const SessionFilter & getSessionFilter() const &noexcept
Returns a session filter that corresponds to this session attribute.
Definition CandleSession.cpp:94
static std::reference_wrapper< const CandleSession > getAttributeForSymbol(const StringLike &symbol)
Returns candle session attribute of the given candle symbol string.
Definition CandleSession.cpp:130
static const CandleSession ANY
All trading sessions are used to build candles.
Definition CandleSession.hpp:133
static const std::string ATTRIBUTE_KEY
The attribute key that is used to store the value of CandleSession in a symbol string using methods o...
Definition CandleSession.hpp:65
std::string changeAttributeForSymbol(const StringLike &symbol) const override
Returns candle event symbol string with this session attribute set.
Definition CandleSession.cpp:98
static std::reference_wrapper< const CandleSession > parse(const StringLike &s)
Parses string representation of the candle session attribute into an object.
Definition CandleSession.cpp:111
static const CandleSession DEFAULT
The default trading session is CandleSession::ANY.
Definition CandleSession.hpp:56
static std::string normalizeAttributeForSymbol(const StringLike &symbol) noexcept
Returns candle symbol string with the normalized representation of the candle session attribute.
Definition CandleSession.cpp:136
Attribute of the CandleSymbol.
Definition CandleSymbolAttribute.hpp:24
virtual std::string changeAttributeForSymbol(const StringLike &symbol) const =0
Returns candle event symbol string with this attribute set.
Symbol that should be used with DXFeedSubscription class to subscribe for Candle events.
Definition CandleSymbol.hpp:87
const std::optional< CandlePeriod > & getPeriod() const &noexcept
Returns the aggregation period of this symbol.
Definition CandleSymbol.cpp:226
const std::optional< CandlePriceLevel > & getPriceLevel() const &noexcept
Returns the price level attribute of this symbol.
Definition CandleSymbol.cpp:234
const std::optional< CandleExchange > & getExchange() const &noexcept
Returns exchange attribute of this symbol.
Definition CandleSymbol.cpp:214
static CandleSymbol valueOf(const StringLike &symbol, const CandleSymbolAttributeVariant &attribute) noexcept
Converts the given string symbol into the candle symbol object with the specified attribute set.
Definition CandleSymbol.cpp:334
const std::string & getBaseSymbol() const &noexcept
Returns base market symbol without attributes.
Definition CandleSymbol.cpp:210
static CandleSymbol valueOf(const StringLike &symbol, std::initializer_list< CandleSymbolAttributeVariant > attributes) noexcept
Converts the given string symbol into the candle symbol object with the specified attributes set (ini...
Definition CandleSymbol.cpp:338
static CandleSymbol valueOf(const StringLike &symbol) noexcept
Converts the given string symbol into the candle symbol object.
Definition CandleSymbol.cpp:330
const std::optional< CandlePrice > & getPrice() const &noexcept
Returns the price type attribute of this symbol.
Definition CandleSymbol.cpp:218
static CandleSymbol valueOf(const StringLike &symbol, CandleSymbolAttributeIt begin, CandleSymbolAttributeIt end) noexcept
Converts the given string symbol into the candle symbol object with the specified attribute set (iter...
Definition CandleSymbol.hpp:251
virtual void * toGraal() const
Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
Definition CandleSymbol.cpp:288
const std::string & toString() const &noexcept
Returns string representation of this symbol.
Definition CandleSymbol.cpp:238
static void freeGraal(void *graalNative)
Releases the memory occupied by the dxFeed Graal SDK structure (recursively if necessary).
Definition CandleSymbol.cpp:299
const std::optional< CandleSession > & getSession() const &noexcept
Returns the session attribute of this symbol.
Definition CandleSymbol.cpp:222
static CandleSymbol fromGraal(void *graalNative)
Creates an object of the current type and fills it with data from the dxFeed Graal SDK structure.
Definition CandleSymbol.cpp:315
const std::optional< CandleAlignment > & getAlignment() const &noexcept
Returns alignment attribute of this symbol.
Definition CandleSymbol.cpp:230
Type of the candle aggregation period constitutes CandlePeriod type together its actual value.
Definition CandleType.hpp:29
static const CandleType VOLUME
Certain volume of trades.
Definition CandleType.hpp:78
static const CandleType MONTH
Certain number of months.
Definition CandleType.hpp:63
static const CandleType PRICE_RENKO
Certain price change, calculated according to the following rules:
Definition CandleType.hpp:113
static const CandleType DAY
Certain number of days.
Definition CandleType.hpp:42
std::int64_t getPeriodIntervalMillis() const noexcept
Returns a candle type period in milliseconds as closely as possible.
Definition CandleType.cpp:22
static const CandleType WEEK
Certain number of weeks.
Definition CandleType.hpp:43
static const CandleType TICK
Certain number of ticks.
Definition CandleType.hpp:38
static const CandleType HOUR
Certain number of hours.
Definition CandleType.hpp:41
static const CandleType PRICE
Certain price change, calculated according to the following rules:
Definition CandleType.hpp:89
static std::reference_wrapper< const CandleType > parse(const StringLike &s)
Parses string representation of a candle type into an object.
Definition CandleType.cpp:34
const std::string & toString() const &noexcept
Returns string representation of this candle type.
Definition CandleType.cpp:30
static const CandleType OPTEXP
Certain number of option expirations.
Definition CandleType.hpp:68
static const CandleType SECOND
Certain number of seconds.
Definition CandleType.hpp:39
static const CandleType MINUTE
Certain number of minutes.
Definition CandleType.hpp:40
const std::string & getName() const &noexcept
Returns a name of this candle type.
Definition CandleType.cpp:26
static const CandleType PRICE_MOMENTUM
Certain price change, calculated according to the following rules:
Definition CandleType.hpp:101
static const CandleType YEAR
Certain number of years.
Definition CandleType.hpp:73
Mixin for wrapping calls to common promise methods.
Definition Promise.hpp:79
JavaException getException() const
Returns exceptional outcome of computation.
Definition Promise.hpp:127
void cancel() const
This method cancels computation.
Definition Promise.hpp:174
bool hasResult() const
Returns true when computation has completed normally.
Definition Promise.hpp:95
bool isCancelled() const
Returns true when computation was cancelled.
Definition Promise.hpp:114
bool hasException() const
Returns true when a computation has completed exceptionally or was canceled.
Definition Promise.hpp:104
bool awaitWithoutException(const std::chrono::milliseconds &timeoutInMilliseconds) const
Wait for computation to complete or timeout or throw an exception in case of exceptional completion.
Definition Promise.hpp:161
bool isDone() const
Returns true when a computation has completed normally, or exceptionally, or was canceled.
Definition Promise.hpp:85
bool awaitWithoutException(std::int32_t timeoutInMilliseconds) const
Wait for computation to complete or timeout or throw an exception in case of exceptional completion.
Definition Promise.hpp:144
Manages network connections to feed or publisher.
Definition DXEndpoint.hpp:179
bool isClosed() const
Definition DXEndpoint.cpp:511
SimpleHandler< void(DXEndpoint::State, DXEndpoint::State)> & onStateChange() noexcept
Returns the onStateChange handler that can be used to add or remove listeners.
Definition DXEndpoint.cpp:523
static const std::string DXFEED_PASSWORD_PROPERTY
"dxfeed.password"
Definition DXEndpoint.hpp:246
static std::shared_ptr< DXEndpoint > create(Role role)
Creates an endpoint with a specified role.
Definition DXEndpoint.cpp:498
std::shared_ptr< DXFeed > getFeed() const
Definition DXEndpoint.cpp:224
std::shared_ptr< DXEndpoint > password(const StringLike &password)
Changes password for this endpoint.
Definition DXEndpoint.cpp:151
State
Represents the current state of endpoint.
Definition DXEndpoint.hpp:444
@ CLOSED
Endpoint was closed.
Definition DXEndpoint.hpp:464
@ CONNECTING
The connect method was called to establish connection to remove endpoint, but the connection is not e...
Definition DXEndpoint.hpp:454
@ CONNECTED
The connection to the remote endpoint is established.
Definition DXEndpoint.hpp:459
@ NOT_CONNECTED
Endpoint was created by is not connected to remote endpoints.
Definition DXEndpoint.hpp:448
std::shared_ptr< DXEndpoint > user(const StringLike &user)
Changes username for this endpoint.
Definition DXEndpoint.cpp:144
void reconnect() const
Terminates all established network connections and initiates connecting again with the same address.
Definition DXEndpoint.cpp:170
static std::shared_ptr< DXEndpoint > create()
Creates an endpoint with FEED role.
Definition DXEndpoint.cpp:489
void removeStateChangeListener(std::size_t listenerId) noexcept
Removes a listener notified about changes in state property.
Definition DXEndpoint.cpp:519
const std::string & getName() const &noexcept
Definition DXEndpoint.cpp:515
Role
Represents the role of an endpoint that was specified during its creation.
Definition DXEndpoint.hpp:373
@ PUBLISHER
PUBLISHER endpoint connects to the remote publisher hub (also known as multiplexor) or creates a publ...
Definition DXEndpoint.hpp:418
@ STREAM_FEED
STREAM_FEED endpoint is similar to DXEndpoint::FEED and also connects to the remote data feed provide...
Definition DXEndpoint.hpp:406
@ LOCAL_HUB
LOCAL_HUB endpoint is a local hub without the ability to establish network connections.
Definition DXEndpoint.hpp:434
@ ON_DEMAND_FEED
ON_DEMAND_FEED endpoint is similar to DXEndpoint::FEED, but it is designed to be used with OnDemandSe...
Definition DXEndpoint.hpp:397
@ STREAM_PUBLISHER
STREAM_PUBLISHER endpoint is similar to DXEndpoint::PUBLISHER and also connects to the remote publish...
Definition DXEndpoint.hpp:427
@ FEED
FEED endpoint connects to the remote data feed provider and is optimized for real-time or delayed dat...
Definition DXEndpoint.hpp:384
std::string toString() const override
Returns a string representation of the current object.
Definition DXEndpoint.cpp:388
void awaitProcessed() const
Waits until this endpoint stops processing data (becomes quiescent).
Definition DXEndpoint.cpp:206
std::shared_ptr< DXPublisher > getPublisher() const
Definition DXEndpoint.cpp:233
static const std::string DXFEED_WILDCARD_ENABLE_PROPERTY
"dxfeed.wildcard.enable"
Definition DXEndpoint.hpp:274
std::size_t addStateChangeListener(std::function< void(State, State)> listener) noexcept
Adds a listener notified about changes in state property.
Definition DXEndpoint.hpp:619
static const std::string DXENDPOINT_EVENT_TIME_PROPERTY
"dxendpoint.eventTime"
Definition DXEndpoint.hpp:319
static const std::string DXPUBLISHER_THREAD_POOL_SIZE_PROPERTY
"dxpublisher.threadPoolSize"
Definition DXEndpoint.hpp:302
State getState() const
Returns the state of this endpoint.
Definition DXEndpoint.cpp:140
static const std::string DXENDPOINT_STORE_EVERYTHING_PROPERTY
"dxendpoint.storeEverything"
Definition DXEndpoint.hpp:332
void awaitNotConnected() const
Waits while this endpoint state becomes NOT_CONNECTED or CLOSED.
Definition DXEndpoint.cpp:197
static std::shared_ptr< DXEndpoint > getInstance(Role role)
Returns a default application-wide singleton instance of DXEndpoint for a specific role.
Definition DXEndpoint.cpp:471
static const std::string DXFEED_AGGREGATION_PERIOD_PROPERTY
"dxfeed.aggregationPeriod"
Definition DXEndpoint.hpp:265
void close() const
Closes this endpoint.
Definition DXEndpoint.cpp:527
static const std::string DXFEED_THREAD_POOL_SIZE_PROPERTY
"dxfeed.threadPoolSize"
Definition DXEndpoint.hpp:255
void disconnect() const
Terminates all remote network connections.
Definition DXEndpoint.cpp:179
void closeAndAwaitTermination() const
Closes this endpoint and wait until all pending data processing tasks are completed.
Definition DXEndpoint.cpp:215
static std::shared_ptr< DXEndpoint > getInstance()
Returns a default application-wide singleton instance of DXEndpoint with a FEED role.
Definition DXEndpoint.cpp:462
static const std::string DXPUBLISHER_ADDRESS_PROPERTY
"dxpublisher.address"
Definition DXEndpoint.hpp:293
static const std::string DXFEED_USER_PROPERTY
"dxfeed.user"
Definition DXEndpoint.hpp:236
static const std::string NAME_PROPERTY
"name"
Definition DXEndpoint.hpp:196
static const std::string DXSCHEME_ENABLED_PROPERTY_PREFIX
"dxscheme.enabled."
Definition DXEndpoint.hpp:366
static const std::string DXPUBLISHER_PROPERTIES_PROPERTY
"dxpublisher.properties"
Definition DXEndpoint.hpp:283
static const std::string DXSCHEME_NANO_TIME_PROPERTY
"dxscheme.nanoTime"
Definition DXEndpoint.hpp:352
static const std::string DXFEED_ADDRESS_PROPERTY
"dxfeed.address"
Definition DXEndpoint.hpp:226
void disconnectAndClear() const
Terminates all remote network connections and clears stored data.
Definition DXEndpoint.cpp:188
Role getRole() const noexcept
Returns the role of this endpoint.
Definition DXEndpoint.cpp:507
static const std::string DXFEED_PROPERTIES_PROPERTY
"dxfeed.properties"
Definition DXEndpoint.hpp:207
static std::shared_ptr< Builder > newBuilder()
Creates a new Builder instance.
Definition DXEndpoint.cpp:480
std::shared_ptr< DXEndpoint > connect(const StringLike &address)
Connects to the specified remote address.
Definition DXEndpoint.cpp:158
Main entry class for dxFeed API (read it first).
Definition DXFeed.hpp:119
void detachSubscriptionAndClear(const std::shared_ptr< DXFeedSubscription > &subscription) const
Detaches the given subscription from this feed and clears data delivered to this subscription by publ...
Definition DXFeed.cpp:68
std::vector< std::shared_ptr< E > > getTimeSeriesIfSubscribed(const SymbolWrapper &symbol, std::int64_t fromTime) const
Returns time series of events for the specified event type, symbol and a range of time (without an up...
Definition DXFeed.hpp:1006
std::shared_ptr< PromiseList< E > > getLastEventsPromises(std::initializer_list< SymbolWrapper > collection) const
Requests the last events for the specified event type and a collection of symbols.
Definition DXFeed.hpp:722
std::vector< std::shared_ptr< E > > getTimeSeriesIfSubscribed(const SymbolWrapper &symbol, std::chrono::milliseconds fromTime, std::chrono::milliseconds toTime) const
Returns time series of events for the specified event type, symbol and a range of time if there is a ...
Definition DXFeed.hpp:990
std::vector< std::shared_ptr< E > > getTimeSeriesIfSubscribed(const SymbolWrapper &symbol, std::int64_t fromTime, std::int64_t toTime) const
Returns time series of events for the specified event type, symbol and a range of time if there is a ...
Definition DXFeed.hpp:938
std::shared_ptr< DXFeedSubscription > createSubscription(const EventTypeEnum &eventType) const
Creates a new subscription for a single event type that is attached to this feed.
Definition DXFeed.cpp:88
std::shared_ptr< DXFeedTimeSeriesSubscription > createTimeSeriesSubscription(std::initializer_list< EventTypeEnum > eventTypes) const
Creates new subscription for multiple event types that is attached to this feed.
Definition DXFeed.cpp:137
std::shared_ptr< Promise< std::vector< std::shared_ptr< E > > > > getTimeSeriesPromise(const SymbolWrapper &symbol, std::int64_t fromTime, std::int64_t toTime) const
Requests time series of events for the specified event type, symbol and a range of time.
Definition DXFeed.hpp:886
std::shared_ptr< DXFeedSubscription > createSubscription(EventTypeIt begin, EventTypeIt end) const
Creates new subscription for multiple event types that is attached to this feed.
Definition DXFeed.hpp:361
std::shared_ptr< PromiseList< E > > getLastEventsPromises(const SymbolsCollection &collection) const
Requests the last events for the specified event type and a collection of symbols.
Definition DXFeed.hpp:676
std::shared_ptr< E > getLastEventIfSubscribed(const SymbolWrapper &symbol)
Returns the last event for the specified event type and symbol if there is a subscription for it.
Definition DXFeed.hpp:308
std::shared_ptr< DXFeedSubscription > createSubscription(std::initializer_list< EventTypeEnum > eventTypes) const
Creates new subscription for multiple event types that is attached to this feed.
Definition DXFeed.cpp:101
std::vector< std::shared_ptr< E > > getTimeSeriesIfSubscribed(const SymbolWrapper &symbol, std::chrono::milliseconds fromTime) const
Returns time series of events for the specified event type, symbol and a range of time (without an up...
Definition DXFeed.hpp:1021
std::shared_ptr< DXFeedTimeSeriesSubscription > createTimeSeriesSubscription(EventTypeIt begin, EventTypeIt end) const
Creates new subscription for multiple event types that is attached to this feed.
Definition DXFeed.hpp:473
static std::shared_ptr< DXFeed > getInstance()
Returns a default application-wide singleton instance of feed.
Definition DXFeed.cpp:19
std::shared_ptr< E > getLastEvent(std::shared_ptr< E > event)
Returns the last event for the specified event instance.
Definition DXFeed.hpp:248
std::shared_ptr< PromiseList< E > > getLastEventsPromises(SymbolIt begin, SymbolIt end) const
Requests the last events for the specified event type and a collection of symbols.
Definition DXFeed.hpp:629
std::shared_ptr< DXFeedSubscription > createSubscription(const EventTypesCollection &eventTypes) const
Creates new subscription for multiple event types that is attached to this feed.
Definition DXFeed.hpp:411
std::shared_ptr< Promise< std::shared_ptr< E > > > getLastEventPromise(const SymbolWrapper &symbol) const
Requests the last event for the specified event type and symbol.
Definition DXFeed.hpp:581
std::shared_ptr< DXFeedTimeSeriesSubscription > createTimeSeriesSubscription(const EventTypesCollection &eventTypes) const
Creates new subscription for multiple event types that is attached to this feed.
Definition DXFeed.hpp:540
std::string toString() const override
Returns a string representation of the current object.
Definition DXFeed.cpp:226
std::shared_ptr< Promise< std::vector< std::shared_ptr< E > > > > getIndexedEventsPromise(const SymbolWrapper &symbol, const IndexedEventSource &source) const
Requests a container of indexed events for the specified event type, symbol and source.
Definition DXFeed.hpp:775
void detachSubscription(const std::shared_ptr< DXFeedSubscription > &subscription) const
Detaches the given subscription from this feed.
Definition DXFeed.cpp:48
std::vector< std::shared_ptr< E > > getIndexedEventsIfSubscribed(const SymbolWrapper &symbol, const IndexedEventSource &source) const
Returns a vector of indexed events for the specified event type, symbol and source if there is a subs...
Definition DXFeed.hpp:831
const Collection & getLastEvents(const Collection &events)
Returns the last events for the specified list of event instances.
Definition DXFeed.hpp:269
void attachSubscription(const std::shared_ptr< DXFeedSubscription > &subscription) const
Attaches the given subscription to this feed.
Definition DXFeed.cpp:28
std::shared_ptr< DXFeedTimeSeriesSubscription > createTimeSeriesSubscription(const EventTypeEnum &eventType) const
Creates a new subscription for a single event type that is attached to this feed.
Definition DXFeed.cpp:116
Provides API for publishing of events to local or remote DXFeed.
Definition DXPublisher.hpp:60
void publishEvents(EventIt begin, EventIt end) const
Publishes events to the corresponding feed.
Definition DXPublisher.hpp:200
std::shared_ptr< ObservableSubscription > getSubscription(const EventTypeEnum &eventType)
Returns an observable set of subscribed symbols for the specified event type.
Definition DXPublisher.cpp:50
std::string toString() const override
Returns a string representation of the current object.
Definition DXPublisher.cpp:65
void publishEvents(std::initializer_list< std::shared_ptr< EventType > > events) const
Publishes events to the corresponding feed.
Definition DXPublisher.hpp:182
void publishEvents(EventsCollection &&events) const
Publishes events to the corresponding feed.
Definition DXPublisher.hpp:164
static std::shared_ptr< DXPublisher > getInstance()
Returns a default application-wide singleton instance of DXPublisher.
Definition DXPublisher.cpp:20
void publishEvents(std::shared_ptr< EventType > event) const
Publishes an event to the corresponding feed.
Definition DXPublisher.cpp:46
Mixin for wrapping Promise method calls for a single event.
Definition Promise.hpp:243
std::shared_ptr< E > getResult() const
Returns result of computation.
Definition Promise.hpp:251
std::shared_ptr< E > await() const
Wait for the computation to complete and return its result or throw an exception in case of exception...
Definition Promise.hpp:261
std::shared_ptr< E > await(const std::chrono::milliseconds &timeoutInMilliseconds) const &
Wait for computation to complete or timeout and return its result or throw an exception in case of ex...
Definition Promise.hpp:291
std::shared_ptr< E > await(std::int32_t timeoutInMilliseconds) const &
Wait for computation to complete or timeout and return its result or throw an exception in case of ex...
Definition Promise.hpp:276
const DataType & getData() const noexcept
Definition EventSourceWrapper.cpp:119
bool isOrderSource() const noexcept
Definition EventSourceWrapper.cpp:106
std::unique_ptr< void, decltype(&EventSourceWrapper::freeGraal)> toGraalUnique() const noexcept
Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
Definition EventSourceWrapper.cpp:80
std::string toStringUnderlying() const
Returns a string representation of the underlying object.
Definition EventSourceWrapper.cpp:94
std::string toString() const
Returns a string representation of the current object.
Definition EventSourceWrapper.cpp:84
void * toGraal() const noexcept
Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
Definition EventSourceWrapper.cpp:71
static EventSourceWrapper fromGraal(void *graalNative)
Creates an object of the current type and fills it with data from the dxFeed Graal SDK structure.
Definition EventSourceWrapper.cpp:62
EventSourceWrapper(const IndexedEventSource &data) noexcept
Constructs a wrapper from IndexedEventSource.
Definition EventSourceWrapper.cpp:47
bool isIndexedEventSource() const noexcept
Definition EventSourceWrapper.cpp:102
std::optional< IndexedEventSource > asIndexedEventSource() const noexcept
Definition EventSourceWrapper.cpp:110
std::optional< OrderSource > asOrderSource() const noexcept
Definition EventSourceWrapper.cpp:115
EventSourceWrapper(const OrderSource &data) noexcept
Constructs a wrapper from OrderSource.
Definition EventSourceWrapper.cpp:51
static void freeGraal(void *graalNative)
Releases the memory occupied by the dxFeed Graal SDK structure (recursively if necessary).
Definition EventSourceWrapper.cpp:55
Event type parametrized by a symbol.
Definition EventType.hpp:113
virtual const std::optional< Symbol > & getEventSymbolOpt() const &noexcept=0
Returns the event symbol that identifies this event type in subscription.
virtual void setEventSymbol(const Symbol &eventSymbol) noexcept=0
Changes the event symbol that identifies this event type in subscription.
virtual const Symbol & getEventSymbol() const &noexcept=0
Returns the event symbol that identifies this event type in subscription.
Marks all event types that can be received via dxFeed API.
Definition EventType.hpp:36
std::string toString() const override
Returns a string representation of the current object.
Definition api.cpp:67
virtual void * toGraal() const =0
Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
virtual std::int64_t getEventTime() const noexcept
Returns time when an event was created or zero when time is not available.
Definition api.cpp:54
virtual void assign(std::shared_ptr< EventType > event)
Replaces the contents of the event.
Definition api.cpp:63
virtual void setEventTime(std::int64_t eventTime) noexcept
Changes event creation time.
Definition api.cpp:58
This marker interface marks subscription symbol classes (like TimeSeriesSubscriptionSymbol) that atta...
Definition FilteredSubscriptionSymbol.hpp:32
The wrapper over CEntryPointErrorsEnum, the error code returned by GraalVM.
Definition GraalException.hpp:26
GraalException(CEntryPointErrorsEnum entryPointErrorsEnum)
Constructs an exception.
Definition GraalException.cpp:8
void handle(ArgTypes... args)
Calls the listeners and pass the args to them.
Definition Handler.hpp:122
std::size_t add(ListenerType &&listener)
Adds the listener to "main" group.
Definition Handler.hpp:156
std::size_t operator%=(ListenerType &&listener)
Adds the low priority listener (to the "low priority" group).
Definition Handler.hpp:208
std::size_t operator+=(ListenerType &&listener)
Adds the listener to "main" group.
Definition Handler.hpp:197
void operator()(ArgTypes... args)
Calls the listeners and pass the ars to them.
Definition Handler.hpp:146
Handler(std::size_t mainFuturesSize=MAIN_FUTURES_DEFAULT_SIZE) noexcept
Creates the new handler by specified size of circular buffer of futures.
Definition Handler.hpp:84
void operator-=(std::size_t id)
Removes a listener by the id.
Definition Handler.hpp:236
std::size_t addLowPriority(ListenerType &&listener)
Adds the low priority listener (to the "low priority" group) It will be called after the "main" liste...
Definition Handler.hpp:177
void remove(std::size_t id)
Removes a listener by the id.
Definition Handler.hpp:217
static std::shared_ptr< Builder > newBuilder()
Creates a new instance of HistoryEndpoint::Builder with default configurations.
Definition HistoryEndpoint.cpp:83
Compression
The Compression enum represents different compression algorithms that can be applied to data during t...
Definition HistoryEndpoint.hpp:76
Format
The Format enum represents different formats that can be used to handle data.
Definition HistoryEndpoint.hpp:91
std::vector< std::shared_ptr< E > > getTimeSeries(const SymbolWrapper &symbol, std::int64_t from, std::int64_t to)
Retrieves a list of time series events for a specific type of event and symbol within the given time ...
Definition HistoryEndpoint.hpp:201
Represents an indexed collection of up-to-date information about some condition or state of an extern...
Definition IndexedEvent.hpp:46
virtual EventFlagsMask getEventFlagsMask() const noexcept=0
Returns transactional event flags.
virtual const IndexedEventSource & getSource() const &noexcept=0
Returns the source of this event.
static const EventFlag TX_PENDING
0x01 - A bitmask to get transaction pending indicator from the value of eventFlags property.
Definition IndexedEvent.hpp:53
virtual std::int64_t getIndex() const noexcept=0
Returns unique per-symbol index of this event.
static const EventFlag SNAPSHOT_END
0x08 - A bitmask to get snapshot end indicator from the value of eventFlags property.
Definition IndexedEvent.hpp:62
virtual std::int32_t getEventFlags() const noexcept=0
Returns transactional event flags.
static const EventFlag SNAPSHOT_MODE
0x40 - A bitmask to set snapshot mode indicator into the value of eventFlags property.
Definition IndexedEvent.hpp:68
static const EventFlag SNAPSHOT_SNIP
0x10 - A bitmask to get snapshot snip indicator from the value of eventFlags property.
Definition IndexedEvent.hpp:65
static const EventFlag REMOVE_EVENT
0x02 - A bitmask to get removal indicator from the value of eventFlags property.
Definition IndexedEvent.hpp:56
virtual void setIndex(std::int64_t index)=0
Changes unique per-symbol index of this event.
static const EventFlag SNAPSHOT_BEGIN
0x04 - A bitmask to get snapshot begin indicator from the value of eventFlags property.
Definition IndexedEvent.hpp:59
virtual void setEventFlags(std::int32_t eventFlags) noexcept=0
Changes transactional event flags.
virtual void setEventFlags(const EventFlagsMask &eventFlags) noexcept=0
Changes transactional event flags.
Thrown to indicate that a method has been passed an illegal or inappropriate argument.
Definition InvalidArgumentException.hpp:23
A wrapper over the interceptable Java exceptions thrown by the dxFeed Native Graal SDK.
Definition JavaException.hpp:25
static void throwIfJavaThreadExceptionExists()
Throws a JavaException if it exists (i.e. intercepted by Graal SDK)
Definition JavaException.cpp:31
static JavaException create(void *exceptionHandle)
Creates an exception using native (GraalVM) Java exception handle.
Definition JavaException.cpp:21
JavaException(const StringLike &message, const StringLike &className, const StringLike &stackTrace)
Creates an exception using Java message, className and stack trace.
Definition JavaException.cpp:13
Represents up-to-date information about some condition or state of an external entity that updates in...
Definition LastingEvent.hpp:33
Helper class to compose and parse symbols for market events.
Definition MarketEventSymbols.hpp:44
static std::optional< std::string > getAttributeStringByKey(const StringLike &symbol, const StringLike &key) noexcept
Returns value of the attribute with the specified key.
Definition MarketEventSymbols.cpp:48
static std::string changeBaseSymbol(const StringLike &symbol, const StringLike &baseSymbol) noexcept
Changes base symbol while leaving exchange code and attributes intact.
Definition MarketEventSymbols.cpp:33
static bool hasExchangeCode(const StringLike &symbol) noexcept
Returns true if the specified symbol has the exchange code specification.
Definition MarketEventSymbols.cpp:8
static std::string changeExchangeCode(const StringLike &symbol, char exchangeCode) noexcept
Changes exchange code of the specified symbol or removes it if the new exchange code is ‘’\0'`.
Definition MarketEventSymbols.cpp:16
static std::string getBaseSymbol(const StringLike &symbol) noexcept
Returns base symbol without exchange code and attributes.
Definition MarketEventSymbols.cpp:29
static std::string changeAttributeStringByKey(const StringLike &symbol, const StringLike &key, const StringLike &value) noexcept
Changes the value of one attribute value while leaving exchange code and other attributes intact.
Definition MarketEventSymbols.cpp:53
static std::string removeAttributeStringByKey(const StringLike &symbol, const StringLike &key) noexcept
Removes one attribute with the specified key while leaving exchange code and other attributes intact.
Definition MarketEventSymbols.cpp:64
static char getExchangeCode(const StringLike &symbol) noexcept
Returns exchange code of the specified symbol or ‘’\0'` if none is defined.
Definition MarketEventSymbols.cpp:12
Base class for all market events.
Definition MarketEvent.hpp:29
The listener interface for receiving notifications on the changes of observed subscription.
Definition ObservableSubscriptionChangeListener.hpp:29
static std::shared_ptr< ObservableSubscriptionChangeListener > create(std::function< void(const std::unordered_set< SymbolWrapper > &symbols)> onSymbolsAdded)
Creates a listener that will notify the callback about added symbols.
Definition ObservableSubscriptionChangeListener.cpp:69
static std::shared_ptr< ObservableSubscriptionChangeListener > create(std::function< void(const std::unordered_set< SymbolWrapper > &symbols)> onSymbolsAdded, std::function< void(const std::unordered_set< SymbolWrapper > &symbols)> onSymbolsRemoved, std::function< void()> onSubscriptionClosed)
Creates a listener that will notify callbacks about events of adding and deleting symbols,...
Definition ObservableSubscriptionChangeListener.cpp:86
Observable set of subscription symbols.
Definition ObservableSubscription.hpp:26
virtual std::size_t addChangeListener(std::shared_ptr< ObservableSubscriptionChangeListener > listener)=0
Adds subscription change listener.
virtual bool containsEventType(const EventTypeEnum &eventType)=0
Returns true if this subscription contains the corresponding event type.
virtual void removeChangeListener(std::size_t id)=0
Removes subscription change listener by id.
virtual bool isClosed()=0
virtual std::unordered_set< EventTypeEnum > getEventTypes()=0
Provides on-demand historical tick data replay controls.
Definition OnDemandService.hpp:77
A list of event receiving results that will be completed normally or exceptionally in the future.
Definition Promise.hpp:441
Result of a computation that will be completed normally or exceptionally in the future.
Definition Promise.hpp:357
A class that represents a promise-based implementation often used for handling asynchronous operation...
Definition Promises.hpp:46
A helper class needed to construct smart pointers to objects and does not allow explicit construction...
Definition SharedEntity.hpp:89
static auto createShared(Args &&...args)
Creates a smart pointer to an object.
Definition SharedEntity.hpp:104
A runtime axception with stacktrace.
Definition RuntimeException.hpp:25
const std::string & getStackTrace() const &
Definition RuntimeException.cpp:83
RuntimeException(const StringLike &message, const StringLike &additionalStackTrace="")
Constructs a runtime exception.
Definition RuntimeException.cpp:67
static const SessionFilter TRADING
Accepts trading sessions only - those with (Session::isTrading() == true).
Definition SessionFilter.hpp:122
static const SessionFilter ANY
Accepts any session - useful for pure schedule navigation.
Definition SessionFilter.hpp:121
SessionFilter(SessionFilterEnum code, const StringLike &name, std::optional< SessionType > type, std::optional< bool > trading) noexcept
Creates a filter with specified type and trading flag conditions.
Definition CandleSession.cpp:52
static const SessionFilter AFTER_MARKET
Accepts any session with type SessionType::AFTER_MARKET.
Definition SessionFilter.hpp:130
static const SessionFilter REGULAR
Accepts any session with type SessionType::REGULAR.
Definition SessionFilter.hpp:129
static const SessionFilter NO_TRADING
Accepts any session with type SessionType::NO_TRADING.
Definition SessionFilter.hpp:125
static const SessionFilter NON_TRADING
Accepts non-trading sessions only - those with (Session::isTrading() == false).
Definition SessionFilter.hpp:123
static const SessionFilter PRE_MARKET
Accepts any session with type SessionType::PRE_MARKET.
Definition SessionFilter.hpp:127
bool accept(Session session) const noexcept
Tests whether or not the specified session is an acceptable result.
Definition SessionFilter.hpp:109
std::optional< bool > trading_
Required trading flag, std::nullopt if not relevant.
Definition SessionFilter.hpp:75
std::optional< SessionType > type_
Required type, std::nullopt if not relevant.
Definition SessionFilter.hpp:73
Defines type of session - what kind of trading activity is allowed (if any), what rules are used,...
Definition SessionType.hpp:38
static const SessionType AFTER_MARKET
After-market session type marks extended trading session after regular trading hours.
Definition SessionType.hpp:117
static const SessionType PRE_MARKET
Pre-market session type marks extended trading session before regular trading hours.
Definition SessionType.hpp:115
static const SessionType REGULAR
Regular session type marks regular trading hours session.
Definition SessionType.hpp:116
static const SessionType NO_TRADING
Non-trading session type is used to mark periods of time during which trading is not allowed.
Definition SessionType.hpp:114
bool isTrading() const noexcept
Returns true if trading activity is allowed for this type of session.
Definition CandleSession.cpp:34
A base abstract "shared entity" class. Has some helpers for dynamic polymorphism.
Definition SharedEntity.hpp:25
virtual std::string toString() const
Returns a string representation of the current object.
Definition SharedEntity.hpp:78
std::shared_ptr< T > sharedAs() const noexcept
Returns a pointer to the current object wrapped in a smart pointer to type T or std::shared_ptr<T>{nu...
Definition SharedEntity.hpp:69
std::shared_ptr< T > sharedAs() noexcept
Returns a pointer to the current object wrapped in a smart pointer to type T or std::shared_ptr<T>{nu...
Definition SharedEntity.hpp:58
bool is() const noexcept
Checks that the pointer to the current type could be converted to type T* In other words: whether typ...
Definition SharedEntity.hpp:39
std::size_t operator+=(ListenerType &&listener)
Adds the listener to "main" group.
Definition Handler.hpp:379
void remove(std::size_t id)
Removes a listener by the id.
Definition Handler.hpp:399
void handle(ArgTypes... args)
Calls the listeners and pass the args to them.
Definition Handler.hpp:317
void operator()(ArgTypes... args)
Calls the listeners and pass the ars to them.
Definition Handler.hpp:328
std::size_t addLowPriority(ListenerType &&listener)
Adds the low priority listener (to the "low priority" group) It will be called after the "main" liste...
Definition Handler.hpp:359
void operator-=(std::size_t id)
Removes a listener by the id.
Definition Handler.hpp:418
std::size_t operator%=(ListenerType &&listener)
Adds the low priority listener (to the "low priority" group).
Definition Handler.hpp:390
SimpleHandler() noexcept
Creates the new handler.
Definition Handler.hpp:289
std::size_t add(ListenerType &&listener)
Adds the listener to "main" group.
Definition Handler.hpp:338
Universal functional object that allows searching std::unordered_map for string-like keys.
Definition StringUtils.hpp:111
A simple wrapper around strings or something similar to strings to reduce the amount of code for meth...
Definition Common.hpp:842
A lightweight wrapper around strings or string-like inputs.
Definition StringUtils.hpp:27
StringSymbol(std::string_view stringView) noexcept
Constructs StringSymbol from a std::string_view.
Definition StringSymbol.cpp:54
StringSymbol(const char *chars) noexcept
Constructs StringSymbol from a char array.
Definition StringSymbol.cpp:45
static void freeGraal(void *graalNative)
Releases the memory occupied by the dxFeed Graal SDK structure (recursively if necessary).
Definition StringSymbol.cpp:83
std::string toString() const
Returns a string representation of the current object.
Definition StringSymbol.cpp:114
static StringSymbol fromGraal(void *graalNative)
Creates an object of the current type and fills it with data from the dxFeed Graal SDK structure.
Definition StringSymbol.cpp:99
void * toGraal() const
Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
Definition StringSymbol.cpp:72
Common string constants used across the library.
Definition StringUtils.hpp:128
static const std::string NUL
Textual representation of a null / missing string: "<null>".
Definition StringUtils.hpp:133
static const std::string EMPTY
Empty string constant: "".
Definition StringUtils.hpp:130
std::optional< CandleSymbol > asCandleSymbol() const noexcept
Definition SymbolWrapper.cpp:239
SymbolWrapper(Symbol &&symbol) noexcept
Constructor for any wrapped symbol.
Definition SymbolWrapper.hpp:160
bool isIndexedEventSubscriptionSymbol() const noexcept
Definition SymbolWrapper.cpp:215
std::string toString() const
Returns a string representation of the current object.
Definition SymbolWrapper.cpp:181
static SymbolWrapper fromGraal(void *graalNative)
Creates an object of the current type and fills it with data from the dxFeed Graal SDK structure.
Definition SymbolWrapper.cpp:133
std::string toStringUnderlying() const
Returns a string representation of the underlying object.
Definition SymbolWrapper.cpp:191
std::unique_ptr< void, decltype(&SymbolWrapper::freeGraal)> toGraalUnique() const noexcept
Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
Definition SymbolWrapper.cpp:177
bool isStringSymbol() const noexcept
Definition SymbolWrapper.cpp:199
std::optional< IndexedEventSubscriptionSymbol > asIndexedEventSubscriptionSymbol() const noexcept
Definition SymbolWrapper.cpp:219
bool isWildcardSymbol() const noexcept
Definition SymbolWrapper.cpp:207
void * toGraal() const noexcept
Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
Definition SymbolWrapper.cpp:165
SymbolWrapper(const IndexedEventSubscriptionSymbol &indexedEventSubscriptionSymbol) noexcept
Constructor for IndexedEventSubscriptionSymbol.
Definition SymbolWrapper.cpp:66
std::string asStringSymbol() const noexcept
Definition SymbolWrapper.cpp:203
SymbolWrapper(const StringSymbol &stringSymbol) noexcept
Constructor for any wrapped string symbol.
Definition SymbolWrapper.cpp:50
std::optional< WildcardSymbol > asWildcardSymbol() const noexcept
Definition SymbolWrapper.cpp:211
SymbolWrapper(const CandleSymbol &candleSymbol) noexcept
Constructor for CandleSymbol.
Definition SymbolWrapper.cpp:84
SymbolWrapper(const WildcardSymbol &wildcardSymbol) noexcept
Constructor for any wrapped wildcard (*) symbol.
Definition SymbolWrapper.cpp:58
bool isTimeSeriesSubscriptionSymbol() const noexcept
Definition SymbolWrapper.cpp:225
SymbolWrapper(const TimeSeriesSubscriptionSymbol &timeSeriesSubscriptionSymbol) noexcept
Constructor for TimeSeriesSubscriptionSymbol.
Definition SymbolWrapper.cpp:75
bool isCandleSymbol() const noexcept
Definition SymbolWrapper.cpp:235
std::optional< TimeSeriesSubscriptionSymbol > asTimeSeriesSubscriptionSymbol() const noexcept
Definition SymbolWrapper.cpp:229
static void freeGraal(void *graalNative)
Releases the memory occupied by the dxFeed Graal SDK structure (recursively if necessary).
Definition SymbolWrapper.cpp:95
const DataType & getData() const noexcept
Definition SymbolWrapper.cpp:243
Value class for a period of time with support for ISO8601 duration format.
Definition TimePeriod.hpp:27
static TimePeriod valueOf(const StringLike &value)
Returns TimePeriod represented with a given string.
Definition TimePeriod.cpp:28
static TimePeriod valueOf(std::chrono::milliseconds value)
Returns TimePeriod with value milliseconds.
Definition TimePeriod.cpp:24
std::int64_t getNanos() const
Returns value in nanoseconds.
Definition TimePeriod.cpp:48
static const TimePeriod ZERO
Time-period of zero.
Definition TimePeriod.hpp:31
std::int32_t getSeconds() const
Returns value in seconds.
Definition TimePeriod.cpp:40
std::int64_t getTime() const
Returns value in milliseconds.
Definition TimePeriod.cpp:32
static const TimePeriod UNLIMITED
Time-period of "infinity" (time of std::numeric_limits<std::int64_t>::max() or LLONG_MAX).
Definition TimePeriod.hpp:34
static TimePeriod valueOf(std::int64_t value)
Returns TimePeriod with value milliseconds.
Definition TimePeriod.cpp:20
Represents time-series snapshots of some process that is evolving in time or actual events in some ex...
Definition TimeSeriesEvent.hpp:84
const IndexedEventSource & getSource() const &noexcept override
Returns the source identifier for this event, which is always DEFAULT for time-series events.
Definition TimeSeriesEvent.cpp:8
std::int64_t getIndex() const noexcept override
Returns unique per-symbol index of this event.
Definition TimeSeriesEvent.cpp:12
virtual std::int64_t getEventId() const noexcept
Returns unique per-symbol index of this event.
Definition TimeSeriesEvent.cpp:16
virtual std::int64_t getTime() const noexcept=0
Returns timestamp of the event.
Mixin for wrapping Promise method calls for a void.
Definition Promise.hpp:184
void await(std::int32_t timeoutInMilliseconds) const &
Wait for the computation to complete or timeout and return its result or throw an exception in case o...
Definition Promise.hpp:216
void await(const std::chrono::milliseconds &timeoutInMilliseconds) const &
Wait for the computation to complete or timeout and return its result or throw an exception in case o...
Definition Promise.hpp:231
void await() const
Wait for the computation to complete and return its result or throw an exception in case of exception...
Definition Promise.hpp:201
void getResult() const
Returns result of computation.
Definition Promise.hpp:191
static void freeGraal(void *graalNative)
Releases the memory occupied by the dxFeed Graal SDK structure (recursively if necessary).
Definition WildcardSymbol.cpp:43
static const WildcardSymbol & fromGraal(void *graalNative)
Creates an object of the current type and fills it with data from the dxFeed Graal SDK structure.
Definition WildcardSymbol.cpp:49
void * toGraal() const noexcept
Allocates memory for the dxFeed Graal SDK structure (recursively if necessary).
Definition WildcardSymbol.cpp:33
static const WildcardSymbol ALL
Represents [wildcard] subscription to all events of the specific event type.
Definition WildcardSymbol.hpp:12
std::string toString() const
Returns string representation of this wildcard subscription symbol.
Definition WildcardSymbol.cpp:57
static const std::string RESERVED_PREFIX
Symbol prefix that is reserved for wildcard subscriptions.
Definition WildcardSymbol.hpp:32
The simple key-value structure that represents an endpoint's property.
Definition api.h:184
const char * key
The property's key.
Definition api.h:186
const char * value
The property's value.
Definition api.h:188