LongPort OpenAPI C++ SDK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator
types.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "decimal.hpp"
4 #include <optional>
5 #include <vector>
6 
7 namespace longport {
8 
9 struct Date
10 {
11  int32_t year;
12  uint8_t month;
13  uint8_t day;
14 };
15 
16 struct Time
17 {
18  uint8_t hour;
19  uint8_t minute;
20  uint8_t second;
21 };
22 
23 struct DateTime
24 {
27 };
28 
30 enum class Language
31 {
33  ZH_CN,
35  ZH_HK,
37  EN,
38 };
39 
42 {
44  Realtime,
46  Confirmed,
47 };
48 
50 enum class Market
51 {
53  Unknown,
55  US,
57  HK,
59  CN,
61  SG,
62 };
63 
64 namespace quote {
65 
66 enum class TradeStatus;
67 
69 class SubFlags
70 {
71 private:
72  uint8_t value_;
73 
74 public:
75  inline SubFlags(uint8_t value) { value_ = value; }
76 
77  inline operator uint8_t() const { return value_; }
78 
79  inline SubFlags operator|(const SubFlags& other) const
80  {
81  return SubFlags(value_ | other.value_);
82  }
83 
84  inline SubFlags& operator|=(const SubFlags& other)
85  {
86  value_ |= other.value_;
87  return *this;
88  }
89 
90  inline SubFlags operator&(const SubFlags& other) const
91  {
92  return SubFlags(value_ & other.value_);
93  }
94 
95  inline SubFlags& operator&=(const SubFlags& other)
96  {
97  value_ &= other.value_;
98  return *this;
99  }
100 
101  inline bool operator==(const SubFlags& other) const
102  {
103  return value_ == other.value_;
104  }
105 
106  inline bool contains(const SubFlags& other) const
107  {
108  return (value_ & other.value_) > 0;
109  }
110 
111  static SubFlags QUOTE();
112  static SubFlags DEPTH();
113  static SubFlags BROKER();
114  static SubFlags TRADE();
115 };
116 
119 {
120  uint8_t value;
121 
122  bool has_option();
123  bool has_warrant();
124 };
125 
127 enum class Period
128 {
130  Unknown,
132  Min1,
134  Min2,
136  Min3,
138  Min5,
140  Min10,
142  Min15,
144  Min20,
146  Min30,
148  Min45,
150  Min60,
152  Min120,
154  Min180,
156  Min240,
158  Day,
160  Week,
162  Month,
164  Quarter,
166  Year,
167 };
168 
171 {
173  std::string symbol;
177  std::vector<Period> candlesticks;
178 };
179 
181 enum class TradeSession
182 {
184  Normal,
186  Pre,
188  Post,
190  Overnight,
191 };
192 
194 struct PushQuote
195 {
197  std::string symbol;
207  int64_t timestamp;
209  int64_t volume;
217  int64_t current_volume;
220 };
221 
222 struct Depth
223 {
225  int32_t position;
227  std::optional<Decimal> price;
229  int64_t volume;
231  int64_t order_num;
232 };
233 
235 struct PushDepth
236 {
238  std::string symbol;
240  std::vector<Depth> asks;
242  std::vector<Depth> bids;
243 };
244 
246 struct Brokers
247 {
249  int32_t position;
251  std::vector<int32_t> broker_ids;
252 };
253 
256 {
258  std::string symbol;
260  std::vector<Brokers> ask_brokers;
262  std::vector<Brokers> bid_brokers;
263 };
264 
266 enum class SecurityBoard
267 {
269  Unknown,
271  USMain,
273  USPink,
275  USDJI,
277  USNSDQ,
279  USSector,
281  USOption,
283  USOptionS,
285  HKEquity,
287  HKPreIPO,
289  HKWarrant,
291  HKHS,
293  HKSector,
299  SHSTAR,
301  CNIX,
303  CNSector,
309  SZGEMConnect,
313  SGMain,
315  STI,
317  SGSector,
318 };
319 
321 struct Security
322 {
324  std::string symbol;
326  std::string name_cn;
328  std::string name_en;
330  std::string name_hk;
331 };
332 
335 {
337  std::string symbol;
339  std::string name_cn;
341  std::string name_en;
343  std::string name_hk;
345  std::string exchange;
347  std::string currency;
349  int32_t lot_size;
351  int64_t total_shares;
355  int64_t hk_shares;
368 };
369 
371 enum class TradeStatus
372 {
374  Normal,
376  Halted,
378  Delisted,
380  Fuse,
382  PrepareList,
384  CodeMoved,
386  ToBeOpened,
390  Expired,
394  SuspendTrade,
395 };
396 
399 {
403  int64_t timestamp;
405  int64_t volume;
414 };
415 
418 {
420  std::string symbol;
432  int64_t timestamp;
434  int64_t volume;
440  std::optional<PrePostQuote> pre_market_quote;
442  std::optional<PrePostQuote> post_market_quote;
444  std::optional<PrePostQuote> overnight_quote;
445 };
446 
448 enum class OptionType
449 {
451  Unknown,
453  American,
455  Europe,
456 };
457 
459 enum class OptionDirection
460 {
462  Unknown,
464  Put,
466  Call,
467 };
468 
471 {
472  std::string symbol;
484  int64_t timestamp;
486  int64_t volume;
494  int64_t open_interest;
510  std::string underlying_symbol;
511 };
512 
514 enum class TradeDirection
515 {
517  Neutral,
519  Down,
521  Up
522 };
523 
525 struct Trade
526 {
528  int64_t volume;
529  int64_t timestamp;
530  std::string trade_type;
533 };
534 
537 {
539  std::string symbol;
541  std::vector<Trade> trades;
542 };
543 
546 {
556  int64_t volume;
560  int64_t timestamp;
561 };
562 
565 {
567  std::string symbol;
574 };
575 
577 enum class WarrantType
578 {
580  Unknown,
582  Call,
584  Put,
586  Bull,
588  Bear,
590  Inline
591 };
592 
595 {
596  std::string symbol;
608  int64_t timestamp;
610  int64_t volume;
638  std::string underlying_symbol;
639 };
640 
643 {
645  std::vector<Depth> asks;
647  std::vector<Depth> bids;
648 };
649 
652 {
654  std::vector<Brokers> ask_brokers;
656  std::vector<Brokers> bid_brokers;
657 };
658 
660 {
662  std::vector<int32_t> broker_ids;
664  std::string name_cn;
666  std::string name_en;
668  std::string name_hk;
669 };
670 
673 {
675  int64_t timestamp;
676  int64_t volume;
679 };
680 
682 enum class AdjustType
683 {
684  NoAdjust,
686 };
687 
690 {
694  std::string call_symbol;
696  std::string put_symbol;
698  bool standard;
699 };
700 
703 {
705  int32_t issuer_id;
707  std::string name_cn;
709  std::string name_en;
711  std::string name_hk;
712 };
713 
715 {
722 };
723 
726 {
730  std::vector<TradingSessionInfo> trade_session;
731 };
732 
735 {
737  std::vector<Date> trading_days;
739  std::vector<Date> half_trading_days;
740 };
741 
744 {
748  int64_t timestamp;
749 };
750 
753 {
760 };
761 
764 {
766  int64_t timestamp;
771 };
772 
775 {
777  std::string symbol;
781  std::string name;
783  std::optional<Decimal> watched_price;
785  int64_t watched_at;
786 };
787 
790 {
792  int64_t id;
794  std::string name;
796  std::vector<WatchlistSecurity> securities;
797 };
798 
801 {
803  Add,
805  Remove,
807  Replace,
808 };
809 
812 {
814  std::string name;
816  std::vector<std::string> securities;
817 };
818 
821 {
823  int64_t id;
825  std::optional<std::string> name;
827  std::optional<std::vector<std::string>> securities;
830 };
831 
834 {
836  std::string symbol;
846  int64_t timestamp;
848  int64_t volume;
853 };
854 
856 enum class CalcIndex
857 {
859  LastDone,
861  ChangeValue,
863  ChangeRate,
865  Volume,
867  Turnover,
871  TurnoverRate,
875  CapitalFlow,
877  Amplitude,
879  VolumeRatio,
881  PeTtmRatio,
883  PbRatio,
895  ExpiryDate,
897  StrikePrice,
907  Premium,
909  ItmOtm,
913  WarrantDelta,
915  CallPrice,
917  ToCallPrice,
925  BalancePoint,
927  OpenInterest,
929  Delta,
931  Gamma,
933  Theta,
935  Vega,
937  Rho,
938 };
939 
942 {
944  std::string symbol;
946  std::optional<Decimal> last_done;
948  std::optional<Decimal> change_value;
950  std::optional<Decimal> change_rate;
952  std::optional<int64_t> volume;
954  std::optional<Decimal> turnover;
956  std::optional<Decimal> ytd_change_rate;
958  std::optional<Decimal> turnover_rate;
960  std::optional<Decimal> total_market_value;
962  std::optional<Decimal> capital_flow;
964  std::optional<Decimal> amplitude;
966  std::optional<Decimal> volume_ratio;
968  std::optional<Decimal> pe_ttm_ratio;
970  std::optional<Decimal> pb_ratio;
972  std::optional<Decimal> dividend_ratio_ttm;
974  std::optional<Decimal> five_day_change_rate;
976  std::optional<Decimal> ten_day_change_rate;
978  std::optional<Decimal> half_year_change_rate;
980  std::optional<Decimal> five_minutes_change_rate;
982  std::optional<Date> expiry_date;
984  std::optional<Decimal> strike_price;
986  std::optional<Decimal> upper_strike_price;
988  std::optional<Decimal> lower_strike_price;
990  std::optional<int64_t> outstanding_qty;
992  std::optional<Decimal> outstanding_ratio;
994  std::optional<Decimal> premium;
996  std::optional<Decimal> itm_otm;
998  std::optional<Decimal> implied_volatility;
1000  std::optional<Decimal> warrant_delta;
1002  std::optional<Decimal> call_price;
1004  std::optional<Decimal> to_call_price;
1006  std::optional<Decimal> effective_leverage;
1008  std::optional<Decimal> leverage_ratio;
1010  std::optional<Decimal> conversion_ratio;
1012  std::optional<Decimal> balance_point;
1014  std::optional<int64_t> open_interest;
1016  std::optional<Decimal> delta;
1018  std::optional<Decimal> gamma;
1020  std::optional<Decimal> theta;
1022  std::optional<Decimal> vega;
1024  std::optional<Decimal> rho;
1025 };
1026 
1028 enum class SortOrderType
1029 {
1031  Ascending,
1033  Descending,
1034 };
1035 
1037 enum class WarrantSortBy
1038 {
1040  LastDone,
1042  ChangeRate,
1044  ChangeValue,
1046  Volume,
1048  Turnover,
1050  ExpiryDate,
1052  StrikePrice,
1062  Premium,
1064  ItmOtm,
1068  Delta,
1070  CallPrice,
1072  ToCallPrice,
1076  LeverageRatio,
1080  BalancePoint,
1082  Status,
1083 };
1084 
1087 {
1089  LT_3,
1091  Between_3_6,
1093  Between_6_12,
1095  GT_12,
1096 };
1097 
1100 {
1102  In,
1104  Out,
1105 };
1106 
1108 enum class WarrantStatus
1109 {
1111  Suspend,
1113  PrepareList,
1115  Normal,
1116 };
1117 
1120 {
1122  std::string symbol;
1126  std::string name;
1134  int64_t volume;
1140  std::optional<Decimal> strike_price;
1142  std::optional<Decimal> upper_strike_price;
1144  std::optional<Decimal> lower_strike_price;
1152  std::optional<Decimal> itm_otm;
1154  std::optional<Decimal> implied_volatility;
1156  std::optional<Decimal> delta;
1158  std::optional<Decimal> call_price;
1160  std::optional<Decimal> to_call_price;
1162  std::optional<Decimal> effective_leverage;
1166  std::optional<Decimal> conversion_ratio;
1168  std::optional<Decimal> balance_point;
1171 };
1172 
1175 {
1177  Overnight,
1178 };
1179 
1182 {
1184  std::string key;
1186  std::string name;
1188  std::string description;
1190  int64_t start_at;
1192  int64_t end_at;
1193 };
1194 
1195 } // namespace quote
1196 
1197 namespace trade {
1198 
1200 enum class TopicType
1201 {
1203  Private,
1204 };
1205 
1208 {
1209  std::string order_id;
1210  std::string trade_id;
1211  std::string symbol;
1212  int64_t trade_done_at;
1215 };
1216 
1219 {
1221  std::optional<int64_t> start_at;
1223  std::optional<int64_t> end_at;
1225  std::optional<std::string> symbol;
1226 };
1227 
1230 {
1232  std::optional<std::string> symbol;
1234  std::optional<std::string> order_id;
1235 };
1236 
1238 enum class OrderStatus
1239 {
1241  Unknown,
1243  NotReported,
1251  Filled,
1253  WaitToNew,
1255  New,
1257  WaitToReplace,
1261  Replaced,
1263  PartialFilled,
1265  WaitToCancel,
1267  PendingCancel,
1269  Rejected,
1271  Canceled,
1273  Expired,
1276 };
1277 
1279 enum class OrderSide
1280 {
1282  Unknown,
1284  Buy,
1286  Sell,
1287 };
1288 
1290 enum class OrderType
1291 {
1293  Unknown,
1295  LO,
1297  ELO,
1299  MO,
1301  AO,
1303  ALO,
1305  ODD,
1307  LIT,
1309  MIT,
1311  TSLPAMT,
1313  TSLPPCT,
1315  TSMAMT,
1317  TSMPCT,
1319  SLO,
1320 };
1321 
1323 enum class OrderTag
1324 {
1326  Unknown,
1328  Normal,
1330  LongTerm,
1332  Grey,
1334  MarginCall,
1336  Offline,
1338  Creditor,
1340  Debtor,
1342  NonExercise,
1344  AllocatedSub,
1345 };
1346 
1349 {
1351  Unknown,
1353  Day,
1357  GoodTilDate,
1358 };
1359 
1361 enum class TriggerStatus
1362 {
1364  Unknown,
1366  Deactive,
1368  Active,
1370  Released,
1371 };
1372 
1374 enum class OutsideRTH
1375 {
1377  Unknown,
1379  RTHOnly,
1381  AnyTime,
1383  Overnight,
1384 };
1385 
1387 struct Order
1388 {
1390  std::string order_id;
1394  std::string stock_name;
1400  std::optional<Decimal> price;
1402  std::optional<Decimal> executed_price;
1404  int64_t submitted_at;
1408  std::string symbol;
1412  std::optional<Decimal> last_done;
1414  std::optional<Decimal> trigger_price;
1416  std::string msg;
1422  std::optional<Date> expire_date;
1424  std::optional<int64_t> updated_at;
1426  std::optional<int64_t> trigger_at;
1428  std::optional<Decimal> trailing_amount;
1430  std::optional<Decimal> trailing_percent;
1432  std::optional<Decimal> limit_offset;
1434  std::optional<TriggerStatus> trigger_status;
1436  std::string currency;
1438  std::optional<OutsideRTH> outside_rth;
1440  std::string remark;
1441 };
1442 
1445 {
1449  std::string stock_name;
1453  std::string symbol;
1461  std::optional<Decimal> executed_price;
1463  std::string order_id;
1465  std::string currency;
1469  int64_t submitted_at;
1471  int64_t updated_at;
1473  std::optional<Decimal> trigger_price;
1475  std::string msg;
1479  std::optional<TriggerStatus> trigger_status;
1481  std::optional<int64_t> trigger_at;
1483  std::optional<Decimal> trailing_amount;
1485  std::optional<Decimal> trailing_percent;
1487  std::optional<Decimal> limit_offset;
1489  std::string account_no;
1491  std::optional<Decimal> last_share;
1493  std::optional<Decimal> last_price;
1495  std::string remark;
1496 };
1497 
1500 {
1502  std::optional<std::string> symbol;
1504  std::optional<std::vector<OrderStatus>> status;
1506  std::optional<OrderSide> side;
1508  std::optional<Market> market;
1510  std::optional<int64_t> start_at;
1512  std::optional<int64_t> end_at;
1513 };
1514 
1517 {
1519  std::optional<std::string> symbol;
1521  std::optional<std::vector<OrderStatus>> status;
1523  std::optional<OrderSide> side;
1525  std::optional<Market> market;
1527  std::optional<std::string> order_id;
1528 };
1529 
1532 {
1534  std::string order_id;
1538  std::optional<Decimal> price;
1540  std::optional<Decimal> trigger_price;
1542  std::optional<Decimal> limit_offset;
1544  std::optional<Decimal> trailing_amount;
1546  std::optional<Decimal> trailing_percent;
1548  std::optional<std::string> remark;
1549 };
1550 
1553 {
1555  std::string symbol;
1565  std::optional<Decimal> submitted_price;
1567  std::optional<Decimal> trigger_price;
1569  std::optional<Decimal> limit_offset;
1571  std::optional<Decimal> trailing_amount;
1573  std::optional<Decimal> trailing_percent;
1576  std::optional<Date> expire_date;
1578  std::optional<OutsideRTH> outside_rth;
1580  std::optional<std::string> remark;
1581 };
1582 
1585 {
1587  std::string order_id;
1588 };
1589 
1591 struct CashInfo
1592 {
1602  std::string currency;
1603 };
1604 
1607 {
1615  int32_t risk_level;
1619  std::string currency;
1621  std::vector<CashInfo> cash_infos;
1630 };
1631 
1634 {
1636  Unknown,
1638  Out,
1640  In,
1641 };
1642 
1644 enum class BalanceType
1645 {
1647  Unknown,
1649  Cash,
1651  Stock,
1653  Fund,
1654 };
1655 
1657 struct CashFlow
1658 {
1668  std::string currency;
1670  int64_t business_time;
1672  std::optional<std::string> symbol;
1674  std::string description;
1675 };
1676 
1679 {
1681  int64_t start_at;
1683  int64_t end_at;
1685  std::optional<BalanceType> business_type;
1687  std::optional<std::string> symbol;
1689  std::optional<uintptr_t> page;
1691  std::optional<uintptr_t> size;
1692 };
1693 
1696 {
1698  std::optional<std::vector<std::string>> symbols;
1699 };
1700 
1703 {
1705  std::optional<std::vector<std::string>> symbols;
1706 };
1707 
1710 {
1712  std::string symbol;
1718  std::string symbol_name;
1720  std::string currency;
1725 };
1726 
1729 {
1731  std::string account_channel;
1733  std::vector<FundPosition> positions;
1734 };
1735 
1738 {
1740  std::vector<FundPositionChannel> channels;
1741 };
1742 
1745 {
1747  std::string symbol;
1749  std::string symbol_name;
1755  std::string currency;
1762  std::optional<Decimal> init_quantity;
1763 };
1764 
1767 {
1769  std::string account_channel;
1771  std::vector<StockPosition> positions;
1772 };
1773 
1776 {
1778  std::vector<StockPositionChannel> channels;
1779 };
1780 
1783 {
1790 };
1791 
1794 {
1795  Unknown,
1796  None,
1797  Calculated,
1798  Pending,
1799  Ready,
1800 };
1801 
1804 {
1805  Unknown,
1806  None,
1807  NoData,
1808  Pending,
1809  Done,
1810 };
1811 
1814 {
1815  Unknown,
1816  Broker,
1817  Third,
1818 };
1819 
1822 {
1832  std::string msg;
1834  int64_t time;
1835 };
1836 
1839 {
1841  std::string code;
1843  std::string name;
1847  std::string currency;
1848 };
1849 
1852 {
1856  std::string name;
1858  std::vector<OrderChargeFee> fees;
1859 };
1860 
1863 {
1867  std::string currency;
1869  std::vector<OrderChargeItem> items;
1870 };
1871 
1874 {
1876  std::string order_id;
1880  std::string stock_name;
1886  std::optional<Decimal> price;
1888  std::optional<Decimal> executed_price;
1890  int64_t submitted_at;
1894  std::string symbol;
1898  std::optional<Decimal> last_done;
1900  std::optional<Decimal> trigger_price;
1902  std::string msg;
1908  std::optional<Date> expire_date;
1910  std::optional<int64_t> updated_at;
1912  std::optional<int64_t> trigger_at;
1914  std::optional<Decimal> trailing_amount;
1916  std::optional<Decimal> trailing_percent;
1918  std::optional<Decimal> limit_offset;
1920  std::optional<TriggerStatus> trigger_status;
1922  std::string currency;
1924  std::optional<OutsideRTH> outside_rth;
1926  std::string remark;
1930  std::optional<Decimal> free_amount;
1932  std::optional<std::string> free_currency;
1936  std::optional<Decimal> deductions_amount;
1938  std::optional<std::string> deductions_currency;
1942  std::optional<Decimal> platform_deducted_amount;
1944  std::optional<std::string> platform_deducted_currency;
1946  std::vector<OrderHistoryDetail> history;
1949 };
1950 
1953 {
1955  std::string symbol;
1961  std::optional<Decimal> price;
1963  std::optional<std::string> currency;
1966  std::optional<std::string> order_id;
1969 };
1970 
1973 {
1978 };
1979 
1980 } // namespace trade
1981 
1982 } // namespace longport
Definition: decimal.hpp:13
Subscription flags.
Definition: types.hpp:70
bool contains(const SubFlags &other) const
Definition: types.hpp:106
SubFlags & operator|=(const SubFlags &other)
Definition: types.hpp:84
SubFlags & operator&=(const SubFlags &other)
Definition: types.hpp:95
static SubFlags BROKER()
static SubFlags TRADE()
SubFlags operator|(const SubFlags &other) const
Definition: types.hpp:79
SubFlags operator&(const SubFlags &other) const
Definition: types.hpp:90
static SubFlags QUOTE()
SubFlags(uint8_t value)
Definition: types.hpp:75
bool operator==(const SubFlags &other) const
Definition: types.hpp:101
static SubFlags DEPTH()
TradeDirection
Trade direction.
Definition: types.hpp:515
CalcIndex
Calc index.
Definition: types.hpp:857
@ OutstandingQty
Outstanding quantity.
@ TenDayChangeRate
Ten days change ratio.
@ LeverageRatio
Leverage ratio.
@ LowerStrikePrice
Lower bound price.
@ EffectiveLeverage
Effective leverage.
@ ConversionRatio
Conversion ratio.
@ WarrantDelta
Warrant delta.
@ DividendRatioTtm
Dividend ratio (TTM)
@ ItmOtm
In/out of the bound.
@ CapitalFlow
Capital flow.
@ YtdChangeRate
Year-to-date change ratio.
@ FiveDayChangeRate
Five days change ratio.
@ StrikePrice
Strike price.
@ BalancePoint
Breakeven point.
@ ToCallPrice
Price interval from the call price.
@ TotalMarketValue
Total market value.
@ ChangeValue
Change value.
@ HalfYearChangeRate
Half year change ratio.
@ TurnoverRate
Turnover rate.
@ ImpliedVolatility
Implied volatility.
@ OutstandingRatio
Outstanding ratio.
@ FiveMinutesChangeRate
Five minutes change ratio.
@ UpperStrikePrice
Upper bound price.
@ VolumeRatio
Volume ratio.
@ OpenInterest
Open interest.
OptionDirection
Option direction.
Definition: types.hpp:460
SecuritiesUpdateMode
Securities update mode.
Definition: types.hpp:801
FilterWarrantExpiryDate
Filter warrant expiry date type.
Definition: types.hpp:1087
Period
Candlestick period.
Definition: types.hpp:128
@ Min45
Forty-Five Minutes.
@ Min20
Twenty Minutes.
@ Min3
Three Minutes.
@ Min15
Fifteen Minutes.
@ Min30
Thirty Minutes.
TradeSession
Trade session.
Definition: types.hpp:182
@ Overnight
Overnight-Trading.
TradeStatus
Trade status.
Definition: types.hpp:372
@ SplitStockHalts
Split Stock Halts.
@ WarrantPrepareList
Warrant To BeListed.
SecurityBoard
Security board.
Definition: types.hpp:267
@ STI
Singapore Straits Index.
@ USSector
US Industry Board.
@ HKPreIPO
HK PreIPO Security.
@ SHSTAR
SH Science and Technology Innovation Board.
@ SZMainNonConnect
SZ Main Board(Non Connect)
@ HKSector
HK Industry Board.
@ SZGEMNonConnect
SZ Gem Board(Non Connect)
@ SZMainConnect
SZ Main Board(Connect)
@ SHMainNonConnect
SH Main Board(Non Connect)
@ SHMainConnect
SH Main Board(Connect)
@ SZGEMConnect
SZ Gem Board(Connect)
@ USOptionS
US Sepecial Option.
@ SGSector
SG Industry Board.
@ HKEquity
Hong Kong Equity Securities.
@ USDJI
Dow Jones Industrial Average.
@ CNSector
CN Industry Board.
AdjustType
Adjust type.
Definition: types.hpp:683
OptionType
Option type.
Definition: types.hpp:449
WarrantStatus
Warrant status.
Definition: types.hpp:1109
SecurityListCategory
Security list category.
Definition: types.hpp:1175
WarrantSortBy
Warrant sort by.
Definition: types.hpp:1038
@ LeverageRatio
Leverage ratio.
@ LowerStrikePrice
Lower strike price.
@ EffectiveLeverage
Effective leverage.
@ ConversionRatio
Conversion ratio.
@ ItmOtm
In/out of the bound.
@ BalancePoint
Breakeven point.
@ ToCallPrice
Price interval from the call price.
@ ImpliedVolatility
Implied volatility.
@ Delta
Greek value Delta.
@ OutstandingRatio
Outstanding ratio.
@ OutstandingQuantity
Outstanding quantity.
@ UpperStrikePrice
Upper strike price.
FilterWarrantInOutBoundsType
Filter warrant in/out of the bounds type.
Definition: types.hpp:1100
WarrantType
Warrant type.
Definition: types.hpp:578
SortOrderType
Sort order type.
Definition: types.hpp:1029
TriggerStatus
Trigger status.
Definition: types.hpp:1362
OutsideRTH
Enable or disable outside regular trading hours.
Definition: types.hpp:1375
@ RTHOnly
Regular trading hour only.
OrderTag
Order tag.
Definition: types.hpp:1324
@ LongTerm
Long term Order.
@ MarginCall
Force Selling.
@ Creditor
Option Exercise Long.
@ NonExercise
Wavier Of Option Exercise.
@ AllocatedSub
Trade Allocation.
@ Debtor
Option Exercise Short.
ChargeCategoryCode
Charge category code.
Definition: types.hpp:1814
OrderType
Order type.
Definition: types.hpp:1291
@ TSLPAMT
Trailing Limit If Touched (Trailing Amount)
@ AO
At-auction Order.
@ ALO
At-auction Limit Order.
@ MIT
Market If Touched.
@ SLO
Special Limit Order.
@ LIT
Limit If Touched.
@ TSMAMT
Trailing Market If Touched (Trailing Amount)
@ ELO
Enhanced Limit Order.
@ TSLPPCT
Trailing Limit If Touched (Trailing Percent)
@ TSMPCT
Trailing Market If Touched (Trailing Percent)
OrderSide
Order side.
Definition: types.hpp:1280
TimeInForceType
Time in force Type.
Definition: types.hpp:1349
@ GoodTilDate
Good Til Date Order.
@ GoodTilCanceled
Good Til Canceled Order.
CommissionFreeStatus
Commission-free Status.
Definition: types.hpp:1794
CashFlowDirection
Cash flow direction.
Definition: types.hpp:1634
TopicType
Topic type.
Definition: types.hpp:1201
@ Private
Private notification for trade.
DeductionStatus
Deduction status.
Definition: types.hpp:1804
BalanceType
Balance type.
Definition: types.hpp:1645
OrderStatus
Order status.
Definition: types.hpp:1239
@ PartialWithdrawal
Partial Withdrawal.
@ ReplacedNotReported
Not reported (Replaced Order)
@ PendingCancel
Pending Cancel.
@ WaitToReplace
Wait To Replace.
@ PartialFilled
Partial Filled.
@ PendingReplace
Pending Replace.
@ VarietiesNotReported
Not reported (Conditional Order)
@ WaitToCancel
Wait To Cancel.
@ ProtectedNotReported
Not reported (Protected Order)
Definition: async_result.hpp:7
PushCandlestickMode
Push candlestick mode.
Definition: types.hpp:42
Market
Market.
Definition: types.hpp:51
@ SG
SG market.
@ CN
CN market.
@ HK
HK market.
@ US
US market.
@ Unknown
Unknown.
Language
Language identifer.
Definition: types.hpp:31
Definition: types.hpp:10
uint8_t day
Definition: types.hpp:13
int32_t year
Definition: types.hpp:11
uint8_t month
Definition: types.hpp:12
Definition: types.hpp:24
Date date
Definition: types.hpp:25
Time time
Definition: types.hpp:26
Definition: types.hpp:17
uint8_t minute
Definition: types.hpp:19
uint8_t second
Definition: types.hpp:20
uint8_t hour
Definition: types.hpp:18
Brokers.
Definition: types.hpp:247
int32_t position
Position.
Definition: types.hpp:249
std::vector< int32_t > broker_ids
Broker IDs.
Definition: types.hpp:251
Candlestick.
Definition: types.hpp:546
Decimal open
Open price.
Definition: types.hpp:550
Decimal high
High price.
Definition: types.hpp:554
Decimal low
Low price.
Definition: types.hpp:552
Decimal turnover
Turnover.
Definition: types.hpp:558
int64_t timestamp
Timestamp.
Definition: types.hpp:560
Decimal close
Close price.
Definition: types.hpp:548
int64_t volume
Volume.
Definition: types.hpp:556
Capital distribution.
Definition: types.hpp:753
Decimal small
Small order.
Definition: types.hpp:759
Decimal large
Large order.
Definition: types.hpp:755
Decimal medium
Medium order.
Definition: types.hpp:757
Capital distribution response.
Definition: types.hpp:764
CapitalDistribution capital_in
Inflow capital data.
Definition: types.hpp:768
CapitalDistribution capital_out
Outflow capital data.
Definition: types.hpp:770
int64_t timestamp
Time.
Definition: types.hpp:766
Capital flow line.
Definition: types.hpp:744
Decimal inflow
Inflow capital data.
Definition: types.hpp:746
int64_t timestamp
Time.
Definition: types.hpp:748
An request for create watchlist group.
Definition: types.hpp:812
std::vector< std::string > securities
Securities.
Definition: types.hpp:816
std::string name
Group name.
Definition: types.hpp:814
Definition: types.hpp:223
std::optional< Decimal > price
Price.
Definition: types.hpp:227
int64_t volume
Volume.
Definition: types.hpp:229
int64_t order_num
Number of orders.
Definition: types.hpp:231
int32_t position
Position.
Definition: types.hpp:225
Derivative type.
Definition: types.hpp:119
uint8_t value
Definition: types.hpp:120
Intraday line.
Definition: types.hpp:673
Decimal avg_price
Definition: types.hpp:678
Decimal turnover
Definition: types.hpp:677
int64_t volume
Definition: types.hpp:676
Decimal price
Definition: types.hpp:674
int64_t timestamp
Definition: types.hpp:675
Issuer info.
Definition: types.hpp:703
std::string name_en
Issuer name (en)
Definition: types.hpp:709
int32_t issuer_id
Issuer ID.
Definition: types.hpp:705
std::string name_hk
Issuer name (zh-HK)
Definition: types.hpp:711
std::string name_cn
Issuer name (zh-CN)
Definition: types.hpp:707
Market trading days.
Definition: types.hpp:735
std::vector< Date > trading_days
Trading days.
Definition: types.hpp:737
std::vector< Date > half_trading_days
Half trading days.
Definition: types.hpp:739
Market trading session.
Definition: types.hpp:726
std::vector< TradingSessionInfo > trade_session
Trading session.
Definition: types.hpp:730
Market market
Market.
Definition: types.hpp:728
Quote of option.
Definition: types.hpp:471
Decimal strike_price
Strike price.
Definition: types.hpp:498
OptionType contract_type
Option type.
Definition: types.hpp:502
Date expiry_date
Exprity date.
Definition: types.hpp:496
Decimal high
High.
Definition: types.hpp:480
Decimal open
Open.
Definition: types.hpp:478
Decimal prev_close
Yesterday's close.
Definition: types.hpp:476
Decimal contract_size
Contract size.
Definition: types.hpp:504
Decimal turnover
Turnover.
Definition: types.hpp:488
Decimal low
Low.
Definition: types.hpp:482
Decimal implied_volatility
Implied volatility.
Definition: types.hpp:492
int64_t volume
Volume.
Definition: types.hpp:486
Decimal contract_multiplier
Contract multiplier.
Definition: types.hpp:500
TradeStatus trade_status
Security trading status.
Definition: types.hpp:490
std::string symbol
Security code.
Definition: types.hpp:472
int64_t open_interest
Number of open positions.
Definition: types.hpp:494
Decimal historical_volatility
Underlying security historical volatility of the option.
Definition: types.hpp:508
OptionDirection direction
Option direction.
Definition: types.hpp:506
int64_t timestamp
Time of latest price.
Definition: types.hpp:484
Decimal last_done
Latest price.
Definition: types.hpp:474
std::string underlying_symbol
Underlying security symbol of the option.
Definition: types.hpp:510
Definition: types.hpp:660
std::string name_en
Participant name (en)
Definition: types.hpp:666
std::string name_hk
Participant name (zh-HK)
Definition: types.hpp:668
std::vector< int32_t > broker_ids
Broker IDs.
Definition: types.hpp:662
std::string name_cn
Participant name (zh-CN)
Definition: types.hpp:664
Quote of US pre/post market.
Definition: types.hpp:399
Decimal high
High.
Definition: types.hpp:409
int64_t timestamp
Time of latest price.
Definition: types.hpp:403
Decimal prev_close
Close of the last trade session.
Definition: types.hpp:413
int64_t volume
Volume.
Definition: types.hpp:405
Decimal last_done
Latest price.
Definition: types.hpp:401
Decimal low
Low.
Definition: types.hpp:411
Decimal turnover
Turnover.
Definition: types.hpp:407
Brokers message.
Definition: types.hpp:256
std::vector< Brokers > ask_brokers
Ask brokers.
Definition: types.hpp:260
std::vector< Brokers > bid_brokers
Bid brokers.
Definition: types.hpp:262
std::string symbol
Security code.
Definition: types.hpp:258
Candlestick updated message.
Definition: types.hpp:565
std::string symbol
Security code.
Definition: types.hpp:567
bool is_confirmed
Is confirmed.
Definition: types.hpp:573
Candlestick candlestick
Candlestick.
Definition: types.hpp:571
Period period
Period type.
Definition: types.hpp:569
Depth message.
Definition: types.hpp:236
std::vector< Depth > bids
Bid depth.
Definition: types.hpp:242
std::vector< Depth > asks
Ask depth.
Definition: types.hpp:240
std::string symbol
Security code.
Definition: types.hpp:238
Quote message.
Definition: types.hpp:195
TradeSession trade_session
Trade session.
Definition: types.hpp:215
std::string symbol
Security code.
Definition: types.hpp:197
int64_t timestamp
Time of latest price.
Definition: types.hpp:207
int64_t current_volume
Increase volume between pushes.
Definition: types.hpp:217
Decimal low
Low.
Definition: types.hpp:205
Decimal high
High.
Definition: types.hpp:203
Decimal last_done
Latest price.
Definition: types.hpp:199
Decimal turnover
Turnover.
Definition: types.hpp:211
Decimal urrent_turnover
Increase turnover between pushes.
Definition: types.hpp:219
TradeStatus trade_status
Security trading status.
Definition: types.hpp:213
int64_t volume
Volume.
Definition: types.hpp:209
Decimal open
Open.
Definition: types.hpp:201
Trades message.
Definition: types.hpp:537
std::vector< Trade > trades
Trades data.
Definition: types.hpp:541
std::string symbol
Security code.
Definition: types.hpp:539
Quote package detail.
Definition: types.hpp:1182
std::string description
Description.
Definition: types.hpp:1188
std::string key
Key.
Definition: types.hpp:1184
int64_t end_at
End at.
Definition: types.hpp:1192
int64_t start_at
Start at.
Definition: types.hpp:1190
std::string name
Name.
Definition: types.hpp:1186
Real-time quote.
Definition: types.hpp:834
Decimal low
Low.
Definition: types.hpp:844
int64_t timestamp
Time of latest price.
Definition: types.hpp:846
Decimal high
High.
Definition: types.hpp:842
Decimal turnover
Turnover.
Definition: types.hpp:850
Decimal last_done
Latest price.
Definition: types.hpp:838
TradeStatus trade_status
Security trading status.
Definition: types.hpp:852
Decimal open
Open.
Definition: types.hpp:840
int64_t volume
Volume.
Definition: types.hpp:848
std::string symbol
Security code.
Definition: types.hpp:836
Security brokers.
Definition: types.hpp:652
std::vector< Brokers > ask_brokers
Ask brokers.
Definition: types.hpp:654
std::vector< Brokers > bid_brokers
Bid brokers.
Definition: types.hpp:656
Security calc index response.
Definition: types.hpp:942
std::optional< Decimal > outstanding_ratio
Outstanding ratio.
Definition: types.hpp:992
std::optional< Decimal > change_rate
Change ratio.
Definition: types.hpp:950
std::optional< Decimal > total_market_value
Total market value.
Definition: types.hpp:960
std::optional< Decimal > to_call_price
Price interval from the call price.
Definition: types.hpp:1004
std::optional< Decimal > balance_point
Breakeven point.
Definition: types.hpp:1012
std::optional< Decimal > pe_ttm_ratio
PE (TTM)
Definition: types.hpp:968
std::string symbol
Security code.
Definition: types.hpp:944
std::optional< Decimal > amplitude
Amplitude.
Definition: types.hpp:964
std::optional< Decimal > theta
Theta.
Definition: types.hpp:1020
std::optional< Decimal > delta
Delta.
Definition: types.hpp:1016
std::optional< Decimal > vega
Vega.
Definition: types.hpp:1022
std::optional< Decimal > call_price
Call price.
Definition: types.hpp:1002
std::optional< Decimal > pb_ratio
PB.
Definition: types.hpp:970
std::optional< Decimal > capital_flow
Capital flow.
Definition: types.hpp:962
std::optional< Decimal > leverage_ratio
Leverage ratio.
Definition: types.hpp:1008
std::optional< Decimal > lower_strike_price
Lower bound price.
Definition: types.hpp:988
std::optional< Decimal > rho
Rho.
Definition: types.hpp:1024
std::optional< Decimal > itm_otm
In/out of the bound.
Definition: types.hpp:996
std::optional< Decimal > implied_volatility
Implied volatility.
Definition: types.hpp:998
std::optional< Decimal > five_minutes_change_rate
Five minutes change ratio.
Definition: types.hpp:980
std::optional< int64_t > outstanding_qty
Outstanding quantity.
Definition: types.hpp:990
std::optional< Decimal > five_day_change_rate
Five days change ratio.
Definition: types.hpp:974
std::optional< Decimal > dividend_ratio_ttm
Dividend ratio (TTM)
Definition: types.hpp:972
std::optional< Decimal > turnover_rate
Turnover rate.
Definition: types.hpp:958
std::optional< Decimal > turnover
Turnover.
Definition: types.hpp:954
std::optional< Decimal > conversion_ratio
Conversion ratio.
Definition: types.hpp:1010
std::optional< Decimal > half_year_change_rate
Half year change ratio.
Definition: types.hpp:978
std::optional< Decimal > ytd_change_rate
Year-to-date change ratio.
Definition: types.hpp:956
std::optional< Date > expiry_date
Expiry date.
Definition: types.hpp:982
std::optional< Decimal > volume_ratio
Volume ratio.
Definition: types.hpp:966
std::optional< Decimal > gamma
Gamma.
Definition: types.hpp:1018
std::optional< Decimal > warrant_delta
Warrant delta.
Definition: types.hpp:1000
std::optional< int64_t > open_interest
Open interest.
Definition: types.hpp:1014
std::optional< Decimal > upper_strike_price
Upper bound price.
Definition: types.hpp:986
std::optional< int64_t > volume
Volume.
Definition: types.hpp:952
std::optional< Decimal > change_value
Change value.
Definition: types.hpp:948
std::optional< Decimal > strike_price
Strike price.
Definition: types.hpp:984
std::optional< Decimal > ten_day_change_rate
Ten days change ratio.
Definition: types.hpp:976
std::optional< Decimal > effective_leverage
Effective leverage.
Definition: types.hpp:1006
std::optional< Decimal > premium
Premium.
Definition: types.hpp:994
std::optional< Decimal > last_done
Latest price.
Definition: types.hpp:946
Security depth.
Definition: types.hpp:643
std::vector< Depth > asks
Ask depth.
Definition: types.hpp:645
std::vector< Depth > bids
Bid depth.
Definition: types.hpp:647
Security.
Definition: types.hpp:322
std::string symbol
Security code.
Definition: types.hpp:324
std::string name_hk
Security name (zh-HK)
Definition: types.hpp:330
std::string name_cn
Security name (zh-CN)
Definition: types.hpp:326
std::string name_en
Security name (en)
Definition: types.hpp:328
Quote of securitity.
Definition: types.hpp:418
int64_t timestamp
Time of latest price.
Definition: types.hpp:432
Decimal turnover
Turnover.
Definition: types.hpp:436
Decimal last_done
Latest price.
Definition: types.hpp:422
std::optional< PrePostQuote > overnight_quote
Quote of US overnight market.
Definition: types.hpp:444
Decimal high
High.
Definition: types.hpp:428
Decimal prev_close
Yesterday's close.
Definition: types.hpp:424
TradeStatus trade_status
Security trading status.
Definition: types.hpp:438
int64_t volume
Volume.
Definition: types.hpp:434
std::optional< PrePostQuote > pre_market_quote
Quote of US pre market.
Definition: types.hpp:440
Decimal low
Low.
Definition: types.hpp:430
Decimal open
Open.
Definition: types.hpp:426
std::optional< PrePostQuote > post_market_quote
Quote of US post market.
Definition: types.hpp:442
std::string symbol
Security code.
Definition: types.hpp:420
The basic information of securities.
Definition: types.hpp:335
Decimal dividend_yield
Dividend yield.
Definition: types.hpp:363
int64_t hk_shares
HK shares (only HK stocks)
Definition: types.hpp:355
Decimal eps
Earnings per share.
Definition: types.hpp:357
std::string exchange
Exchange which the security belongs to.
Definition: types.hpp:345
int32_t lot_size
Lot size.
Definition: types.hpp:349
std::string name_hk
Security name (zh-HK)
Definition: types.hpp:343
std::string name_cn
Security name (zh-CN)
Definition: types.hpp:339
DerivativeType stock_derivatives
Types of supported derivatives.
Definition: types.hpp:365
std::string currency
Trading currency.
Definition: types.hpp:347
Decimal eps_ttm
Earnings per share (TTM)
Definition: types.hpp:359
std::string symbol
Security code.
Definition: types.hpp:337
std::string name_en
Security name (en)
Definition: types.hpp:341
int64_t circulating_shares
Circulating shares.
Definition: types.hpp:353
SecurityBoard board
Board.
Definition: types.hpp:367
int64_t total_shares
Total shares.
Definition: types.hpp:351
Decimal bps
Net assets per share.
Definition: types.hpp:361
Strike price info.
Definition: types.hpp:690
std::string call_symbol
Security code of call option.
Definition: types.hpp:694
bool standard
Is standard.
Definition: types.hpp:698
std::string put_symbol
Security code of put option.
Definition: types.hpp:696
Decimal price
Strike price.
Definition: types.hpp:692
Subscription.
Definition: types.hpp:171
SubFlags sub_types
Subscription flags.
Definition: types.hpp:175
std::vector< Period > candlesticks
Candlesticks.
Definition: types.hpp:177
std::string symbol
Security code.
Definition: types.hpp:173
Trade.
Definition: types.hpp:526
TradeSession trade_session
Definition: types.hpp:532
TradeDirection direction
Definition: types.hpp:531
int64_t volume
Definition: types.hpp:528
std::string trade_type
Definition: types.hpp:530
int64_t timestamp
Definition: types.hpp:529
Decimal price
Definition: types.hpp:527
Definition: types.hpp:715
Time begin_time
Being trading time.
Definition: types.hpp:717
Time end_time
End trading time.
Definition: types.hpp:719
TradeSession trade_session
Trading session.
Definition: types.hpp:721
An request for update watchlist group.
Definition: types.hpp:821
SecuritiesUpdateMode mode
Securities Update Mode.
Definition: types.hpp:829
std::optional< std::string > name
Group name.
Definition: types.hpp:825
std::optional< std::vector< std::string > > securities
Securities.
Definition: types.hpp:827
int64_t id
Group id.
Definition: types.hpp:823
Warrant info.
Definition: types.hpp:1120
Decimal change_rate
Quote change rate.
Definition: types.hpp:1130
int64_t volume
Volume.
Definition: types.hpp:1134
std::optional< Decimal > delta
Delta.
Definition: types.hpp:1156
Date expiry_date
Expiry date.
Definition: types.hpp:1138
std::optional< Decimal > upper_strike_price
Upper strike price.
Definition: types.hpp:1142
Decimal premium
Premium.
Definition: types.hpp:1150
Decimal last_done
Latest price.
Definition: types.hpp:1128
std::string symbol
Security code.
Definition: types.hpp:1122
WarrantType warrant_type
Warrant type.
Definition: types.hpp:1124
std::optional< Decimal > to_call_price
Price interval from the call price.
Definition: types.hpp:1160
std::optional< Decimal > effective_leverage
Effective leverage.
Definition: types.hpp:1162
std::optional< Decimal > itm_otm
In/out of the bound.
Definition: types.hpp:1152
std::optional< Decimal > strike_price
Strike price.
Definition: types.hpp:1140
std::optional< Decimal > conversion_ratio
Conversion ratio.
Definition: types.hpp:1166
Decimal turnover
Turnover.
Definition: types.hpp:1136
int64_t outstanding_qty
Outstanding quantity.
Definition: types.hpp:1146
WarrantStatus status
Status.
Definition: types.hpp:1170
std::optional< Decimal > lower_strike_price
Lower strike price.
Definition: types.hpp:1144
std::string name
Security name.
Definition: types.hpp:1126
std::optional< Decimal > balance_point
Breakeven point.
Definition: types.hpp:1168
Decimal change_value
Quote change.
Definition: types.hpp:1132
std::optional< Decimal > implied_volatility
Implied volatility.
Definition: types.hpp:1154
std::optional< Decimal > call_price
Call price.
Definition: types.hpp:1158
Decimal outstanding_ratio
Outstanding ratio.
Definition: types.hpp:1148
Decimal leverage_ratio
Leverage ratio.
Definition: types.hpp:1164
Quote of warrant.
Definition: types.hpp:595
Decimal outstanding_ratio
Outstanding ratio.
Definition: types.hpp:622
Decimal low
Low.
Definition: types.hpp:606
Date last_trade_date
Last tradalbe date.
Definition: types.hpp:620
std::string symbol
Security code.
Definition: types.hpp:596
Decimal lower_strike_price
Lower bound price.
Definition: types.hpp:634
Decimal implied_volatility
Implied volatility.
Definition: types.hpp:616
Decimal open
Open.
Definition: types.hpp:602
int64_t outstanding_quantity
Outstanding quantity.
Definition: types.hpp:624
Decimal call_price
Call price.
Definition: types.hpp:636
int64_t timestamp
Time of latest price.
Definition: types.hpp:608
Date expiry_date
Exprity date.
Definition: types.hpp:618
Decimal strike_price
Strike price.
Definition: types.hpp:630
Decimal high
High.
Definition: types.hpp:604
Decimal turnover
Turnover.
Definition: types.hpp:612
std::string underlying_symbol
Underlying security symbol of the warrant.
Definition: types.hpp:638
int64_t volume
Volume.
Definition: types.hpp:610
WarrantType category
Warrant type.
Definition: types.hpp:628
Decimal last_done
Latest price.
Definition: types.hpp:598
Decimal prev_close
Yesterday's close.
Definition: types.hpp:600
Decimal conversion_ratio
Conversion ratio.
Definition: types.hpp:626
Decimal upper_strike_price
Upper bound price.
Definition: types.hpp:632
TradeStatus trade_status
Security trading status.
Definition: types.hpp:614
Watchlist group.
Definition: types.hpp:790
std::vector< WatchlistSecurity > securities
Securities.
Definition: types.hpp:796
int64_t id
Group id.
Definition: types.hpp:792
std::string name
Group name.
Definition: types.hpp:794
Watchlist security.
Definition: types.hpp:775
int64_t watched_at
Watched time.
Definition: types.hpp:785
std::string name
Security name.
Definition: types.hpp:781
std::string symbol
Security symbol.
Definition: types.hpp:777
std::optional< Decimal > watched_price
Watched price.
Definition: types.hpp:783
Market market
Market.
Definition: types.hpp:779
Account balance.
Definition: types.hpp:1607
Decimal buy_power
Buy power.
Definition: types.hpp:1629
std::vector< CashInfo > cash_infos
Cash details.
Definition: types.hpp:1621
Decimal init_margin
Initial margin.
Definition: types.hpp:1625
Decimal remaining_finance_amount
Remaining financing amount.
Definition: types.hpp:1613
Decimal total_cash
Total cash.
Definition: types.hpp:1609
int32_t risk_level
Risk control level.
Definition: types.hpp:1615
Decimal max_finance_amount
Maximum financing amount.
Definition: types.hpp:1611
Decimal margin_call
Margin call.
Definition: types.hpp:1617
std::string currency
Currency.
Definition: types.hpp:1619
Decimal maintenance_margin
Maintenance margin.
Definition: types.hpp:1627
Decimal net_assets
Net assets.
Definition: types.hpp:1623
Cash flow.
Definition: types.hpp:1658
CashFlowDirection direction
Outflow direction.
Definition: types.hpp:1662
int64_t business_time
Business time.
Definition: types.hpp:1670
std::optional< std::string > symbol
Associated Stock code information.
Definition: types.hpp:1672
Decimal balance
Cash amount.
Definition: types.hpp:1666
std::string description
Cash flow description.
Definition: types.hpp:1674
std::string transaction_flow_name
Cash flow name.
Definition: types.hpp:1660
BalanceType business_type
Balance type.
Definition: types.hpp:1664
std::string currency
Cash currency.
Definition: types.hpp:1668
Cash info.
Definition: types.hpp:1592
std::string currency
Currency.
Definition: types.hpp:1602
Decimal available_cash
Available cash.
Definition: types.hpp:1596
Decimal settling_cash
Cash to be settled.
Definition: types.hpp:1600
Decimal frozen_cash
Frozen cash.
Definition: types.hpp:1598
Decimal withdraw_cash
Withdraw cash.
Definition: types.hpp:1594
Options for estimate maximum purchase quantity.
Definition: types.hpp:1953
bool fractional_shares
Get the maximum fractional share buying power.
Definition: types.hpp:1968
std::optional< std::string > currency
Settlement currency.
Definition: types.hpp:1963
std::optional< Decimal > price
Estimated order price.
Definition: types.hpp:1961
OrderSide side
Order side.
Definition: types.hpp:1959
std::optional< std::string > order_id
Definition: types.hpp:1966
std::string symbol
Security code.
Definition: types.hpp:1955
OrderType order_type
Order type.
Definition: types.hpp:1957
Response for estimate maximum purchase quantity.
Definition: types.hpp:1973
Decimal cash_max_qty
Cash available quantity.
Definition: types.hpp:1975
Decimal margin_max_qty
Margin available quantity.
Definition: types.hpp:1977
Exexution.
Definition: types.hpp:1208
int64_t trade_done_at
Definition: types.hpp:1212
Decimal quantity
Definition: types.hpp:1213
Decimal price
Definition: types.hpp:1214
std::string symbol
Definition: types.hpp:1211
std::string order_id
Definition: types.hpp:1209
std::string trade_id
Definition: types.hpp:1210
Fund position channel.
Definition: types.hpp:1729
std::string account_channel
Account type.
Definition: types.hpp:1731
std::vector< FundPosition > positions
Fund positions.
Definition: types.hpp:1733
Fund position.
Definition: types.hpp:1710
Decimal cost_net_asset_value
Net cost.
Definition: types.hpp:1722
Decimal current_net_asset_value
Current equity.
Definition: types.hpp:1714
Decimal holding_units
Holding units.
Definition: types.hpp:1724
int64_t net_asset_value_day
Current equity time.
Definition: types.hpp:1716
std::string symbol
Fund ISIN code.
Definition: types.hpp:1712
std::string symbol_name
Fund name.
Definition: types.hpp:1718
std::string currency
Currency.
Definition: types.hpp:1720
Fund positions response.
Definition: types.hpp:1738
std::vector< FundPositionChannel > channels
Channels.
Definition: types.hpp:1740
Options for submit order request.
Definition: types.hpp:1679
std::optional< uintptr_t > page
Page number.
Definition: types.hpp:1689
std::optional< std::string > symbol
Security symbol.
Definition: types.hpp:1687
int64_t end_at
End time.
Definition: types.hpp:1683
int64_t start_at
Start time.
Definition: types.hpp:1681
std::optional< BalanceType > business_type
Business type.
Definition: types.hpp:1685
std::optional< uintptr_t > size
Page size.
Definition: types.hpp:1691
Options for get fund positions request.
Definition: types.hpp:1696
std::optional< std::vector< std::string > > symbols
Fund symbols.
Definition: types.hpp:1698
Options for get histroy executions request.
Definition: types.hpp:1219
std::optional< int64_t > end_at
End time.
Definition: types.hpp:1223
std::optional< int64_t > start_at
Start time.
Definition: types.hpp:1221
std::optional< std::string > symbol
Security code.
Definition: types.hpp:1225
Options for get history orders request.
Definition: types.hpp:1500
std::optional< int64_t > end_at
End time.
Definition: types.hpp:1512
std::optional< OrderSide > side
Order side.
Definition: types.hpp:1506
std::optional< Market > market
Market.
Definition: types.hpp:1508
std::optional< std::string > symbol
Security symbol.
Definition: types.hpp:1502
std::optional< std::vector< OrderStatus > > status
Order status.
Definition: types.hpp:1504
std::optional< int64_t > start_at
Start time.
Definition: types.hpp:1510
Options for get stock positions request.
Definition: types.hpp:1703
std::optional< std::vector< std::string > > symbols
Stock symbols.
Definition: types.hpp:1705
Options for get today executions request.
Definition: types.hpp:1230
std::optional< std::string > symbol
Security code.
Definition: types.hpp:1232
std::optional< std::string > order_id
Order id.
Definition: types.hpp:1234
Options for get today orders request.
Definition: types.hpp:1517
std::optional< OrderSide > side
Order side.
Definition: types.hpp:1523
std::optional< Market > market
Market.
Definition: types.hpp:1525
std::optional< std::string > order_id
Order id.
Definition: types.hpp:1527
std::optional< std::vector< OrderStatus > > status
Order status.
Definition: types.hpp:1521
std::optional< std::string > symbol
Security symbol.
Definition: types.hpp:1519
Margin ratio.
Definition: types.hpp:1783
Decimal mm_factor
Maintain the initial margin ratio.
Definition: types.hpp:1787
Decimal im_factor
Initial margin ratio.
Definition: types.hpp:1785
Decimal fm_factor
Forced close-out margin ratio.
Definition: types.hpp:1789
Order charge detail.
Definition: types.hpp:1863
std::string currency
Settlement currency.
Definition: types.hpp:1867
Decimal total_amount
Total charges amount.
Definition: types.hpp:1865
std::vector< OrderChargeItem > items
Order charge items.
Definition: types.hpp:1869
Order charge fee.
Definition: types.hpp:1839
std::string name
Charge name.
Definition: types.hpp:1843
std::string code
Charge code.
Definition: types.hpp:1841
Decimal amount
Charge amount.
Definition: types.hpp:1845
std::string currency
Charge currency.
Definition: types.hpp:1847
Order charge item.
Definition: types.hpp:1852
std::string name
Charge category name.
Definition: types.hpp:1856
ChargeCategoryCode code
Charge category code.
Definition: types.hpp:1854
std::vector< OrderChargeFee > fees
Charge details.
Definition: types.hpp:1858
Order detail.
Definition: types.hpp:1874
OrderSide side
Order side.
Definition: types.hpp:1892
std::optional< Decimal > deductions_amount
Deduction amount.
Definition: types.hpp:1936
std::optional< int64_t > trigger_at
Conditional order trigger time.
Definition: types.hpp:1912
std::optional< Date > expire_date
Long term order expire date.
Definition: types.hpp:1908
CommissionFreeStatus free_status
Commission-free Status.
Definition: types.hpp:1928
std::optional< std::string > deductions_currency
Deduction currency.
Definition: types.hpp:1938
DeductionStatus deductions_status
Deduction status.
Definition: types.hpp:1934
std::optional< Decimal > platform_deducted_amount
Platform deduction amount.
Definition: types.hpp:1942
std::optional< Decimal > trigger_price
LIT / MIT Order Trigger Price
Definition: types.hpp:1900
std::optional< TriggerStatus > trigger_status
Conditional order trigger status.
Definition: types.hpp:1920
DeductionStatus platform_deducted_status
Platform fee deduction status.
Definition: types.hpp:1940
std::optional< int64_t > updated_at
Last updated time.
Definition: types.hpp:1910
OrderStatus status
Order status.
Definition: types.hpp:1878
std::optional< std::string > platform_deducted_currency
Platform deduction currency.
Definition: types.hpp:1944
std::optional< Decimal > free_amount
Commission-free amount.
Definition: types.hpp:1930
OrderChargeDetail charge_detail
Order charges.
Definition: types.hpp:1948
Decimal quantity
Submitted quantity.
Definition: types.hpp:1882
std::optional< Decimal > last_done
Last done.
Definition: types.hpp:1898
std::vector< OrderHistoryDetail > history
Order history details.
Definition: types.hpp:1946
std::string msg
Rejected Message or remark.
Definition: types.hpp:1902
Decimal executed_quantity
Executed quantity.
Definition: types.hpp:1884
std::optional< Decimal > price
Submitted price.
Definition: types.hpp:1886
std::string order_id
Order ID.
Definition: types.hpp:1876
std::optional< Decimal > trailing_amount
TSMAMT / TSLPAMT order trailing amount
Definition: types.hpp:1914
OrderTag tag
Order tag.
Definition: types.hpp:1904
std::optional< OutsideRTH > outside_rth
Enable or disable outside regular trading hours.
Definition: types.hpp:1924
std::optional< Decimal > limit_offset
TSLPAMT / TSLPPCT order limit offset amount
Definition: types.hpp:1918
std::optional< Decimal > trailing_percent
TSMPCT / TSLPPCT order trailing percent
Definition: types.hpp:1916
std::string remark
Remark.
Definition: types.hpp:1926
std::string symbol
Security code.
Definition: types.hpp:1894
OrderType order_type
Order type.
Definition: types.hpp:1896
TimeInForceType time_in_force
Time in force type.
Definition: types.hpp:1906
std::string currency
Currency.
Definition: types.hpp:1922
int64_t submitted_at
Submitted time.
Definition: types.hpp:1890
std::optional< std::string > free_currency
Commission-free currency.
Definition: types.hpp:1932
std::string stock_name
Stock name.
Definition: types.hpp:1880
std::optional< Decimal > executed_price
Executed price.
Definition: types.hpp:1888
Order history detail.
Definition: types.hpp:1822
Decimal quantity
Definition: types.hpp:1828
OrderStatus status
Order status.
Definition: types.hpp:1830
std::string msg
Execution or error message.
Definition: types.hpp:1832
Decimal price
Definition: types.hpp:1825
int64_t time
Occurrence time.
Definition: types.hpp:1834
Order.
Definition: types.hpp:1388
std::optional< Decimal > last_done
Last done.
Definition: types.hpp:1412
std::optional< Decimal > trailing_percent
TSMPCT / TSLPPCT order trailing percent
Definition: types.hpp:1430
std::optional< Date > expire_date
Long term order expire date.
Definition: types.hpp:1422
std::optional< OutsideRTH > outside_rth
Enable or disable outside regular trading hours.
Definition: types.hpp:1438
std::optional< Decimal > trigger_price
LIT / MIT Order Trigger Price
Definition: types.hpp:1414
TimeInForceType time_in_force
Time in force type.
Definition: types.hpp:1420
OrderSide side
Order side.
Definition: types.hpp:1406
std::optional< int64_t > updated_at
Last updated time.
Definition: types.hpp:1424
std::string remark
Remark.
Definition: types.hpp:1440
std::optional< int64_t > trigger_at
Conditional order trigger time.
Definition: types.hpp:1426
OrderTag tag
Order tag.
Definition: types.hpp:1418
std::string currency
Currency.
Definition: types.hpp:1436
std::optional< Decimal > trailing_amount
TSMAMT / TSLPAMT order trailing amount
Definition: types.hpp:1428
std::optional< TriggerStatus > trigger_status
Conditional order trigger status.
Definition: types.hpp:1434
std::string order_id
Order ID.
Definition: types.hpp:1390
OrderType order_type
Order type.
Definition: types.hpp:1410
std::string symbol
Security code.
Definition: types.hpp:1408
std::optional< Decimal > executed_price
Executed price.
Definition: types.hpp:1402
int64_t submitted_at
Submitted time.
Definition: types.hpp:1404
OrderStatus status
Order status.
Definition: types.hpp:1392
std::optional< Decimal > price
Submitted price.
Definition: types.hpp:1400
std::optional< Decimal > limit_offset
TSLPAMT / TSLPPCT order limit offset amount
Definition: types.hpp:1432
Decimal quantity
Submitted quantity.
Definition: types.hpp:1396
std::string stock_name
Stock name.
Definition: types.hpp:1394
std::string msg
Rejected Message or remark.
Definition: types.hpp:1416
Decimal executed_quantity
Executed quantity.
Definition: types.hpp:1398
Order changed message.
Definition: types.hpp:1445
std::string currency
Currency.
Definition: types.hpp:1465
std::optional< Decimal > executed_price
Executed price.
Definition: types.hpp:1461
std::string order_id
Order ID.
Definition: types.hpp:1463
Decimal executed_quantity
Executed quantity.
Definition: types.hpp:1459
int64_t submitted_at
Submitted time.
Definition: types.hpp:1469
std::optional< Decimal > trigger_price
Order trigger price.
Definition: types.hpp:1473
std::optional< Decimal > last_share
Last share.
Definition: types.hpp:1491
std::optional< Decimal > trailing_percent
Trailing percent.
Definition: types.hpp:1485
std::optional< Decimal > trailing_amount
Trailing amount.
Definition: types.hpp:1483
std::optional< Decimal > limit_offset
Limit offset amount.
Definition: types.hpp:1487
Decimal submitted_quantity
Submitted quantity.
Definition: types.hpp:1451
std::string account_no
Account no.
Definition: types.hpp:1489
OrderType order_type
Order type.
Definition: types.hpp:1455
OrderTag tag
Order tag.
Definition: types.hpp:1477
std::string stock_name
Stock name.
Definition: types.hpp:1449
std::string remark
Remark message.
Definition: types.hpp:1495
std::optional< int64_t > trigger_at
Conditional order trigger time.
Definition: types.hpp:1481
OrderStatus status
Order status.
Definition: types.hpp:1467
std::optional< TriggerStatus > trigger_status
Conditional order trigger status.
Definition: types.hpp:1479
OrderSide side
Order side.
Definition: types.hpp:1447
std::string msg
Rejected message or remark.
Definition: types.hpp:1475
std::string symbol
Order symbol.
Definition: types.hpp:1453
int64_t updated_at
Last updated time.
Definition: types.hpp:1471
Decimal submitted_price
Submitted price.
Definition: types.hpp:1457
std::optional< Decimal > last_price
Last price.
Definition: types.hpp:1493
Options for replace order request.
Definition: types.hpp:1532
std::string order_id
Order ID.
Definition: types.hpp:1534
std::optional< Decimal > trailing_percent
Trailing percent.
Definition: types.hpp:1546
Decimal quantity
Quantity.
Definition: types.hpp:1536
std::optional< std::string > remark
Remark.
Definition: types.hpp:1548
std::optional< Decimal > price
Price.
Definition: types.hpp:1538
std::optional< Decimal > trigger_price
Trigger price.
Definition: types.hpp:1540
std::optional< Decimal > trailing_amount
Trailing amount.
Definition: types.hpp:1544
std::optional< Decimal > limit_offset
Limit offset.
Definition: types.hpp:1542
Stock position channel.
Definition: types.hpp:1767
std::string account_channel
Account type.
Definition: types.hpp:1769
std::vector< StockPosition > positions
Stock positions.
Definition: types.hpp:1771
Stock position.
Definition: types.hpp:1745
Decimal cost_price
Definition: types.hpp:1758
Decimal quantity
The number of holdings.
Definition: types.hpp:1751
Market market
Market.
Definition: types.hpp:1760
std::optional< Decimal > init_quantity
Initial position before market opening.
Definition: types.hpp:1762
std::string symbol_name
Stock name.
Definition: types.hpp:1749
Decimal available_quantity
Available quantity.
Definition: types.hpp:1753
std::string currency
Currency.
Definition: types.hpp:1755
std::string symbol
Stock code.
Definition: types.hpp:1747
Stock positions response.
Definition: types.hpp:1776
std::vector< StockPositionChannel > channels
Channels.
Definition: types.hpp:1778
Options for submit order request.
Definition: types.hpp:1553
std::optional< Decimal > submitted_price
Submitted price.
Definition: types.hpp:1565
std::optional< Decimal > trigger_price
Trigger price (LIT / MIT Required)
Definition: types.hpp:1567
std::optional< std::string > remark
Remark (Maximum 64 characters)
Definition: types.hpp:1580
std::optional< Date > expire_date
Definition: types.hpp:1576
std::optional< Decimal > trailing_percent
Trailing percent (TSLPPCT / TSMAPCT Required)
Definition: types.hpp:1573
Decimal submitted_quantity
Submitted price.
Definition: types.hpp:1561
std::string symbol
Security symbol.
Definition: types.hpp:1555
OrderSide side
Order side.
Definition: types.hpp:1559
std::optional< Decimal > trailing_amount
Trailing amount (TSLPAMT / TSMAMT Required)
Definition: types.hpp:1571
std::optional< Decimal > limit_offset
Limit offset amount (TSLPAMT / TSLPPCT Required)
Definition: types.hpp:1569
std::optional< OutsideRTH > outside_rth
Enable or disable outside regular trading hours.
Definition: types.hpp:1578
OrderType order_type
Order type.
Definition: types.hpp:1557
TimeInForceType time_in_force
Time in force type.
Definition: types.hpp:1563
Response for submit order request.
Definition: types.hpp:1585
std::string order_id
Order id.
Definition: types.hpp:1587