LongPort OpenAPI C SDK
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
longport.h
Go to the documentation of this file.
1 #ifndef _LONGPORT_H_
2 #define _LONGPORT_H_
3 
4 #include <stdarg.h>
5 #include <stdbool.h>
6 #include <stdint.h>
7 #include <stdlib.h>
8 
12 #define LB_SUBFLAGS_QUOTE 1
13 
17 #define LB_SUBFLAGS_DEPTH 2
18 
22 #define LB_SUBFLAGS_BROKER 4
23 
27 #define LB_SUBFLAGS_TRADE 8
28 
32 #define LB_DERIVATIVE_TYPE_OPTION 1
33 
37 #define LB_DERIVATIVE_TYPE_WARRANT 2
38 
42 #define LB_WATCHLIST_GROUP_NAME 1
43 
47 #define LB_WATCHLIST_GROUP_SECURITIES 2
48 
52 typedef enum lb_adjust_type_t {
62 
66 typedef enum lb_balance_type_t {
84 
88 typedef enum lb_calc_index_t {
250 
268 
286 
312 
316 typedef enum lb_deduction_status_t {
338 
360 
374 
378 typedef enum lb_language_t {
392 
396 typedef enum lb_market_t {
418 
422 typedef enum lb_option_direction_t {
436 
440 typedef enum lb_option_type_t {
454 
458 typedef enum lb_order_side_t {
472 
476 typedef enum lb_order_status_t {
550 
554 typedef enum lb_order_tag_t {
596 
600 typedef enum lb_order_type_t {
658 
662 typedef enum lb_outside_rth_t {
680 
684 typedef enum lb_period_t {
762 
776 
794 
798 typedef enum lb_security_board_t {
900 
910 
914 typedef enum lb_sort_order_type_t {
924 
946 
950 typedef enum lb_topic_type_t {
956 
960 typedef enum lb_trade_direction_t {
974 
978 typedef enum lb_trade_session_t {
996 
1000 typedef enum lb_trade_status_t {
1046 
1050 typedef enum lb_trigger_status_t {
1068 
1072 typedef enum lb_warrant_sort_by_t {
1162 
1166 typedef enum lb_warrant_status_t {
1180 
1184 typedef enum lb_warrant_type_t {
1210 
1214 typedef struct lb_config_t lb_config_t;
1215 
1216 typedef struct lb_decimal_t lb_decimal_t;
1217 
1218 typedef struct lb_error_t lb_error_t;
1219 
1223 typedef struct lb_http_client_t lb_http_client_t;
1224 
1225 typedef struct lb_http_result_t lb_http_result_t;
1226 
1230 typedef struct lb_quote_context_t lb_quote_context_t;
1231 
1235 typedef struct lb_trade_context_t lb_trade_context_t;
1236 
1237 typedef struct lb_async_result_t {
1238  const void *ctx;
1239  const struct lb_error_t *error;
1240  void *data;
1241  uintptr_t length;
1242  void *userdata;
1244 
1245 typedef void (*lb_async_callback_t)(const struct lb_async_result_t*);
1246 
1250 typedef struct lb_http_header_t {
1251  const char *name;
1252  const char *value;
1254 
1255 typedef void (*lb_free_userdata_func_t)(void*);
1256 
1260 typedef struct lb_push_quote_t {
1264  const char *symbol;
1268  const struct lb_decimal_t *last_done;
1272  const struct lb_decimal_t *open;
1276  const struct lb_decimal_t *high;
1280  const struct lb_decimal_t *low;
1284  int64_t timestamp;
1288  int64_t volume;
1292  const struct lb_decimal_t *turnover;
1310 
1311 typedef void (*lb_quote_callback_t)(const struct lb_quote_context_t*,
1312  const struct lb_push_quote_t*,
1313  void*);
1314 
1318 typedef struct lb_depth_t {
1322  int32_t position;
1326  const struct lb_decimal_t *price;
1330  int64_t volume;
1334  int64_t order_num;
1336 
1340 typedef struct lb_push_depth_t {
1344  const char *symbol;
1348  const struct lb_depth_t *asks;
1352  uintptr_t num_asks;
1356  const struct lb_depth_t *bids;
1360  uintptr_t num_bids;
1362 
1363 typedef void (*lb_depth_callback_t)(const struct lb_quote_context_t*,
1364  const struct lb_push_depth_t*,
1365  void*);
1366 
1370 typedef struct lb_brokers_t {
1374  int32_t position;
1378  const int32_t *broker_ids;
1382  uintptr_t num_broker_ids;
1384 
1388 typedef struct lb_push_brokers_t {
1392  const char *symbol;
1396  const struct lb_brokers_t *ask_brokers;
1400  uintptr_t num_ask_brokers;
1404  const struct lb_brokers_t *bid_brokers;
1408  uintptr_t num_bid_brokers;
1410 
1411 typedef void (*lb_brokers_callback_t)(const struct lb_quote_context_t*,
1412  const struct lb_push_brokers_t*,
1413  void*);
1414 
1418 typedef struct lb_trade_t {
1422  const struct lb_decimal_t *price;
1426  int64_t volume;
1430  int64_t timestamp;
1465  const char *trade_type;
1475 
1479 typedef struct lb_push_trades_t {
1483  const char *symbol;
1487  const struct lb_trade_t *trades;
1491  uintptr_t num_trades;
1493 
1494 typedef void (*lb_trades_callback_t)(const struct lb_quote_context_t*,
1495  const struct lb_push_trades_t*,
1496  void*);
1497 
1501 typedef struct lb_candlestick_t {
1505  const struct lb_decimal_t *close;
1509  const struct lb_decimal_t *open;
1513  const struct lb_decimal_t *low;
1517  const struct lb_decimal_t *high;
1521  int64_t volume;
1525  const struct lb_decimal_t *turnover;
1529  int64_t timestamp;
1531 
1535 typedef struct lb_push_candlestick_t {
1539  const char *symbol;
1543  enum lb_period_t period;
1553 
1554 typedef void (*lb_candlestick_callback_t)(const struct lb_quote_context_t*,
1555  const struct lb_push_candlestick_t*,
1556  void*);
1557 
1558 typedef struct lb_date_t {
1559  int32_t year;
1560  uint8_t month;
1561  uint8_t day;
1563 
1564 typedef struct lb_time_t {
1565  uint8_t hour;
1566  uint8_t minute;
1567  uint8_t second;
1569 
1570 typedef struct lb_datetime_t {
1571  struct lb_date_t date;
1572  struct lb_time_t time;
1574 
1582  const char *name;
1586  const char *const *securities;
1590  uintptr_t num_securities;
1592 
1600  uint32_t flags;
1604  int64_t id;
1608  const char *name;
1612  const char *const *securities;
1616  uintptr_t num_securities;
1622 
1626 typedef struct lb_push_order_changed_t {
1630  enum lb_order_side_t side;
1634  const char *stock_name;
1642  const char *symbol;
1662  const char *order_id;
1666  const char *currency;
1674  int64_t submitted_at;
1678  int64_t updated_at;
1686  const char *msg;
1690  enum lb_order_tag_t tag;
1698  const int64_t *trigger_at;
1714  const char *account_no;
1718  const struct lb_decimal_t *last_share;
1722  const struct lb_decimal_t *last_price;
1726  const char *remark;
1728 
1729 typedef void (*lb_order_changed_callback_t)(const struct lb_trade_context_t*,
1730  const struct lb_push_order_changed_t*,
1731  void*);
1732 
1740  const int64_t *start_at;
1744  const int64_t *end_at;
1748  const char *symbol;
1750 
1758  const char *symbol;
1762  const char *order_id;
1764 
1772  const char *symbol;
1780  uintptr_t num_status;
1784  const enum lb_order_side_t *side;
1788  const enum lb_market_t *market;
1792  const int64_t *start_at;
1796  const int64_t *end_at;
1798 
1806  const char *symbol;
1814  uintptr_t num_status;
1818  const enum lb_order_side_t *side;
1822  const enum lb_market_t *market;
1826  const char *order_id;
1828 
1836  const char *order_id;
1840  int64_t quantity;
1844  const struct lb_decimal_t *price;
1864  const char *remark;
1866 
1874  const char *symbol;
1882  enum lb_order_side_t side;
1915  const struct lb_date_t *expire_date;
1923  const char *remark;
1925 
1933  int64_t start_at;
1937  int64_t end_at;
1945  const char *symbol;
1949  const uintptr_t *page;
1953  const uintptr_t *size;
1955 
1963  const char *const *symbols;
1967  uintptr_t num_symbols;
1969 
1977  const char *const *symbols;
1981  uintptr_t num_symbols;
1983 
1988  const char *symbol;
1990  const struct lb_decimal_t *price;
1991  enum lb_order_side_t side;
1992  const char *currency;
1993  const char *order_id;
1995 
1996 typedef struct lb_subscription_t {
1997  const char *symbol;
1998  uint8_t sub_types;
2000  uintptr_t num_candlesticks;
2002 
2006 typedef struct lb_security_t {
2010  const char *symbol;
2014  const char *name_cn;
2018  const char *name_en;
2022  const char *name_hk;
2024 
2032  const char *symbol;
2036  const char *name_cn;
2040  const char *name_en;
2044  const char *name_hk;
2048  const char *exchange;
2052  const char *currency;
2056  int32_t lot_size;
2060  int64_t total_shares;
2068  int64_t hk_shares;
2072  const struct lb_decimal_t *eps;
2076  const struct lb_decimal_t *eps_ttm;
2080  const struct lb_decimal_t *bps;
2094 
2098 typedef struct lb_prepost_quote_t {
2102  const struct lb_decimal_t *last_done;
2106  int64_t timestamp;
2110  int64_t volume;
2114  const struct lb_decimal_t *turnover;
2118  const struct lb_decimal_t *high;
2122  const struct lb_decimal_t *low;
2126  const struct lb_decimal_t *prev_close;
2128 
2132 typedef struct lb_security_quote_t {
2136  const char *symbol;
2140  const struct lb_decimal_t *last_done;
2144  const struct lb_decimal_t *prev_close;
2148  const struct lb_decimal_t *open;
2152  const struct lb_decimal_t *high;
2156  const struct lb_decimal_t *low;
2160  int64_t timestamp;
2164  int64_t volume;
2168  const struct lb_decimal_t *turnover;
2186 
2190 typedef struct lb_option_quote_t {
2194  const char *symbol;
2198  const struct lb_decimal_t *last_done;
2202  const struct lb_decimal_t *prev_close;
2206  const struct lb_decimal_t *open;
2210  const struct lb_decimal_t *high;
2214  const struct lb_decimal_t *low;
2218  int64_t timestamp;
2222  int64_t volume;
2226  const struct lb_decimal_t *turnover;
2238  int64_t open_interest;
2242  struct lb_date_t expiry_date;
2270  const char *underlying_symbol;
2272 
2276 typedef struct lb_warrant_quote_t {
2280  const char *symbol;
2284  const struct lb_decimal_t *last_done;
2288  const struct lb_decimal_t *prev_close;
2292  const struct lb_decimal_t *open;
2296  const struct lb_decimal_t *high;
2300  const struct lb_decimal_t *low;
2304  int64_t timestamp;
2308  int64_t volume;
2312  const struct lb_decimal_t *turnover;
2324  struct lb_date_t expiry_date;
2328  struct lb_date_t last_trade_date;
2360  const struct lb_decimal_t *call_price;
2364  const char *underlying_symbol;
2366 
2370 typedef struct lb_security_depth_t {
2374  const struct lb_depth_t *asks;
2378  uintptr_t num_asks;
2382  const struct lb_depth_t *bids;
2386  uintptr_t num_bids;
2388 
2392 typedef struct lb_security_brokers_t {
2396  const struct lb_brokers_t *ask_brokers;
2400  uintptr_t num_ask_brokers;
2404  const struct lb_brokers_t *bid_brokers;
2408  uintptr_t num_bid_brokers;
2410 
2414 typedef struct lb_participant_info_t {
2418  const int32_t *broker_ids;
2422  uintptr_t num_broker_ids;
2426  const char *name_cn;
2430  const char *name_en;
2434  const char *name_hk;
2436 
2440 typedef struct lb_intraday_line_t {
2444  const struct lb_decimal_t *price;
2448  int64_t timestamp;
2452  int64_t volume;
2456  const struct lb_decimal_t *turnover;
2460  const struct lb_decimal_t *avg_price;
2462 
2466 typedef struct lb_strike_price_info_t {
2470  const struct lb_decimal_t *price;
2474  const char *call_symbol;
2478  const char *put_symbol;
2482  bool standard;
2484 
2488 typedef struct lb_issuer_info_t {
2492  int32_t issuer_id;
2496  const char *name_cn;
2500  const char *name_en;
2504  const char *name_hk;
2506 
2514  struct lb_time_t begin_time;
2518  struct lb_time_t end_time;
2524 
2532  enum lb_market_t market;
2542 
2550  const struct lb_date_t *trading_days;
2554  uintptr_t num_trading_days;
2564 
2568 typedef struct lb_capital_flow_line_t {
2572  const struct lb_decimal_t *inflow;
2576  int64_t timestamp;
2578 
2586  const struct lb_decimal_t *large;
2590  const struct lb_decimal_t *medium;
2594  const struct lb_decimal_t *small;
2596 
2604  int64_t timestamp;
2614 
2618 typedef struct lb_realtime_quote_t {
2622  const char *symbol;
2626  const struct lb_decimal_t *last_done;
2630  const struct lb_decimal_t *open;
2634  const struct lb_decimal_t *high;
2638  const struct lb_decimal_t *low;
2642  int64_t timestamp;
2646  int64_t volume;
2650  const struct lb_decimal_t *turnover;
2656 
2660 typedef struct lb_execution_t {
2664  const char *order_id;
2668  const char *trade_id;
2672  const char *symbol;
2676  int64_t trade_done_at;
2680  int64_t quantity;
2684  const struct lb_decimal_t *price;
2686 
2690 typedef struct lb_order_t {
2694  const char *order_id;
2702  const char *stock_name;
2706  int64_t quantity;
2714  const struct lb_decimal_t *price;
2722  int64_t submitted_at;
2726  enum lb_order_side_t side;
2730  const char *symbol;
2738  const struct lb_decimal_t *last_done;
2746  const char *msg;
2750  enum lb_order_tag_t tag;
2758  const struct lb_date_t *expire_date;
2762  const int64_t *updated_at;
2766  const int64_t *trigger_at;
2786  const char *currency;
2794  const char *remark;
2796 
2800 typedef struct lb_cash_info_t {
2812  const struct lb_decimal_t *frozen_cash;
2820  const char *currency;
2822 
2826 typedef struct lb_account_balance_t {
2830  const struct lb_decimal_t *total_cash;
2842  int32_t risk_level;
2846  const struct lb_decimal_t *margin_call;
2850  const char *currency;
2858  uintptr_t num_cash_infos;
2862  const struct lb_decimal_t *net_assets;
2866  const struct lb_decimal_t *init_margin;
2874  const struct lb_decimal_t *buy_power;
2876 
2880 typedef struct lb_cash_flow_t {
2896  const struct lb_decimal_t *balance;
2900  const char *currency;
2904  int64_t business_time;
2908  const char *symbol;
2912  const char *description;
2914 
2918 typedef struct lb_fund_position_t {
2922  const char *symbol;
2934  const char *symbol_name;
2938  const char *currency;
2948 
2956  const char *account_channel;
2964  uintptr_t num_positions;
2966 
2978  uintptr_t num_channels;
2980 
2984 typedef struct lb_stock_position_t {
2988  const char *symbol;
2992  const char *symbol_name;
2996  int64_t quantity;
3004  const char *currency;
3009  const struct lb_decimal_t *cost_price;
3013  enum lb_market_t market;
3017  const int64_t *init_quantity;
3019 
3027  const char *account_channel;
3035  uintptr_t num_positions;
3037 
3049  uintptr_t num_channels;
3051 
3059  const char *order_id;
3061 
3065 typedef struct lb_watchlist_security_t {
3069  const char *symbol;
3073  enum lb_market_t market;
3077  const char *name;
3085  int64_t watched_at;
3087 
3091 typedef struct lb_watchlist_group_t {
3095  int64_t id;
3099  const char *name;
3107  uintptr_t num_securities;
3109 
3113 typedef struct lb_margin_ratio_t {
3117  const struct lb_decimal_t *im_factor;
3121  const struct lb_decimal_t *mm_factor;
3125  const struct lb_decimal_t *fm_factor;
3127 
3132  const struct lb_decimal_t *price;
3133  int64_t quantity;
3135  const char *msg;
3136  int64_t time;
3138 
3142 typedef struct lb_order_charge_fee_t {
3146  const char *code;
3150  const char *name;
3154  const struct lb_decimal_t *amount;
3158  const char *currency;
3160 
3164 typedef struct lb_order_charge_item_t {
3172  const char *name;
3180  uintptr_t num_fees;
3182 
3194  const char *currency;
3202  uintptr_t num_items;
3204 
3208 typedef struct lb_order_detail_t {
3212  const char *order_id;
3220  const char *stock_name;
3224  int64_t quantity;
3232  const struct lb_decimal_t *price;
3240  int64_t submitted_at;
3244  enum lb_order_side_t side;
3248  const char *symbol;
3256  const struct lb_decimal_t *last_done;
3264  const char *msg;
3268  enum lb_order_tag_t tag;
3276  const struct lb_date_t *expire_date;
3280  const int64_t *updated_at;
3284  const int64_t *trigger_at;
3304  const char *currency;
3312  const char *remark;
3320  const struct lb_decimal_t *free_amount;
3324  const char *free_currency;
3336  const char *deductions_currency;
3356  uintptr_t num_history;
3362 
3370  int64_t cash_max_qty;
3376 
3384  const char *symbol;
3388  const struct lb_decimal_t *last_done;
3396  const struct lb_decimal_t *change_rate;
3400  const int64_t *volume;
3404  const struct lb_decimal_t *turnover;
3424  const struct lb_decimal_t *amplitude;
3436  const struct lb_decimal_t *pb_ratio;
3460  const struct lb_date_t *expiry_date;
3476  const int64_t *outstanding_qty;
3484  const struct lb_decimal_t *premium;
3488  const struct lb_decimal_t *itm_otm;
3500  const struct lb_decimal_t *call_price;
3524  const int64_t *open_interest;
3528  const struct lb_decimal_t *delta;
3532  const struct lb_decimal_t *gamma;
3536  const struct lb_decimal_t *theta;
3540  const struct lb_decimal_t *vega;
3544  const struct lb_decimal_t *rho;
3546 
3550 typedef struct lb_warrant_info_t {
3554  const char *symbol;
3562  const char *name;
3566  const struct lb_decimal_t *last_done;
3570  const struct lb_decimal_t *change_rate;
3578  int64_t volume;
3582  const struct lb_decimal_t *turnover;
3586  struct lb_date_t expiry_date;
3610  const struct lb_decimal_t *premium;
3614  const struct lb_decimal_t *itm_otm;
3622  const struct lb_decimal_t *delta;
3626  const struct lb_decimal_t *call_price;
3652 
3660  const char *key;
3664  const char *name;
3668  const char *description;
3672  int64_t start_at;
3676  int64_t end_at;
3678 
3679 #ifdef __cplusplus
3680 extern "C" {
3681 #endif // __cplusplus
3682 
3705 
3706 struct lb_config_t *lb_config_new(const char *app_key,
3707  const char *app_secret,
3708  const char *access_token,
3709  const char *http_url,
3710  const char *quote_ws_url,
3711  const char *trade_ws_url,
3712  const enum lb_language_t *language,
3713  bool enable_overight,
3714  const enum lb_push_candlestick_mode_t *push_candlestick_mode);
3715 
3719 void lb_config_free(struct lb_config_t *config);
3720 
3725  int64_t expired_at,
3726  lb_async_callback_t callback,
3727  void *userdata);
3728 
3732 void lb_error_free(struct lb_error_t *error);
3733 
3734 const char *lb_error_message(const struct lb_error_t *error);
3735 
3736 int64_t lb_error_code(const struct lb_error_t *error);
3737 
3741 struct lb_http_client_t *lb_http_client_new(const char *http_url,
3742  const char *app_key,
3743  const char *app_secret,
3744  const char *access_token);
3745 
3749 void lb_http_client_free(struct lb_http_client_t *http_client);
3750 
3765 
3769 void lb_http_client_request(struct lb_http_client_t *http_client,
3770  const char *method,
3771  const char *path,
3772  const struct lb_http_header_t *headers,
3773  const char *request_body,
3774  lb_async_callback_t callback,
3775  void *userdata);
3776 
3780 void lb_http_result_free(struct lb_http_result_t *http_result);
3781 
3782 const char *lb_http_result_response_body(const struct lb_http_result_t *http_result);
3783 
3784 void lb_quote_context_new(const struct lb_config_t *config,
3785  lb_async_callback_t callback,
3786  void *userdata);
3787 
3789 
3791 
3792 uintptr_t lb_quote_context_ref_count(const struct lb_quote_context_t *ctx);
3793 
3794 void lb_quote_context_set_userdata(const struct lb_quote_context_t *ctx, void *userdata);
3795 
3797 
3800 
3802 
3803 const char *lb_quote_context_quote_level(const struct lb_quote_context_t *ctx);
3804 
3806  lb_async_callback_t callback,
3807  void *userdata);
3808 
3814  lb_quote_callback_t callback,
3815  void *userdata,
3816  lb_free_userdata_func_t free_userdata);
3817 
3823  lb_depth_callback_t callback,
3824  void *userdata,
3825  lb_free_userdata_func_t free_userdata);
3826 
3832  lb_brokers_callback_t callback,
3833  void *userdata,
3834  lb_free_userdata_func_t free_userdata);
3835 
3841  lb_trades_callback_t callback,
3842  void *userdata,
3843  lb_free_userdata_func_t free_userdata);
3844 
3850  lb_candlestick_callback_t callback,
3851  void *userdata,
3852  lb_free_userdata_func_t free_userdata);
3853 
3855  const char *const *symbols,
3856  uintptr_t num_symbols,
3857  uint8_t sub_types,
3858  bool is_first_push,
3859  lb_async_callback_t callback,
3860  void *userdata);
3861 
3866  const char *const *symbols,
3867  uintptr_t num_symbols,
3868  uint8_t sub_types,
3869  lb_async_callback_t callback,
3870  void *userdata);
3871 
3876  const char *symbol,
3877  enum lb_period_t period,
3878  lb_async_callback_t callback,
3879  void *userdata);
3880 
3885  const char *symbol,
3886  enum lb_period_t period,
3887  lb_async_callback_t callback,
3888  void *userdata);
3889 
3894  lb_async_callback_t callback,
3895  void *userdata);
3896 
3901  const char *const *symbols,
3902  uintptr_t num_symbols,
3903  lb_async_callback_t callback,
3904  void *userdata);
3905 
3910  const char *const *symbols,
3911  uintptr_t num_symbols,
3912  lb_async_callback_t callback,
3913  void *userdata);
3914 
3919  const char *const *symbols,
3920  uintptr_t num_symbols,
3921  lb_async_callback_t callback,
3922  void *userdata);
3923 
3928  const char *const *symbols,
3929  uintptr_t num_symbols,
3930  lb_async_callback_t callback,
3931  void *userdata);
3932 
3937  const char *symbol,
3938  lb_async_callback_t callback,
3939  void *userdata);
3940 
3945  const char *symbol,
3946  lb_async_callback_t callback,
3947  void *userdata);
3948 
3953  lb_async_callback_t callback,
3954  void *userdata);
3955 
3960  const char *symbol,
3961  uintptr_t count,
3962  lb_async_callback_t callback,
3963  void *userdata);
3964 
3969  const char *symbol,
3970  lb_async_callback_t callback,
3971  void *userdata);
3972 
3977  const char *symbol,
3978  enum lb_period_t period,
3979  uintptr_t count,
3980  enum lb_adjust_type_t adjust_type,
3981  lb_async_callback_t callback,
3982  void *userdata);
3983 
3988  const char *symbol,
3989  enum lb_period_t period,
3990  enum lb_adjust_type_t adjust_type,
3991  bool forward,
3992  struct lb_datetime_t time,
3993  uintptr_t count,
3994  lb_async_callback_t callback,
3995  void *userdata);
3996 
4001  const char *symbol,
4002  enum lb_period_t period,
4003  enum lb_adjust_type_t adjust_type,
4004  const struct lb_date_t *start,
4005  const struct lb_date_t *end,
4006  lb_async_callback_t callback,
4007  void *userdata);
4008 
4013  const char *symbol,
4014  lb_async_callback_t callback,
4015  void *userdata);
4016 
4021  const char *symbol,
4022  const struct lb_date_t *expiry_date,
4023  lb_async_callback_t callback,
4024  void *userdata);
4025 
4030  lb_async_callback_t callback,
4031  void *userdata);
4032 
4037  const char *symbol,
4038  enum lb_warrant_sort_by_t sort_by,
4039  enum lb_sort_order_type_t sort_order,
4040  const enum lb_warrant_type_t *warrant_type,
4041  uintptr_t num_warrant_type,
4042  const int32_t *issuer,
4043  uintptr_t num_issuer,
4044  const enum lb_filter_warrant_expiry_date_t *expiry_date,
4045  uintptr_t num_expiry_date,
4046  const enum lb_filter_warrant_in_out_bounds_type_t *price_type,
4047  uintptr_t num_price_type,
4048  const enum lb_warrant_status_t *status,
4049  uintptr_t num_status,
4050  lb_async_callback_t callback,
4051  void *userdata);
4052 
4057  lb_async_callback_t callback,
4058  void *userdata);
4059 
4064  enum lb_market_t market,
4065  const struct lb_date_t *begin,
4066  const struct lb_date_t *end,
4067  lb_async_callback_t callback,
4068  void *userdata);
4069 
4074  const char *symbol,
4075  lb_async_callback_t callback,
4076  void *userdata);
4077 
4082  const char *symbol,
4083  lb_async_callback_t callback,
4084  void *userdata);
4085 
4090  const char *const *symbols,
4091  uintptr_t num_symbols,
4092  const enum lb_calc_index_t *indexes,
4093  uintptr_t num_indexes,
4094  lb_async_callback_t callback,
4095  void *userdata);
4096 
4101  lb_async_callback_t callback,
4102  void *userdata);
4103 
4108  const struct lb_create_watchlist_group_t *req,
4109  lb_async_callback_t callback,
4110  void *userdata);
4111 
4116  int64_t id,
4117  bool purge,
4118  lb_async_callback_t callback,
4119  void *userdata);
4120 
4125  const struct lb_update_watchlist_group_t *req,
4126  lb_async_callback_t callback,
4127  void *userdata);
4128 
4136  const char *const *symbols,
4137  uintptr_t num_symbols,
4138  lb_async_callback_t callback,
4139  void *userdata);
4140 
4148  const char *symbol,
4149  lb_async_callback_t callback,
4150  void *userdata);
4151 
4159  const char *symbol,
4160  uintptr_t count,
4161  lb_async_callback_t callback,
4162  void *userdata);
4163 
4171  const char *symbol,
4172  lb_async_callback_t callback,
4173  void *userdata);
4174 
4182  const char *symbol,
4183  enum lb_period_t period,
4184  uintptr_t count,
4185  lb_async_callback_t callback,
4186  void *userdata);
4187 
4193  enum lb_market_t market,
4194  enum lb_security_list_category_t category,
4195  lb_async_callback_t callback,
4196  void *userdata);
4197 
4198 void lb_trade_context_new(const struct lb_config_t *config,
4199  lb_async_callback_t callback,
4200  void *userdata);
4201 
4203 
4205 
4206 uintptr_t lb_trade_context_ref_count(const struct lb_trade_context_t *ctx);
4207 
4208 void lb_trade_context_set_userdata(const struct lb_trade_context_t *ctx, void *userdata);
4209 
4211 
4214 
4220  lb_order_changed_callback_t callback,
4221  void *userdata,
4222  lb_free_userdata_func_t free_userdata);
4223 
4225  const enum lb_topic_type_t *topics,
4226  uintptr_t num_topics,
4227  lb_async_callback_t callback,
4228  void *userdata);
4229 
4231  const enum lb_topic_type_t *topics,
4232  uintptr_t num_topics,
4233  lb_async_callback_t callback,
4234  void *userdata);
4235 
4242  const struct lb_get_history_executions_options_t *opts,
4243  lb_async_callback_t callback,
4244  void *userdata);
4245 
4252  const struct lb_get_today_executions_options_t *opts,
4253  lb_async_callback_t callback,
4254  void *userdata);
4255 
4262  const struct lb_get_history_orders_options_t *opts,
4263  lb_async_callback_t callback,
4264  void *userdata);
4265 
4272  const struct lb_get_today_orders_options_t *opts,
4273  lb_async_callback_t callback,
4274  void *userdata);
4275 
4282  const struct lb_replace_order_options_t *opts,
4283  lb_async_callback_t callback,
4284  void *userdata);
4285 
4292  const struct lb_submit_order_options_t *opts,
4293  lb_async_callback_t callback,
4294  void *userdata);
4295 
4300  const char *order_id,
4301  lb_async_callback_t callback,
4302  void *userdata);
4303 
4308  const char *currency,
4309  lb_async_callback_t callback,
4310  void *userdata);
4311 
4318  const struct lb_get_cash_flow_options_t *opts,
4319  lb_async_callback_t callback,
4320  void *userdata);
4321 
4328  const struct lb_get_fund_positions_options_t *opts,
4329  lb_async_callback_t callback,
4330  void *userdata);
4331 
4338  const struct lb_get_stock_positions_options_t *opts,
4339  lb_async_callback_t callback,
4340  void *userdata);
4341 
4346  const char *symbol,
4347  lb_async_callback_t callback,
4348  void *userdata);
4349 
4354  const char *order_id,
4355  lb_async_callback_t callback,
4356  void *userdata);
4357 
4363  lb_async_callback_t callback,
4364  void *userdata);
4365 
4370 struct lb_decimal_t *lb_decimal_new(int64_t num, uint32_t scale);
4371 
4375 struct lb_decimal_t *lb_decimal_clone(const struct lb_decimal_t *value);
4376 
4380 struct lb_decimal_t *lb_decimal_from_str(const char *value);
4381 
4385 struct lb_decimal_t *lb_decimal_from_double(double value);
4386 
4390 void lb_decimal_free(struct lb_decimal_t *value);
4391 
4392 double lb_decimal_to_double(const struct lb_decimal_t *value);
4393 
4397 void lb_decimal_abs(struct lb_decimal_t *value);
4398 
4402 void lb_decimal_ceil(struct lb_decimal_t *value);
4403 
4407 void lb_decimal_floor(struct lb_decimal_t *value);
4408 
4412 void lb_decimal_fract(struct lb_decimal_t *value);
4413 
4417 bool lb_decimal_is_negative(const struct lb_decimal_t *value);
4418 
4422 bool lb_decimal_is_positive(const struct lb_decimal_t *value);
4423 
4427 bool lb_decimal_is_zero(const struct lb_decimal_t *value);
4428 
4432 const struct lb_decimal_t *lb_decimal_max(const struct lb_decimal_t *a,
4433  const struct lb_decimal_t *b);
4434 
4438 const struct lb_decimal_t *lb_decimal_min(const struct lb_decimal_t *a,
4439  const struct lb_decimal_t *b);
4440 
4445 
4451 void lb_decimal_round(struct lb_decimal_t *value);
4452 
4458 void lb_decimal_round_dp(struct lb_decimal_t *value, uint32_t dp);
4459 
4464 void lb_decimal_trunc(struct lb_decimal_t *value);
4465 
4469 void lb_decimal_add(struct lb_decimal_t *a, const struct lb_decimal_t *b);
4470 
4474 void lb_decimal_sub(struct lb_decimal_t *a, const struct lb_decimal_t *b);
4475 
4479 void lb_decimal_mul(struct lb_decimal_t *a, const struct lb_decimal_t *b);
4480 
4484 void lb_decimal_div(struct lb_decimal_t *a, const struct lb_decimal_t *b);
4485 
4489 void lb_decimal_rem(struct lb_decimal_t *a, const struct lb_decimal_t *b);
4490 
4494 void lb_decimal_neg(struct lb_decimal_t *value);
4495 
4500 bool lb_decimal_gt(const struct lb_decimal_t *a, const struct lb_decimal_t *b);
4501 
4506 bool lb_decimal_gte(const struct lb_decimal_t *a, const struct lb_decimal_t *b);
4507 
4512 bool lb_decimal_eq(const struct lb_decimal_t *a, const struct lb_decimal_t *b);
4513 
4518 bool lb_decimal_lt(const struct lb_decimal_t *a, const struct lb_decimal_t *b);
4519 
4524 bool lb_decimal_lte(const struct lb_decimal_t *a, const struct lb_decimal_t *b);
4525 
4537 int32_t lb_decimal_cmp(const struct lb_decimal_t *a, const struct lb_decimal_t *b);
4538 
4542 void lb_decimal_sin(struct lb_decimal_t *value);
4543 
4547 void lb_decimal_cos(struct lb_decimal_t *value);
4548 
4553 void lb_decimal_tan(struct lb_decimal_t *value);
4554 
4558 void lb_decimal_sqrt(struct lb_decimal_t *value);
4559 
4564 void lb_decimal_pow(struct lb_decimal_t *value, const struct lb_decimal_t *exp);
4565 
4570 void lb_decimal_ln(struct lb_decimal_t *value);
4571 
4575 void lb_decimal_log10(struct lb_decimal_t *value);
4576 
4581 void lb_decimal_exp(struct lb_decimal_t *value);
4582 
4590  const struct lb_decimal_t *tolerance);
4591 
4595 void lb_decimal_erf(struct lb_decimal_t *value);
4596 
4601 
4605 void lb_decimal_norm_pdf(struct lb_decimal_t *value);
4606 
4610 const char *lb_decimal_to_string(const struct lb_decimal_t *value);
4611 
4612 #ifdef __cplusplus
4613 } // extern "C"
4614 #endif // __cplusplus
4615 
4616 #endif /* _LONGPORT_H_ */
struct lb_push_quote_t lb_push_quote_t
struct lb_subscription_t lb_subscription_t
void lb_quote_context_history_candlesticks_by_date(const struct lb_quote_context_t *ctx, const char *symbol, enum lb_period_t period, enum lb_adjust_type_t adjust_type, const struct lb_date_t *start, const struct lb_date_t *end, lb_async_callback_t callback, void *userdata)
void(* lb_trades_callback_t)(const struct lb_quote_context_t *, const struct lb_push_trades_t *, void *)
Definition: longport.h:1494
lb_trade_session_t
Definition: longport.h:978
@ TradeSessionPre
Definition: longport.h:986
@ TradeSessionOvernight
Definition: longport.h:994
@ TradeSessionPost
Definition: longport.h:990
@ TradeSessionNormal
Definition: longport.h:982
struct lb_decimal_t lb_decimal_t
Definition: longport.h:1216
void lb_quote_context_trades(const struct lb_quote_context_t *ctx, const char *symbol, uintptr_t count, lb_async_callback_t callback, void *userdata)
uintptr_t lb_trade_context_ref_count(const struct lb_trade_context_t *ctx)
void lb_trade_context_release(const struct lb_trade_context_t *ctx)
struct lb_decimal_t * lb_decimal_from_double(double value)
void lb_quote_context_set_on_brokers(const struct lb_quote_context_t *ctx, lb_brokers_callback_t callback, void *userdata, lb_free_userdata_func_t free_userdata)
void lb_quote_context_realtime_candlesticks(const struct lb_quote_context_t *ctx, const char *symbol, enum lb_period_t period, uintptr_t count, lb_async_callback_t callback, void *userdata)
lb_warrant_sort_by_t
Definition: longport.h:1072
@ WarrantSortByStrikePrice
Definition: longport.h:1100
@ WarrantSortByLowerStrikePrice
Definition: longport.h:1108
@ WarrantSortByConversionRatio
Definition: longport.h:1152
@ WarrantSortByOutstandingQuantity
Definition: longport.h:1112
@ WarrantSortByPremium
Definition: longport.h:1120
@ WarrantSortByLeverageRatio
Definition: longport.h:1148
@ WarrantSortByCallPrice
Definition: longport.h:1136
@ WarrantSortByChangeValue
Definition: longport.h:1084
@ WarrantSortByBalancePoint
Definition: longport.h:1156
@ WarrantSortByImpliedVolatility
Definition: longport.h:1128
@ WarrantSortByVolume
Definition: longport.h:1088
@ WarrantSortByToCallPrice
Definition: longport.h:1140
@ WarrantSortByItmOtm
Definition: longport.h:1124
@ WarrantSortByTurnover
Definition: longport.h:1092
@ WarrantSortByExpiryDate
Definition: longport.h:1096
@ WarrantSortByOutstandingRatio
Definition: longport.h:1116
@ WarrantSortByChangeRate
Definition: longport.h:1080
@ WarrantSortByEffectiveLeverage
Definition: longport.h:1144
@ WarrantSortByUpperStrikePrice
Definition: longport.h:1104
@ WarrantSortByStatus
Definition: longport.h:1160
@ WarrantSortByDelta
Definition: longport.h:1132
@ WarrantSortByLastDone
Definition: longport.h:1076
double lb_decimal_to_double(const struct lb_decimal_t *value)
void lb_decimal_add(struct lb_decimal_t *a, const struct lb_decimal_t *b)
struct lb_realtime_quote_t lb_realtime_quote_t
struct lb_estimate_max_purchase_quantity_options_t lb_estimate_max_purchase_quantity_options_t
void lb_decimal_neg(struct lb_decimal_t *value)
void lb_quote_context_option_chain_info_by_date(const struct lb_quote_context_t *ctx, const char *symbol, const struct lb_date_t *expiry_date, lb_async_callback_t callback, void *userdata)
lb_sort_order_type_t
Definition: longport.h:914
@ SortOrderDescending
Definition: longport.h:922
@ SortOrderAscending
Definition: longport.h:918
lb_cash_flow_direction_t
Definition: longport.h:254
@ CashFlowDirectionOut
Definition: longport.h:262
@ CashFlowDirectionUnknown
Definition: longport.h:258
@ CashFlowDirectionIn
Definition: longport.h:266
void lb_decimal_cos(struct lb_decimal_t *value)
struct lb_time_t lb_time_t
uintptr_t lb_quote_context_ref_count(const struct lb_quote_context_t *ctx)
struct lb_get_today_executions_options_t lb_get_today_executions_options_t
bool lb_decimal_gte(const struct lb_decimal_t *a, const struct lb_decimal_t *b)
struct lb_security_static_info_t lb_security_static_info_t
lb_outside_rth_t
Definition: longport.h:662
@ OutsideRTHOnly
Definition: longport.h:670
@ OutsideRTHOvernight
Definition: longport.h:678
@ OutsideRTHUnknown
Definition: longport.h:666
@ OutsideRTHAnyTime
Definition: longport.h:674
void lb_quote_context_subscrptions(const struct lb_quote_context_t *ctx, lb_async_callback_t callback, void *userdata)
void lb_http_result_free(struct lb_http_result_t *http_result)
int64_t lb_quote_context_member_id(const struct lb_quote_context_t *ctx)
void(* lb_candlestick_callback_t)(const struct lb_quote_context_t *, const struct lb_push_candlestick_t *, void *)
Definition: longport.h:1554
struct lb_config_t lb_config_t
Definition: longport.h:1214
void lb_decimal_trunc(struct lb_decimal_t *value)
lb_deduction_status_t
Definition: longport.h:316
@ DeductionStatusNoData
Definition: longport.h:328
@ DeductionStatusDone
Definition: longport.h:336
@ DeductionStatusNone
Definition: longport.h:324
@ DeductionStatusPending
Definition: longport.h:332
@ DeductionStatusUnknown
Definition: longport.h:320
void(* lb_brokers_callback_t)(const struct lb_quote_context_t *, const struct lb_push_brokers_t *, void *)
Definition: longport.h:1411
void lb_quote_context_delete_watchlist_group(const struct lb_quote_context_t *ctx, int64_t id, bool purge, lb_async_callback_t callback, void *userdata)
void lb_decimal_ceil(struct lb_decimal_t *value)
lb_trade_direction_t
Definition: longport.h:960
@ TradeDirectionNeutral
Definition: longport.h:964
@ TradeDirectionUp
Definition: longport.h:972
@ TradeDirectionDown
Definition: longport.h:968
lb_period_t
Definition: longport.h:684
@ PeriodQuarter
Definition: longport.h:756
@ PeriodMin120
Definition: longport.h:732
@ PeriodMin15
Definition: longport.h:712
@ PeriodYear
Definition: longport.h:760
@ PeriodMin5
Definition: longport.h:704
@ PeriodMin240
Definition: longport.h:740
@ PeriodMin3
Definition: longport.h:700
@ PeriodMin1
Definition: longport.h:692
@ PeriodMin2
Definition: longport.h:696
@ PeriodMin10
Definition: longport.h:708
@ PeriodMin60
Definition: longport.h:728
@ PeriodMin45
Definition: longport.h:724
@ PeriodDay
Definition: longport.h:744
@ PeriodMin20
Definition: longport.h:716
@ PeriodWeek
Definition: longport.h:748
@ PeriodUnknown
Definition: longport.h:688
@ PeriodMonth
Definition: longport.h:752
@ PeriodMin30
Definition: longport.h:720
@ PeriodMin180
Definition: longport.h:736
void lb_quote_context_capital_distribution(const struct lb_quote_context_t *ctx, const char *symbol, lb_async_callback_t callback, void *userdata)
void lb_error_free(struct lb_error_t *error)
void lb_decimal_erf(struct lb_decimal_t *value)
void lb_decimal_normalize(struct lb_decimal_t *value)
lb_trade_status_t
Definition: longport.h:1000
@ TradeStatusCodeMoved
Definition: longport.h:1024
@ TradeStatusWarrantPrepareList
Definition: longport.h:1040
@ TradeStatusDelisted
Definition: longport.h:1012
@ TradeStatusFuse
Definition: longport.h:1016
@ TradeStatusNormal
Definition: longport.h:1004
@ TradeStatusPrepareList
Definition: longport.h:1020
@ TradeStatusSuspendTrade
Definition: longport.h:1044
@ TradeStatusHalted
Definition: longport.h:1008
@ TradeStatusToBeOpened
Definition: longport.h:1028
@ TradeStatusSplitStockHalts
Definition: longport.h:1032
@ TradeStatusExpired
Definition: longport.h:1036
struct lb_capital_flow_line_t lb_capital_flow_line_t
struct lb_fund_position_t lb_fund_position_t
void lb_quote_context_calc_indexes(const struct lb_quote_context_t *ctx, const char *const *symbols, uintptr_t num_symbols, const enum lb_calc_index_t *indexes, uintptr_t num_indexes, lb_async_callback_t callback, void *userdata)
struct lb_replace_order_options_t lb_replace_order_options_t
void lb_config_free(struct lb_config_t *config)
void lb_quote_context_release(const struct lb_quote_context_t *ctx)
struct lb_quote_package_detail_t lb_quote_package_detail_t
struct lb_push_order_changed_t lb_push_order_changed_t
void lb_quote_context_update_watchlist_group(const struct lb_quote_context_t *ctx, const struct lb_update_watchlist_group_t *req, lb_async_callback_t callback, void *userdata)
struct lb_quote_context_t lb_quote_context_t
Definition: longport.h:1230
struct lb_order_history_detail_t lb_order_history_detail_t
struct lb_market_trading_days_t lb_market_trading_days_t
bool lb_decimal_eq(const struct lb_decimal_t *a, const struct lb_decimal_t *b)
void lb_decimal_abs(struct lb_decimal_t *value)
struct lb_warrant_quote_t lb_warrant_quote_t
lb_market_t
Definition: longport.h:396
@ MarketCN
Definition: longport.h:412
@ MarketHK
Definition: longport.h:408
@ MarketUnknown
Definition: longport.h:400
@ MarketSG
Definition: longport.h:416
@ MarketUS
Definition: longport.h:404
void(* lb_quote_callback_t)(const struct lb_quote_context_t *, const struct lb_push_quote_t *, void *)
Definition: longport.h:1311
struct lb_market_trading_session_t lb_market_trading_session_t
lb_filter_warrant_in_out_bounds_type_t
Definition: longport.h:364
@ WarrantInOutBoundsType_Out
Definition: longport.h:372
@ WarrantInOutBoundsType_In
Definition: longport.h:368
void lb_quote_context_set_on_candlestick(const struct lb_quote_context_t *ctx, lb_candlestick_callback_t callback, void *userdata, lb_free_userdata_func_t free_userdata)
struct lb_warrant_info_t lb_warrant_info_t
struct lb_fund_position_channel_t lb_fund_position_channel_t
void lb_trade_context_submit_order(const struct lb_trade_context_t *ctx, const struct lb_submit_order_options_t *opts, lb_async_callback_t callback, void *userdata)
void lb_trade_context_history_orders(const struct lb_trade_context_t *ctx, const struct lb_get_history_orders_options_t *opts, lb_async_callback_t callback, void *userdata)
struct lb_order_t lb_order_t
struct lb_stock_position_t lb_stock_position_t
void lb_trade_context_estimate_max_purchase_quantity(const struct lb_trade_context_t *ctx, const struct lb_estimate_max_purchase_quantity_options_t *opts, lb_async_callback_t callback, void *userdata)
void lb_quote_context_unsubscribe(const struct lb_quote_context_t *ctx, const char *const *symbols, uintptr_t num_symbols, uint8_t sub_types, lb_async_callback_t callback, void *userdata)
void(* lb_free_userdata_func_t)(void *)
Definition: longport.h:1255
struct lb_submit_order_options_t lb_submit_order_options_t
void lb_quote_context_realtime_depth(const struct lb_quote_context_t *ctx, const char *symbol, lb_async_callback_t callback, void *userdata)
void lb_quote_context_static_info(const struct lb_quote_context_t *ctx, const char *const *symbols, uintptr_t num_symbols, lb_async_callback_t callback, void *userdata)
struct lb_get_fund_positions_options_t lb_get_fund_positions_options_t
void lb_quote_context_watchlist(const struct lb_quote_context_t *ctx, lb_async_callback_t callback, void *userdata)
bool lb_decimal_lt(const struct lb_decimal_t *a, const struct lb_decimal_t *b)
struct lb_issuer_info_t lb_issuer_info_t
void lb_quote_context_create_watchlist_group(const struct lb_quote_context_t *ctx, const struct lb_create_watchlist_group_t *req, lb_async_callback_t callback, void *userdata)
struct lb_update_watchlist_group_t lb_update_watchlist_group_t
void lb_trade_context_subscribe(const struct lb_trade_context_t *ctx, const enum lb_topic_type_t *topics, uintptr_t num_topics, lb_async_callback_t callback, void *userdata)
void lb_decimal_exp(struct lb_decimal_t *value)
void lb_quote_context_option_quote(const struct lb_quote_context_t *ctx, const char *const *symbols, uintptr_t num_symbols, lb_async_callback_t callback, void *userdata)
lb_calc_index_t
Definition: longport.h:88
@ CalcIndexCallPrice
Definition: longport.h:204
@ CalcIndexOutstandingQty
Definition: longport.h:180
@ CalcIndexDividendRatioTtm
Definition: longport.h:144
@ CalcIndexChangeRate
Definition: longport.h:100
@ CalcIndexOutstandingRatio
Definition: longport.h:184
@ CalcIndexLeverageRatio
Definition: longport.h:216
@ CalcIndexCapitalFlow
Definition: longport.h:124
@ CalcIndexDelta
Definition: longport.h:232
@ CalcIndexToCallPrice
Definition: longport.h:208
@ CalcIndexTheta
Definition: longport.h:240
@ CalcIndexChangeValue
Definition: longport.h:96
@ CalcIndexTurnoverRate
Definition: longport.h:116
@ CalcIndexVolume
Definition: longport.h:104
@ CalcIndexYtdChangeRate
Definition: longport.h:112
@ CalcIndexFiveMinutesChangeRate
Definition: longport.h:160
@ CalcIndexUpperStrikePrice
Definition: longport.h:172
@ CalcIndexPbRatio
Definition: longport.h:140
@ CalcIndexWarrantDelta
Definition: longport.h:200
@ CalcIndexOpenInterest
Definition: longport.h:228
@ CalcIndexBalancePoint
Definition: longport.h:224
@ CalcIndexVolumeRatio
Definition: longport.h:132
@ CalcIndexExpiryDate
Definition: longport.h:164
@ CalcIndexPeTtmRatio
Definition: longport.h:136
@ CalcIndexConversionRatio
Definition: longport.h:220
@ CalcIndexGamma
Definition: longport.h:236
@ CalcIndexFiveDayChangeRate
Definition: longport.h:148
@ CalcIndexVega
Definition: longport.h:244
@ CalcIndexPremium
Definition: longport.h:188
@ CalcIndexAmplitude
Definition: longport.h:128
@ CalcIndexItmOtm
Definition: longport.h:192
@ CalcIndexRho
Definition: longport.h:248
@ CalcIndexLastDone
Definition: longport.h:92
@ CalcIndexLowerStrikePrice
Definition: longport.h:176
@ CalcIndexTenDayChangeRate
Definition: longport.h:152
@ CalcIndexTurnover
Definition: longport.h:108
@ CalcIndexEffectiveLeverage
Definition: longport.h:212
@ CalcIndexHalfYearChangeRate
Definition: longport.h:156
@ CalcIndexTotalMarketValue
Definition: longport.h:120
@ CalcIndexStrikePrice
Definition: longport.h:168
@ CalcIndexImpliedVolatility
Definition: longport.h:196
void lb_quote_context_intraday(const struct lb_quote_context_t *ctx, const char *symbol, lb_async_callback_t callback, void *userdata)
struct lb_account_balance_t lb_account_balance_t
void lb_http_client_request(struct lb_http_client_t *http_client, const char *method, const char *path, const struct lb_http_header_t *headers, const char *request_body, lb_async_callback_t callback, void *userdata)
struct lb_cash_flow_t lb_cash_flow_t
struct lb_security_quote_t lb_security_quote_t
struct lb_estimate_max_purchase_quantity_response_t lb_estimate_max_purchase_quantity_response_t
struct lb_intraday_line_t lb_intraday_line_t
void lb_quote_context_realtime_brokers(const struct lb_quote_context_t *ctx, const char *symbol, lb_async_callback_t callback, void *userdata)
void lb_trade_context_set_on_order_changed(const struct lb_trade_context_t *ctx, lb_order_changed_callback_t callback, void *userdata, lb_free_userdata_func_t free_userdata)
void lb_quote_context_realtime_quote(const struct lb_quote_context_t *ctx, const char *const *symbols, uintptr_t num_symbols, lb_async_callback_t callback, void *userdata)
void * lb_trade_context_userdata(const struct lb_trade_context_t *ctx)
struct lb_http_header_t lb_http_header_t
struct lb_decimal_t * lb_decimal_clone(const struct lb_decimal_t *value)
struct lb_http_client_t lb_http_client_t
Definition: longport.h:1223
void(* lb_async_callback_t)(const struct lb_async_result_t *)
Definition: longport.h:1245
void lb_quote_context_security_list(const struct lb_quote_context_t *ctx, enum lb_market_t market, enum lb_security_list_category_t category, lb_async_callback_t callback, void *userdata)
struct lb_create_watchlist_group_t lb_create_watchlist_group_t
void lb_decimal_sqrt(struct lb_decimal_t *value)
struct lb_push_depth_t lb_push_depth_t
void lb_quote_context_quote_package_details(const struct lb_quote_context_t *ctx, lb_async_callback_t callback, void *userdata)
lb_securities_update_mode_t
Definition: longport.h:780
@ SecuritiesUpdateModeAdd
Definition: longport.h:784
@ SecuritiesUpdateModeReplace
Definition: longport.h:792
@ SecuritiesUpdateModeRemove
Definition: longport.h:788
lb_warrant_status_t
Definition: longport.h:1166
@ WarrantStatusPrepareList
Definition: longport.h:1174
@ WarrantStatusSuspend
Definition: longport.h:1170
@ WarrantStatusNormal
Definition: longport.h:1178
void lb_quote_context_trading_days(const struct lb_quote_context_t *ctx, enum lb_market_t market, const struct lb_date_t *begin, const struct lb_date_t *end, lb_async_callback_t callback, void *userdata)
lb_filter_warrant_expiry_date_t
Definition: longport.h:342
@ WarrantExpiryDate_Between_6_12
Definition: longport.h:354
@ WarrantExpiryDate_LT_3
Definition: longport.h:346
@ WarrantExpiryDate_GT_12
Definition: longport.h:358
@ WarrantExpiryDate_Between_3_6
Definition: longport.h:350
lb_option_type_t
Definition: longport.h:440
@ OptionTypeEurope
Definition: longport.h:452
@ OptionTypeUnknown
Definition: longport.h:444
@ OptionTypeAmerican
Definition: longport.h:448
struct lb_push_candlestick_t lb_push_candlestick_t
lb_security_list_category_t
Definition: longport.h:904
@ SecurityListCategoryOvernight
Definition: longport.h:908
bool lb_decimal_is_positive(const struct lb_decimal_t *value)
lb_order_type_t
Definition: longport.h:600
@ OrderTypeUnknown
Definition: longport.h:604
@ OrderTypeTSMPCT
Definition: longport.h:652
@ OrderTypeELO
Definition: longport.h:612
@ OrderTypeAO
Definition: longport.h:620
@ OrderTypeMO
Definition: longport.h:616
@ OrderTypeTSMAMT
Definition: longport.h:648
@ OrderTypeSLO
Definition: longport.h:656
@ OrderTypeMIT
Definition: longport.h:636
@ OrderTypeLO
Definition: longport.h:608
@ OrderTypeLIT
Definition: longport.h:632
@ OrderTypeTSLPPCT
Definition: longport.h:644
@ OrderTypeODD
Definition: longport.h:628
@ OrderTypeALO
Definition: longport.h:624
@ OrderTypeTSLPAMT
Definition: longport.h:640
const struct lb_decimal_t * lb_decimal_max(const struct lb_decimal_t *a, const struct lb_decimal_t *b)
void lb_quote_context_retain(const struct lb_quote_context_t *ctx)
lb_trigger_status_t
Definition: longport.h:1050
@ TriggerStatusUnknown
Definition: longport.h:1054
@ TriggerStatusReleased
Definition: longport.h:1066
@ TriggerStatusDeactive
Definition: longport.h:1058
@ TriggerStatusActive
Definition: longport.h:1062
struct lb_get_history_executions_options_t lb_get_history_executions_options_t
void lb_decimal_norm_pdf(struct lb_decimal_t *value)
struct lb_http_client_t * lb_http_client_new(const char *http_url, const char *app_key, const char *app_secret, const char *access_token)
struct lb_date_t lb_date_t
const struct lb_decimal_t * lb_decimal_min(const struct lb_decimal_t *a, const struct lb_decimal_t *b)
struct lb_error_t lb_error_t
Definition: longport.h:1218
struct lb_cash_info_t lb_cash_info_t
struct lb_async_result_t lb_async_result_t
void lb_quote_context_candlesticks(const struct lb_quote_context_t *ctx, const char *symbol, enum lb_period_t period, uintptr_t count, enum lb_adjust_type_t adjust_type, lb_async_callback_t callback, void *userdata)
void(* lb_depth_callback_t)(const struct lb_quote_context_t *, const struct lb_push_depth_t *, void *)
Definition: longport.h:1363
int64_t lb_error_code(const struct lb_error_t *error)
struct lb_http_client_t * lb_http_client_from_env(struct lb_error_t **error)
struct lb_security_brokers_t lb_security_brokers_t
void lb_quote_context_quote(const struct lb_quote_context_t *ctx, const char *const *symbols, uintptr_t num_symbols, lb_async_callback_t callback, void *userdata)
void lb_decimal_round(struct lb_decimal_t *value)
struct lb_capital_distribution_t lb_capital_distribution_t
struct lb_decimal_t * lb_decimal_new(int64_t num, uint32_t scale)
struct lb_strike_price_info_t lb_strike_price_info_t
void lb_trade_context_order_detail(const struct lb_trade_context_t *ctx, const char *order_id, lb_async_callback_t callback, void *userdata)
void lb_trade_context_cash_flow(const struct lb_trade_context_t *ctx, const struct lb_get_cash_flow_options_t *opts, lb_async_callback_t callback, void *userdata)
void lb_trade_context_set_userdata(const struct lb_trade_context_t *ctx, void *userdata)
struct lb_get_stock_positions_options_t lb_get_stock_positions_options_t
void lb_trade_context_replace_order(const struct lb_trade_context_t *ctx, const struct lb_replace_order_options_t *opts, lb_async_callback_t callback, void *userdata)
struct lb_get_history_orders_options_t lb_get_history_orders_options_t
struct lb_stock_position_response_t lb_stock_position_response_t
struct lb_trade_t lb_trade_t
void lb_trade_context_cancel_order(const struct lb_trade_context_t *ctx, const char *order_id, lb_async_callback_t callback, void *userdata)
void lb_decimal_sub(struct lb_decimal_t *a, const struct lb_decimal_t *b)
bool lb_decimal_gt(const struct lb_decimal_t *a, const struct lb_decimal_t *b)
void lb_trade_context_today_executions(const struct lb_trade_context_t *ctx, const struct lb_get_today_executions_options_t *opts, lb_async_callback_t callback, void *userdata)
bool lb_decimal_lte(const struct lb_decimal_t *a, const struct lb_decimal_t *b)
void lb_quote_context_trading_session(const struct lb_quote_context_t *ctx, lb_async_callback_t callback, void *userdata)
struct lb_trade_context_t lb_trade_context_t
Definition: longport.h:1235
struct lb_fund_position_response_t lb_fund_position_response_t
void lb_trade_context_account_balance(const struct lb_trade_context_t *ctx, const char *currency, lb_async_callback_t callback, void *userdata)
void * lb_quote_context_userdata(const struct lb_quote_context_t *ctx)
void lb_decimal_div(struct lb_decimal_t *a, const struct lb_decimal_t *b)
void lb_decimal_fract(struct lb_decimal_t *value)
void lb_quote_context_set_userdata(const struct lb_quote_context_t *ctx, void *userdata)
struct lb_config_t * lb_config_new(const char *app_key, const char *app_secret, const char *access_token, const char *http_url, const char *quote_ws_url, const char *trade_ws_url, const enum lb_language_t *language, bool enable_overight, const enum lb_push_candlestick_mode_t *push_candlestick_mode)
void lb_trade_context_history_executions(const struct lb_trade_context_t *ctx, const struct lb_get_history_executions_options_t *opts, lb_async_callback_t callback, void *userdata)
void lb_quote_context_set_on_trades(const struct lb_quote_context_t *ctx, lb_trades_callback_t callback, void *userdata, lb_free_userdata_func_t free_userdata)
void lb_config_refresh_access_token(struct lb_config_t *config, int64_t expired_at, lb_async_callback_t callback, void *userdata)
void lb_decimal_pow(struct lb_decimal_t *value, const struct lb_decimal_t *exp)
void lb_decimal_free(struct lb_decimal_t *value)
struct lb_capital_distribution_response_t lb_capital_distribution_response_t
struct lb_push_brokers_t lb_push_brokers_t
void lb_quote_context_history_candlesticks_by_offset(const struct lb_quote_context_t *ctx, const char *symbol, enum lb_period_t period, enum lb_adjust_type_t adjust_type, bool forward, struct lb_datetime_t time, uintptr_t count, lb_async_callback_t callback, void *userdata)
void lb_quote_context_realtime_trades(const struct lb_quote_context_t *ctx, const char *symbol, uintptr_t count, lb_async_callback_t callback, void *userdata)
struct lb_margin_ratio_t lb_margin_ratio_t
void lb_trade_context_retain(const struct lb_trade_context_t *ctx)
const char * lb_decimal_to_string(const struct lb_decimal_t *value)
struct lb_datetime_t lb_datetime_t
struct lb_depth_t lb_depth_t
void lb_quote_context_capital_flow(const struct lb_quote_context_t *ctx, const char *symbol, lb_async_callback_t callback, void *userdata)
void lb_trade_context_set_free_userdata_func(const struct lb_trade_context_t *ctx, lb_free_userdata_func_t f)
void lb_decimal_rem(struct lb_decimal_t *a, const struct lb_decimal_t *b)
void lb_quote_context_brokers(const struct lb_quote_context_t *ctx, const char *symbol, lb_async_callback_t callback, void *userdata)
void lb_decimal_exp_with_tolerance(struct lb_decimal_t *value, const struct lb_decimal_t *tolerance)
lb_charge_category_code_t
Definition: longport.h:272
@ ChargeCategoryCodeThird
Definition: longport.h:284
@ ChargeCategoryCodeBroker
Definition: longport.h:280
@ ChargeCategoryCodeUnknown
Definition: longport.h:276
void lb_decimal_sin(struct lb_decimal_t *value)
lb_push_candlestick_mode_t
Definition: longport.h:766
@ PushCandlestickMode_Realtime
Definition: longport.h:770
@ PushCandlestickMode_Confirmed
Definition: longport.h:774
struct lb_config_t * lb_config_from_env(struct lb_error_t **error)
lb_security_board_t
Definition: longport.h:798
@ SecurityBoardHKEquity
Definition: longport.h:834
@ SecurityBoardUSOptionS
Definition: longport.h:830
@ SecurityBoardSHMainConnect
Definition: longport.h:854
@ SecurityBoardSZMainNonConnect
Definition: longport.h:878
@ SecurityBoardSZGEMConnect
Definition: longport.h:882
@ SecurityBoardSTI
Definition: longport.h:894
@ SecurityBoardUSNSDQ
Definition: longport.h:818
@ SecurityBoardSGMain
Definition: longport.h:890
@ SecurityBoardUSOption
Definition: longport.h:826
@ SecurityBoardSZMainConnect
Definition: longport.h:874
@ SecurityBoardSZGEMNonConnect
Definition: longport.h:886
@ SecurityBoardHKSector
Definition: longport.h:850
@ SecurityBoardUSSector
Definition: longport.h:822
@ SecurityBoardHKPreIPO
Definition: longport.h:838
@ SecurityBoardCNIX
Definition: longport.h:866
@ SecurityBoardUnknown
Definition: longport.h:802
@ SecurityBoardUSDJI
Definition: longport.h:814
@ SecurityBoardHKHS
Definition: longport.h:846
@ SecurityBoardCNSector
Definition: longport.h:870
@ SecurityBoardUSMain
Definition: longport.h:806
@ SecurityBoardUSPink
Definition: longport.h:810
@ SecurityBoardSHSTAR
Definition: longport.h:862
@ SecurityBoardSGSector
Definition: longport.h:898
@ SecurityBoardSHMainNonConnect
Definition: longport.h:858
@ SecurityBoardHKWarrant
Definition: longport.h:842
struct lb_submit_order_response_t lb_submit_order_response_t
lb_time_in_force_type_t
Definition: longport.h:928
@ TimeInForceUnknown
Definition: longport.h:932
@ TimeInForceGoodTilCanceled
Definition: longport.h:940
@ TimeInForceGoodTilDate
Definition: longport.h:944
@ TimeInForceDay
Definition: longport.h:936
void lb_decimal_tan(struct lb_decimal_t *value)
bool lb_decimal_is_negative(const struct lb_decimal_t *value)
struct lb_brokers_t lb_brokers_t
lb_order_side_t
Definition: longport.h:458
@ OrderSideSell
Definition: longport.h:470
@ OrderSideBuy
Definition: longport.h:466
@ OrderSideUnknown
Definition: longport.h:462
const char * lb_http_result_response_body(const struct lb_http_result_t *http_result)
lb_commission_free_status_t
Definition: longport.h:290
@ CommissionFreeStatusCalculated
Definition: longport.h:302
@ CommissionFreeStatusUnknown
Definition: longport.h:294
@ CommissionFreeStatusPending
Definition: longport.h:306
@ CommissionFreeStatusReady
Definition: longport.h:310
@ CommissionFreeStatusNone
Definition: longport.h:298
struct lb_option_quote_t lb_option_quote_t
struct lb_push_trades_t lb_push_trades_t
int32_t lb_decimal_cmp(const struct lb_decimal_t *a, const struct lb_decimal_t *b)
void lb_quote_context_new(const struct lb_config_t *config, lb_async_callback_t callback, void *userdata)
struct lb_http_result_t lb_http_result_t
Definition: longport.h:1225
lb_balance_type_t
Definition: longport.h:66
@ BalanceTypeCash
Definition: longport.h:74
@ BalanceTypeUnknown
Definition: longport.h:70
@ BalanceTypeStock
Definition: longport.h:78
@ BalanceTypeFund
Definition: longport.h:82
struct lb_candlestick_t lb_candlestick_t
lb_warrant_type_t
Definition: longport.h:1184
@ WarrantTypeBear
Definition: longport.h:1204
@ WarrantTypeInline
Definition: longport.h:1208
@ WarrantTypeBull
Definition: longport.h:1200
@ WarrantTypeUnknown
Definition: longport.h:1188
@ WarrantTypeCall
Definition: longport.h:1196
@ WarrantTypePut
Definition: longport.h:1192
struct lb_get_cash_flow_options_t lb_get_cash_flow_options_t
lb_topic_type_t
Definition: longport.h:950
@ TopicPrivate
Definition: longport.h:954
void lb_http_client_free(struct lb_http_client_t *http_client)
void lb_trade_context_today_orders(const struct lb_trade_context_t *ctx, const struct lb_get_today_orders_options_t *opts, lb_async_callback_t callback, void *userdata)
void lb_quote_context_unsubscribe_candlesticks(const struct lb_quote_context_t *ctx, const char *symbol, enum lb_period_t period, lb_async_callback_t callback, void *userdata)
struct lb_prepost_quote_t lb_prepost_quote_t
lb_adjust_type_t
Definition: longport.h:52
@ AdjustTypeNoAdjust
Definition: longport.h:56
@ AdjustTypeForward
Definition: longport.h:60
void lb_quote_context_set_on_quote(const struct lb_quote_context_t *ctx, lb_quote_callback_t callback, void *userdata, lb_free_userdata_func_t free_userdata)
void lb_quote_context_participants(const struct lb_quote_context_t *ctx, lb_async_callback_t callback, void *userdata)
void lb_trade_context_stock_positions(const struct lb_trade_context_t *ctx, const struct lb_get_stock_positions_options_t *opts, lb_async_callback_t callback, void *userdata)
struct lb_decimal_t * lb_decimal_from_str(const char *value)
void lb_decimal_floor(struct lb_decimal_t *value)
struct lb_security_calc_index_t lb_security_calc_index_t
void lb_quote_context_set_free_userdata_func(const struct lb_quote_context_t *ctx, lb_free_userdata_func_t f)
void(* lb_order_changed_callback_t)(const struct lb_trade_context_t *, const struct lb_push_order_changed_t *, void *)
Definition: longport.h:1729
void lb_quote_context_subscribe_candlesticks(const struct lb_quote_context_t *ctx, const char *symbol, enum lb_period_t period, lb_async_callback_t callback, void *userdata)
void lb_trade_context_margin_ratio(const struct lb_trade_context_t *ctx, const char *symbol, lb_async_callback_t callback, void *userdata)
struct lb_stock_position_channel_t lb_stock_position_channel_t
struct lb_execution_t lb_execution_t
void lb_trade_context_fund_positions(const struct lb_trade_context_t *ctx, const struct lb_get_fund_positions_options_t *opts, lb_async_callback_t callback, void *userdata)
struct lb_participant_info_t lb_participant_info_t
struct lb_security_depth_t lb_security_depth_t
struct lb_security_t lb_security_t
struct lb_order_charge_detail_t lb_order_charge_detail_t
bool lb_decimal_is_zero(const struct lb_decimal_t *value)
lb_language_t
Definition: longport.h:378
@ Language_ZH_HK
Definition: longport.h:386
@ Language_ZH_CN
Definition: longport.h:382
@ Language_EN
Definition: longport.h:390
void lb_quote_context_option_chain_expiry_date_list(const struct lb_quote_context_t *ctx, const char *symbol, lb_async_callback_t callback, void *userdata)
void lb_quote_context_set_on_depth(const struct lb_quote_context_t *ctx, lb_depth_callback_t callback, void *userdata, lb_free_userdata_func_t free_userdata)
void lb_quote_context_warrant_issuers(const struct lb_quote_context_t *ctx, lb_async_callback_t callback, void *userdata)
void lb_trade_context_new(const struct lb_config_t *config, lb_async_callback_t callback, void *userdata)
void lb_quote_context_subscribe(const struct lb_quote_context_t *ctx, const char *const *symbols, uintptr_t num_symbols, uint8_t sub_types, bool is_first_push, lb_async_callback_t callback, void *userdata)
lb_order_status_t
Definition: longport.h:476
@ OrderStatusExpired
Definition: longport.h:544
@ OrderStatusProtectedNotReported
Definition: longport.h:492
@ OrderStatusPendingCancel
Definition: longport.h:532
@ OrderStatusPartialWithdrawal
Definition: longport.h:548
@ OrderStatusReplacedNotReported
Definition: longport.h:488
@ OrderStatusWaitToCancel
Definition: longport.h:528
@ OrderStatusFilled
Definition: longport.h:500
@ OrderStatusCanceled
Definition: longport.h:540
@ OrderStatusPendingReplace
Definition: longport.h:516
@ OrderStatusRejected
Definition: longport.h:536
@ OrderStatusPartialFilled
Definition: longport.h:524
@ OrderStatusWaitToNew
Definition: longport.h:504
@ OrderStatusNew
Definition: longport.h:508
@ OrderStatusVarietiesNotReported
Definition: longport.h:496
@ OrderStatusUnknown
Definition: longport.h:480
@ OrderStatusWaitToReplace
Definition: longport.h:512
@ OrderStatusNotReported
Definition: longport.h:484
@ OrderStatusReplaced
Definition: longport.h:520
struct lb_order_charge_item_t lb_order_charge_item_t
const char * lb_error_message(const struct lb_error_t *error)
struct lb_order_detail_t lb_order_detail_t
void lb_quote_context_warrant_quote(const struct lb_quote_context_t *ctx, const char *const *symbols, uintptr_t num_symbols, lb_async_callback_t callback, void *userdata)
struct lb_trading_session_info_t lb_trading_session_info_t
struct lb_get_today_orders_options_t lb_get_today_orders_options_t
lb_order_tag_t
Definition: longport.h:554
@ OrderTagNonExercise
Definition: longport.h:590
@ OrderTagOffline
Definition: longport.h:578
@ OrderTagDebtor
Definition: longport.h:586
@ OrderTagCreditor
Definition: longport.h:582
@ OrderTagUnknown
Definition: longport.h:558
@ OrderTagAllocatedSub
Definition: longport.h:594
@ OrderTagMarginCall
Definition: longport.h:574
@ OrderTagLongTerm
Definition: longport.h:566
@ OrderTagGrey
Definition: longport.h:570
@ OrderTagNormal
Definition: longport.h:562
void lb_decimal_round_dp(struct lb_decimal_t *value, uint32_t dp)
const char * lb_quote_context_quote_level(const struct lb_quote_context_t *ctx)
void lb_quote_context_warrant_list(const struct lb_quote_context_t *ctx, const char *symbol, enum lb_warrant_sort_by_t sort_by, enum lb_sort_order_type_t sort_order, const enum lb_warrant_type_t *warrant_type, uintptr_t num_warrant_type, const int32_t *issuer, uintptr_t num_issuer, const enum lb_filter_warrant_expiry_date_t *expiry_date, uintptr_t num_expiry_date, const enum lb_filter_warrant_in_out_bounds_type_t *price_type, uintptr_t num_price_type, const enum lb_warrant_status_t *status, uintptr_t num_status, lb_async_callback_t callback, void *userdata)
void lb_decimal_log10(struct lb_decimal_t *value)
void lb_quote_context_depth(const struct lb_quote_context_t *ctx, const char *symbol, lb_async_callback_t callback, void *userdata)
void lb_decimal_normal_cdf(struct lb_decimal_t *value)
void lb_decimal_mul(struct lb_decimal_t *a, const struct lb_decimal_t *b)
lb_option_direction_t
Definition: longport.h:422
@ OptionDirectionPut
Definition: longport.h:430
@ OptionDirectionUnknown
Definition: longport.h:426
@ OptionDirectionCall
Definition: longport.h:434
void lb_trade_context_unsubscribe(const struct lb_trade_context_t *ctx, const enum lb_topic_type_t *topics, uintptr_t num_topics, lb_async_callback_t callback, void *userdata)
struct lb_watchlist_group_t lb_watchlist_group_t
void lb_decimal_ln(struct lb_decimal_t *value)
struct lb_order_charge_fee_t lb_order_charge_fee_t
struct lb_watchlist_security_t lb_watchlist_security_t
Definition: longport.h:2826
const struct lb_decimal_t * total_cash
Definition: longport.h:2830
const struct lb_decimal_t * margin_call
Definition: longport.h:2846
const struct lb_decimal_t * buy_power
Definition: longport.h:2874
const struct lb_decimal_t * max_finance_amount
Definition: longport.h:2834
int32_t risk_level
Definition: longport.h:2842
const struct lb_decimal_t * maintenance_margin
Definition: longport.h:2870
const struct lb_decimal_t * remaining_finance_amount
Definition: longport.h:2838
uintptr_t num_cash_infos
Definition: longport.h:2858
const struct lb_decimal_t * init_margin
Definition: longport.h:2866
const char * currency
Definition: longport.h:2850
const struct lb_decimal_t * net_assets
Definition: longport.h:2862
const struct lb_cash_info_t * cash_infos
Definition: longport.h:2854
Definition: longport.h:1237
const struct lb_error_t * error
Definition: longport.h:1239
uintptr_t length
Definition: longport.h:1241
void * data
Definition: longport.h:1240
const void * ctx
Definition: longport.h:1238
void * userdata
Definition: longport.h:1242
Definition: longport.h:1370
uintptr_t num_broker_ids
Definition: longport.h:1382
int32_t position
Definition: longport.h:1374
const int32_t * broker_ids
Definition: longport.h:1378
Definition: longport.h:1501
const struct lb_decimal_t * turnover
Definition: longport.h:1525
const struct lb_decimal_t * open
Definition: longport.h:1509
const struct lb_decimal_t * close
Definition: longport.h:1505
const struct lb_decimal_t * high
Definition: longport.h:1517
const struct lb_decimal_t * low
Definition: longport.h:1513
int64_t timestamp
Definition: longport.h:1529
int64_t volume
Definition: longport.h:1521
Definition: longport.h:2600
struct lb_capital_distribution_t capital_out
Definition: longport.h:2612
int64_t timestamp
Definition: longport.h:2604
struct lb_capital_distribution_t capital_in
Definition: longport.h:2608
Definition: longport.h:2582
const struct lb_decimal_t * large
Definition: longport.h:2586
const struct lb_decimal_t * medium
Definition: longport.h:2590
const struct lb_decimal_t * small
Definition: longport.h:2594
Definition: longport.h:2568
const struct lb_decimal_t * inflow
Definition: longport.h:2572
int64_t timestamp
Definition: longport.h:2576
Definition: longport.h:2880
const struct lb_decimal_t * balance
Definition: longport.h:2896
int64_t business_time
Definition: longport.h:2904
const char * description
Definition: longport.h:2912
const char * transaction_flow_name
Definition: longport.h:2884
const char * symbol
Definition: longport.h:2908
const char * currency
Definition: longport.h:2900
enum lb_balance_type_t business_type
Definition: longport.h:2892
enum lb_cash_flow_direction_t direction
Definition: longport.h:2888
Definition: longport.h:2800
const struct lb_decimal_t * available_cash
Definition: longport.h:2808
const struct lb_decimal_t * frozen_cash
Definition: longport.h:2812
const struct lb_decimal_t * withdraw_cash
Definition: longport.h:2804
const char * currency
Definition: longport.h:2820
const struct lb_decimal_t * settling_cash
Definition: longport.h:2816
Definition: longport.h:1578
uintptr_t num_securities
Definition: longport.h:1590
const char *const * securities
Definition: longport.h:1586
const char * name
Definition: longport.h:1582
Definition: longport.h:1558
uint8_t month
Definition: longport.h:1560
int32_t year
Definition: longport.h:1559
uint8_t day
Definition: longport.h:1561
Definition: longport.h:1570
struct lb_date_t date
Definition: longport.h:1571
struct lb_time_t time
Definition: longport.h:1572
Definition: longport.h:1318
const struct lb_decimal_t * price
Definition: longport.h:1326
int64_t order_num
Definition: longport.h:1334
int32_t position
Definition: longport.h:1322
int64_t volume
Definition: longport.h:1330
enum lb_order_side_t side
Definition: longport.h:1991
const struct lb_decimal_t * price
Definition: longport.h:1990
enum lb_order_type_t order_type
Definition: longport.h:1989
const char * symbol
Definition: longport.h:1988
const char * currency
Definition: longport.h:1992
const char * order_id
Definition: longport.h:1993
int64_t cash_max_qty
Definition: longport.h:3370
int64_t margin_max_qty
Definition: longport.h:3374
Definition: longport.h:2660
const struct lb_decimal_t * price
Definition: longport.h:2684
int64_t quantity
Definition: longport.h:2680
const char * trade_id
Definition: longport.h:2668
const char * symbol
Definition: longport.h:2672
int64_t trade_done_at
Definition: longport.h:2676
const char * order_id
Definition: longport.h:2664
Definition: longport.h:2952
const char * account_channel
Definition: longport.h:2956
uintptr_t num_positions
Definition: longport.h:2964
const struct lb_fund_position_t * positions
Definition: longport.h:2960
Definition: longport.h:2970
const struct lb_fund_position_channel_t * channels
Definition: longport.h:2974
uintptr_t num_channels
Definition: longport.h:2978
Definition: longport.h:2918
int64_t net_asset_value_day
Definition: longport.h:2930
const char * symbol_name
Definition: longport.h:2934
const struct lb_decimal_t * cost_net_asset_value
Definition: longport.h:2942
const char * symbol
Definition: longport.h:2922
const char * currency
Definition: longport.h:2938
const struct lb_decimal_t * holding_units
Definition: longport.h:2946
const struct lb_decimal_t * current_net_asset_value
Definition: longport.h:2926
Definition: longport.h:1929
const uintptr_t * size
Definition: longport.h:1953
enum lb_balance_type_t * business_type
Definition: longport.h:1941
int64_t end_at
Definition: longport.h:1937
int64_t start_at
Definition: longport.h:1933
const uintptr_t * page
Definition: longport.h:1949
const char * symbol
Definition: longport.h:1945
Definition: longport.h:1959
uintptr_t num_symbols
Definition: longport.h:1967
const char *const * symbols
Definition: longport.h:1963
Definition: longport.h:1736
const int64_t * start_at
Definition: longport.h:1740
const int64_t * end_at
Definition: longport.h:1744
const char * symbol
Definition: longport.h:1748
Definition: longport.h:1768
const int64_t * start_at
Definition: longport.h:1792
enum lb_market_t * market
Definition: longport.h:1788
enum lb_order_status_t * status
Definition: longport.h:1776
const int64_t * end_at
Definition: longport.h:1796
const char * symbol
Definition: longport.h:1772
enum lb_order_side_t * side
Definition: longport.h:1784
uintptr_t num_status
Definition: longport.h:1780
Definition: longport.h:1973
uintptr_t num_symbols
Definition: longport.h:1981
const char *const * symbols
Definition: longport.h:1977
Definition: longport.h:1754
const char * symbol
Definition: longport.h:1758
const char * order_id
Definition: longport.h:1762
Definition: longport.h:1802
enum lb_market_t * market
Definition: longport.h:1822
enum lb_order_status_t * status
Definition: longport.h:1810
const char * symbol
Definition: longport.h:1806
enum lb_order_side_t * side
Definition: longport.h:1818
uintptr_t num_status
Definition: longport.h:1814
const char * order_id
Definition: longport.h:1826
Definition: longport.h:1250
const char * value
Definition: longport.h:1252
const char * name
Definition: longport.h:1251
Definition: longport.h:2440
const struct lb_decimal_t * turnover
Definition: longport.h:2456
const struct lb_decimal_t * avg_price
Definition: longport.h:2460
const struct lb_decimal_t * price
Definition: longport.h:2444
int64_t timestamp
Definition: longport.h:2448
int64_t volume
Definition: longport.h:2452
Definition: longport.h:2488
int32_t issuer_id
Definition: longport.h:2492
const char * name_cn
Definition: longport.h:2496
const char * name_en
Definition: longport.h:2500
const char * name_hk
Definition: longport.h:2504
Definition: longport.h:3113
const struct lb_decimal_t * mm_factor
Definition: longport.h:3121
const struct lb_decimal_t * im_factor
Definition: longport.h:3117
const struct lb_decimal_t * fm_factor
Definition: longport.h:3125
Definition: longport.h:2546
const struct lb_date_t * half_trading_days
Definition: longport.h:2558
uintptr_t num_trading_days
Definition: longport.h:2554
uintptr_t num_half_trading_days
Definition: longport.h:2562
const struct lb_date_t * trading_days
Definition: longport.h:2550
Definition: longport.h:2528
enum lb_market_t market
Definition: longport.h:2532
const struct lb_trading_session_info_t * trade_sessions
Definition: longport.h:2536
uintptr_t num_trade_sessions
Definition: longport.h:2540
Definition: longport.h:2190
const struct lb_decimal_t * turnover
Definition: longport.h:2226
const struct lb_decimal_t * open
Definition: longport.h:2206
const struct lb_decimal_t * prev_close
Definition: longport.h:2202
struct lb_date_t expiry_date
Definition: longport.h:2242
enum lb_option_type_t contract_type
Definition: longport.h:2254
const struct lb_decimal_t * contract_multiplier
Definition: longport.h:2250
const struct lb_decimal_t * high
Definition: longport.h:2210
const char * underlying_symbol
Definition: longport.h:2270
const struct lb_decimal_t * low
Definition: longport.h:2214
const struct lb_decimal_t * historical_volatility
Definition: longport.h:2266
const struct lb_decimal_t * implied_volatility
Definition: longport.h:2234
int64_t timestamp
Definition: longport.h:2218
const struct lb_decimal_t * strike_price
Definition: longport.h:2246
int64_t volume
Definition: longport.h:2222
const char * symbol
Definition: longport.h:2194
enum lb_trade_status_t trade_status
Definition: longport.h:2230
int64_t open_interest
Definition: longport.h:2238
const struct lb_decimal_t * contract_size
Definition: longport.h:2258
const struct lb_decimal_t * last_done
Definition: longport.h:2198
enum lb_option_direction_t direction
Definition: longport.h:2262
Definition: longport.h:3186
uintptr_t num_items
Definition: longport.h:3202
const struct lb_decimal_t * total_amount
Definition: longport.h:3190
const struct lb_order_charge_item_t * items
Definition: longport.h:3198
const char * currency
Definition: longport.h:3194
Definition: longport.h:3142
const char * name
Definition: longport.h:3150
const char * currency
Definition: longport.h:3158
const char * code
Definition: longport.h:3146
const struct lb_decimal_t * amount
Definition: longport.h:3154
Definition: longport.h:3164
uintptr_t num_fees
Definition: longport.h:3180
const struct lb_order_charge_fee_t * fees
Definition: longport.h:3176
enum lb_charge_category_code_t code
Definition: longport.h:3168
const char * name
Definition: longport.h:3172
Definition: longport.h:3208
enum lb_outside_rth_t * outside_rth
Definition: longport.h:3308
enum lb_order_side_t side
Definition: longport.h:3244
const char * msg
Definition: longport.h:3264
const struct lb_decimal_t * price
Definition: longport.h:3232
const struct lb_decimal_t * deductions_amount
Definition: longport.h:3332
const int64_t * updated_at
Definition: longport.h:3280
enum lb_trigger_status_t * trigger_status
Definition: longport.h:3300
enum lb_commission_free_status_t free_status
Definition: longport.h:3316
int64_t quantity
Definition: longport.h:3224
const int64_t * trigger_at
Definition: longport.h:3284
enum lb_deduction_status_t platform_deducted_status
Definition: longport.h:3340
int64_t executed_quantity
Definition: longport.h:3228
const struct lb_date_t * expire_date
Definition: longport.h:3276
const char * stock_name
Definition: longport.h:3220
const struct lb_decimal_t * platform_deducted_amount
Definition: longport.h:3344
const struct lb_order_history_detail_t * history
Definition: longport.h:3352
enum lb_deduction_status_t deductions_status
Definition: longport.h:3328
const struct lb_decimal_t * trailing_percent
Definition: longport.h:3292
const struct lb_decimal_t * trigger_price
Definition: longport.h:3260
enum lb_order_tag_t tag
Definition: longport.h:3268
enum lb_time_in_force_type_t time_in_force
Definition: longport.h:3272
const char * remark
Definition: longport.h:3312
enum lb_order_type_t order_type
Definition: longport.h:3252
uintptr_t num_history
Definition: longport.h:3356
const char * free_currency
Definition: longport.h:3324
const char * deductions_currency
Definition: longport.h:3336
const struct lb_decimal_t * limit_offset
Definition: longport.h:3296
const char * platform_deducted_currency
Definition: longport.h:3348
const char * symbol
Definition: longport.h:3248
const char * currency
Definition: longport.h:3304
const struct lb_decimal_t * trailing_amount
Definition: longport.h:3288
const struct lb_decimal_t * executed_price
Definition: longport.h:3236
struct lb_order_charge_detail_t charge_detail
Definition: longport.h:3360
int64_t submitted_at
Definition: longport.h:3240
enum lb_order_status_t status
Definition: longport.h:3216
const struct lb_decimal_t * last_done
Definition: longport.h:3256
const struct lb_decimal_t * free_amount
Definition: longport.h:3320
const char * order_id
Definition: longport.h:3212
Definition: longport.h:3131
const char * msg
Definition: longport.h:3135
const struct lb_decimal_t * price
Definition: longport.h:3132
int64_t quantity
Definition: longport.h:3133
int64_t time
Definition: longport.h:3136
enum lb_order_status_t status
Definition: longport.h:3134
Definition: longport.h:2690
enum lb_outside_rth_t * outside_rth
Definition: longport.h:2790
enum lb_order_side_t side
Definition: longport.h:2726
const char * msg
Definition: longport.h:2746
const struct lb_decimal_t * price
Definition: longport.h:2714
const int64_t * updated_at
Definition: longport.h:2762
enum lb_trigger_status_t * trigger_status
Definition: longport.h:2782
int64_t quantity
Definition: longport.h:2706
const int64_t * trigger_at
Definition: longport.h:2766
int64_t executed_quantity
Definition: longport.h:2710
const struct lb_date_t * expire_date
Definition: longport.h:2758
const char * stock_name
Definition: longport.h:2702
const struct lb_decimal_t * trailing_percent
Definition: longport.h:2774
const struct lb_decimal_t * trigger_price
Definition: longport.h:2742
enum lb_order_tag_t tag
Definition: longport.h:2750
enum lb_time_in_force_type_t time_in_force
Definition: longport.h:2754
const char * remark
Definition: longport.h:2794
enum lb_order_type_t order_type
Definition: longport.h:2734
const struct lb_decimal_t * limit_offset
Definition: longport.h:2778
const char * symbol
Definition: longport.h:2730
const char * currency
Definition: longport.h:2786
const struct lb_decimal_t * trailing_amount
Definition: longport.h:2770
const struct lb_decimal_t * executed_price
Definition: longport.h:2718
int64_t submitted_at
Definition: longport.h:2722
enum lb_order_status_t status
Definition: longport.h:2698
const struct lb_decimal_t * last_done
Definition: longport.h:2738
const char * order_id
Definition: longport.h:2694
Definition: longport.h:2414
uintptr_t num_broker_ids
Definition: longport.h:2422
const int32_t * broker_ids
Definition: longport.h:2418
const char * name_cn
Definition: longport.h:2426
const char * name_en
Definition: longport.h:2430
const char * name_hk
Definition: longport.h:2434
Definition: longport.h:2098
const struct lb_decimal_t * turnover
Definition: longport.h:2114
const struct lb_decimal_t * prev_close
Definition: longport.h:2126
const struct lb_decimal_t * high
Definition: longport.h:2118
const struct lb_decimal_t * low
Definition: longport.h:2122
int64_t timestamp
Definition: longport.h:2106
int64_t volume
Definition: longport.h:2110
const struct lb_decimal_t * last_done
Definition: longport.h:2102
Definition: longport.h:1388
uintptr_t num_ask_brokers
Definition: longport.h:1400
const struct lb_brokers_t * bid_brokers
Definition: longport.h:1404
uintptr_t num_bid_brokers
Definition: longport.h:1408
const struct lb_brokers_t * ask_brokers
Definition: longport.h:1396
const char * symbol
Definition: longport.h:1392
Definition: longport.h:1535
bool is_confirmed
Definition: longport.h:1551
enum lb_period_t period
Definition: longport.h:1543
const char * symbol
Definition: longport.h:1539
struct lb_candlestick_t candlestick
Definition: longport.h:1547
Definition: longport.h:1340
uintptr_t num_bids
Definition: longport.h:1360
const struct lb_depth_t * asks
Definition: longport.h:1348
const struct lb_depth_t * bids
Definition: longport.h:1356
const char * symbol
Definition: longport.h:1344
uintptr_t num_asks
Definition: longport.h:1352
Definition: longport.h:1626
const char * account_no
Definition: longport.h:1714
enum lb_order_side_t side
Definition: longport.h:1630
const char * msg
Definition: longport.h:1686
enum lb_trigger_status_t * trigger_status
Definition: longport.h:1694
const int64_t * trigger_at
Definition: longport.h:1698
int64_t executed_quantity
Definition: longport.h:1654
const char * stock_name
Definition: longport.h:1634
const struct lb_decimal_t * trailing_percent
Definition: longport.h:1706
const struct lb_decimal_t * trigger_price
Definition: longport.h:1682
enum lb_order_tag_t tag
Definition: longport.h:1690
int64_t updated_at
Definition: longport.h:1678
int64_t submitted_quantity
Definition: longport.h:1638
const char * remark
Definition: longport.h:1726
enum lb_order_type_t order_type
Definition: longport.h:1646
const struct lb_decimal_t * limit_offset
Definition: longport.h:1710
const char * symbol
Definition: longport.h:1642
const char * currency
Definition: longport.h:1666
const struct lb_decimal_t * trailing_amount
Definition: longport.h:1702
const struct lb_decimal_t * executed_price
Definition: longport.h:1658
int64_t submitted_at
Definition: longport.h:1674
const struct lb_decimal_t * last_price
Definition: longport.h:1722
enum lb_order_status_t status
Definition: longport.h:1670
const struct lb_decimal_t * last_share
Definition: longport.h:1718
const struct lb_decimal_t * submitted_price
Definition: longport.h:1650
const char * order_id
Definition: longport.h:1662
Definition: longport.h:1260
const struct lb_decimal_t * turnover
Definition: longport.h:1292
const struct lb_decimal_t * open
Definition: longport.h:1272
enum lb_trade_session_t trade_session
Definition: longport.h:1300
const struct lb_decimal_t * high
Definition: longport.h:1276
const struct lb_decimal_t * low
Definition: longport.h:1280
int64_t timestamp
Definition: longport.h:1284
int64_t current_volume
Definition: longport.h:1304
int64_t volume
Definition: longport.h:1288
const char * symbol
Definition: longport.h:1264
enum lb_trade_status_t trade_status
Definition: longport.h:1296
const struct lb_decimal_t * current_turnover
Definition: longport.h:1308
const struct lb_decimal_t * last_done
Definition: longport.h:1268
Definition: longport.h:1479
uintptr_t num_trades
Definition: longport.h:1491
const struct lb_trade_t * trades
Definition: longport.h:1487
const char * symbol
Definition: longport.h:1483
Definition: longport.h:3656
const char * description
Definition: longport.h:3668
const char * name
Definition: longport.h:3664
int64_t end_at
Definition: longport.h:3676
int64_t start_at
Definition: longport.h:3672
const char * key
Definition: longport.h:3660
Definition: longport.h:2618
const struct lb_decimal_t * turnover
Definition: longport.h:2650
const struct lb_decimal_t * open
Definition: longport.h:2630
const struct lb_decimal_t * high
Definition: longport.h:2634
const struct lb_decimal_t * low
Definition: longport.h:2638
int64_t timestamp
Definition: longport.h:2642
int64_t volume
Definition: longport.h:2646
const char * symbol
Definition: longport.h:2622
enum lb_trade_status_t trade_status
Definition: longport.h:2654
const struct lb_decimal_t * last_done
Definition: longport.h:2626
Definition: longport.h:1832
const struct lb_decimal_t * price
Definition: longport.h:1844
int64_t quantity
Definition: longport.h:1840
const struct lb_decimal_t * trailing_percent
Definition: longport.h:1860
const struct lb_decimal_t * trigger_price
Definition: longport.h:1848
const char * remark
Definition: longport.h:1864
const struct lb_decimal_t * limit_offset
Definition: longport.h:1852
const struct lb_decimal_t * trailing_amount
Definition: longport.h:1856
const char * order_id
Definition: longport.h:1836
Definition: longport.h:2392
uintptr_t num_ask_brokers
Definition: longport.h:2400
const struct lb_brokers_t * bid_brokers
Definition: longport.h:2404
uintptr_t num_bid_brokers
Definition: longport.h:2408
const struct lb_brokers_t * ask_brokers
Definition: longport.h:2396
Definition: longport.h:3380
const struct lb_decimal_t * change_value
Definition: longport.h:3392
const struct lb_decimal_t * to_call_price
Definition: longport.h:3504
const struct lb_decimal_t * turnover
Definition: longport.h:3404
const struct lb_decimal_t * change_rate
Definition: longport.h:3396
const struct lb_decimal_t * five_day_change_rate
Definition: longport.h:3444
const struct lb_decimal_t * gamma
Definition: longport.h:3532
const struct lb_decimal_t * balance_point
Definition: longport.h:3520
const struct lb_decimal_t * leverage_ratio
Definition: longport.h:3512
const struct lb_decimal_t * delta
Definition: longport.h:3528
const struct lb_decimal_t * conversion_ratio
Definition: longport.h:3516
const int64_t * outstanding_qty
Definition: longport.h:3476
const struct lb_decimal_t * ytd_change_rate
Definition: longport.h:3408
const struct lb_decimal_t * premium
Definition: longport.h:3484
const struct lb_decimal_t * rho
Definition: longport.h:3544
const struct lb_decimal_t * itm_otm
Definition: longport.h:3488
const struct lb_date_t * expiry_date
Definition: longport.h:3460
const struct lb_decimal_t * vega
Definition: longport.h:3540
const struct lb_decimal_t * volume_ratio
Definition: longport.h:3428
const struct lb_decimal_t * half_year_change_rate
Definition: longport.h:3452
const struct lb_decimal_t * five_minutes_change_rate
Definition: longport.h:3456
const struct lb_decimal_t * pb_ratio
Definition: longport.h:3436
const struct lb_decimal_t * implied_volatility
Definition: longport.h:3492
const struct lb_decimal_t * pe_ttm_ratio
Definition: longport.h:3432
const struct lb_decimal_t * strike_price
Definition: longport.h:3464
const struct lb_decimal_t * upper_strike_price
Definition: longport.h:3468
const struct lb_decimal_t * dividend_ratio_ttm
Definition: longport.h:3440
const struct lb_decimal_t * effective_leverage
Definition: longport.h:3508
const struct lb_decimal_t * lower_strike_price
Definition: longport.h:3472
const struct lb_decimal_t * warrant_delta
Definition: longport.h:3496
const struct lb_decimal_t * capital_flow
Definition: longport.h:3420
const char * symbol
Definition: longport.h:3384
const struct lb_decimal_t * amplitude
Definition: longport.h:3424
const int64_t * volume
Definition: longport.h:3400
const struct lb_decimal_t * theta
Definition: longport.h:3536
const struct lb_decimal_t * total_market_value
Definition: longport.h:3416
const int64_t * open_interest
Definition: longport.h:3524
const struct lb_decimal_t * last_done
Definition: longport.h:3388
const struct lb_decimal_t * outstanding_ratio
Definition: longport.h:3480
const struct lb_decimal_t * call_price
Definition: longport.h:3500
const struct lb_decimal_t * turnover_rate
Definition: longport.h:3412
const struct lb_decimal_t * ten_day_change_rate
Definition: longport.h:3448
Definition: longport.h:2370
uintptr_t num_bids
Definition: longport.h:2386
const struct lb_depth_t * asks
Definition: longport.h:2374
const struct lb_depth_t * bids
Definition: longport.h:2382
uintptr_t num_asks
Definition: longport.h:2378
Definition: longport.h:2132
const struct lb_decimal_t * turnover
Definition: longport.h:2168
const struct lb_decimal_t * open
Definition: longport.h:2148
const struct lb_decimal_t * prev_close
Definition: longport.h:2144
const struct lb_prepost_quote_t * overnight_quote
Definition: longport.h:2184
const struct lb_decimal_t * high
Definition: longport.h:2152
const struct lb_decimal_t * low
Definition: longport.h:2156
int64_t timestamp
Definition: longport.h:2160
int64_t volume
Definition: longport.h:2164
const char * symbol
Definition: longport.h:2136
enum lb_trade_status_t trade_status
Definition: longport.h:2172
const struct lb_prepost_quote_t * pre_market_quote
Definition: longport.h:2176
const struct lb_prepost_quote_t * post_market_quote
Definition: longport.h:2180
const struct lb_decimal_t * last_done
Definition: longport.h:2140
Definition: longport.h:2028
const struct lb_decimal_t * dividend_yield
Definition: longport.h:2084
int64_t total_shares
Definition: longport.h:2060
int32_t lot_size
Definition: longport.h:2056
const struct lb_decimal_t * eps_ttm
Definition: longport.h:2076
uint8_t stock_derivatives
Definition: longport.h:2088
const struct lb_decimal_t * eps
Definition: longport.h:2072
const struct lb_decimal_t * bps
Definition: longport.h:2080
enum lb_security_board_t board
Definition: longport.h:2092
int64_t hk_shares
Definition: longport.h:2068
int64_t circulating_shares
Definition: longport.h:2064
const char * name_cn
Definition: longport.h:2036
const char * symbol
Definition: longport.h:2032
const char * currency
Definition: longport.h:2052
const char * exchange
Definition: longport.h:2048
const char * name_en
Definition: longport.h:2040
const char * name_hk
Definition: longport.h:2044
Definition: longport.h:2006
const char * name_cn
Definition: longport.h:2014
const char * symbol
Definition: longport.h:2010
const char * name_en
Definition: longport.h:2018
const char * name_hk
Definition: longport.h:2022
Definition: longport.h:3023
const struct lb_stock_position_t * positions
Definition: longport.h:3031
const char * account_channel
Definition: longport.h:3027
uintptr_t num_positions
Definition: longport.h:3035
Definition: longport.h:3041
uintptr_t num_channels
Definition: longport.h:3049
const struct lb_stock_position_channel_t * channels
Definition: longport.h:3045
Definition: longport.h:2984
int64_t quantity
Definition: longport.h:2996
const char * symbol_name
Definition: longport.h:2992
int64_t available_quantity
Definition: longport.h:3000
const char * symbol
Definition: longport.h:2988
const char * currency
Definition: longport.h:3004
const int64_t * init_quantity
Definition: longport.h:3017
enum lb_market_t market
Definition: longport.h:3013
const struct lb_decimal_t * cost_price
Definition: longport.h:3009
Definition: longport.h:2466
const struct lb_decimal_t * price
Definition: longport.h:2470
const char * call_symbol
Definition: longport.h:2474
const char * put_symbol
Definition: longport.h:2478
bool standard
Definition: longport.h:2482
Definition: longport.h:1870
enum lb_outside_rth_t * outside_rth
Definition: longport.h:1919
enum lb_order_side_t side
Definition: longport.h:1882
const struct lb_date_t * expire_date
Definition: longport.h:1915
const struct lb_decimal_t * trailing_percent
Definition: longport.h:1910
const struct lb_decimal_t * trigger_price
Definition: longport.h:1898
int64_t submitted_quantity
Definition: longport.h:1886
enum lb_time_in_force_type_t time_in_force
Definition: longport.h:1890
const char * remark
Definition: longport.h:1923
enum lb_order_type_t order_type
Definition: longport.h:1878
const struct lb_decimal_t * limit_offset
Definition: longport.h:1902
const char * symbol
Definition: longport.h:1874
const struct lb_decimal_t * trailing_amount
Definition: longport.h:1906
const struct lb_decimal_t * submitted_price
Definition: longport.h:1894
Definition: longport.h:3055
const char * order_id
Definition: longport.h:3059
Definition: longport.h:1996
uintptr_t num_candlesticks
Definition: longport.h:2000
uint8_t sub_types
Definition: longport.h:1998
enum lb_period_t * candlesticks
Definition: longport.h:1999
const char * symbol
Definition: longport.h:1997
Definition: longport.h:1564
uint8_t second
Definition: longport.h:1567
uint8_t minute
Definition: longport.h:1566
uint8_t hour
Definition: longport.h:1565
Definition: longport.h:1418
const struct lb_decimal_t * price
Definition: longport.h:1422
enum lb_trade_session_t trade_session
Definition: longport.h:1473
int64_t timestamp
Definition: longport.h:1430
enum lb_trade_direction_t direction
Definition: longport.h:1469
const char * trade_type
Definition: longport.h:1465
int64_t volume
Definition: longport.h:1426
Definition: longport.h:2510
enum lb_trade_session_t trade_session
Definition: longport.h:2522
struct lb_time_t end_time
Definition: longport.h:2518
struct lb_time_t begin_time
Definition: longport.h:2514
Definition: longport.h:1596
uintptr_t num_securities
Definition: longport.h:1616
const char *const * securities
Definition: longport.h:1612
uint32_t flags
Definition: longport.h:1600
const char * name
Definition: longport.h:1608
enum lb_securities_update_mode_t mode
Definition: longport.h:1620
int64_t id
Definition: longport.h:1604
Definition: longport.h:3550
const struct lb_decimal_t * change_value
Definition: longport.h:3574
const struct lb_decimal_t * to_call_price
Definition: longport.h:3630
const struct lb_decimal_t * turnover
Definition: longport.h:3582
const struct lb_decimal_t * change_rate
Definition: longport.h:3570
const struct lb_decimal_t * balance_point
Definition: longport.h:3646
const struct lb_decimal_t * leverage_ratio
Definition: longport.h:3638
struct lb_date_t expiry_date
Definition: longport.h:3586
const struct lb_decimal_t * delta
Definition: longport.h:3622
const struct lb_decimal_t * conversion_ratio
Definition: longport.h:3642
const struct lb_decimal_t * premium
Definition: longport.h:3610
enum lb_warrant_status_t status
Definition: longport.h:3650
const struct lb_decimal_t * itm_otm
Definition: longport.h:3614
const struct lb_decimal_t * implied_volatility
Definition: longport.h:3618
const char * name
Definition: longport.h:3562
const struct lb_decimal_t * strike_price
Definition: longport.h:3590
const struct lb_decimal_t * upper_strike_price
Definition: longport.h:3594
enum lb_warrant_type_t warrant_type
Definition: longport.h:3558
const struct lb_decimal_t * effective_leverage
Definition: longport.h:3634
const struct lb_decimal_t * lower_strike_price
Definition: longport.h:3598
int64_t volume
Definition: longport.h:3578
const char * symbol
Definition: longport.h:3554
int64_t outstanding_qty
Definition: longport.h:3602
const struct lb_decimal_t * last_done
Definition: longport.h:3566
const struct lb_decimal_t * outstanding_ratio
Definition: longport.h:3606
const struct lb_decimal_t * call_price
Definition: longport.h:3626
Definition: longport.h:2276
const struct lb_decimal_t * turnover
Definition: longport.h:2312
const struct lb_decimal_t * open
Definition: longport.h:2292
const struct lb_decimal_t * prev_close
Definition: longport.h:2288
struct lb_date_t expiry_date
Definition: longport.h:2324
const struct lb_decimal_t * conversion_ratio
Definition: longport.h:2340
const struct lb_decimal_t * high
Definition: longport.h:2296
const char * underlying_symbol
Definition: longport.h:2364
const struct lb_decimal_t * low
Definition: longport.h:2300
enum lb_warrant_type_t category
Definition: longport.h:2344
const struct lb_decimal_t * implied_volatility
Definition: longport.h:2320
int64_t timestamp
Definition: longport.h:2304
struct lb_date_t last_trade_date
Definition: longport.h:2328
const struct lb_decimal_t * strike_price
Definition: longport.h:2348
const struct lb_decimal_t * upper_strike_price
Definition: longport.h:2352
const struct lb_decimal_t * lower_strike_price
Definition: longport.h:2356
int64_t volume
Definition: longport.h:2308
const char * symbol
Definition: longport.h:2280
enum lb_trade_status_t trade_status
Definition: longport.h:2316
int64_t outstanding_quantity
Definition: longport.h:2336
const struct lb_decimal_t * last_done
Definition: longport.h:2284
const struct lb_decimal_t * outstanding_ratio
Definition: longport.h:2332
const struct lb_decimal_t * call_price
Definition: longport.h:2360
Definition: longport.h:3091
uintptr_t num_securities
Definition: longport.h:3107
const char * name
Definition: longport.h:3099
int64_t id
Definition: longport.h:3095
const struct lb_watchlist_security_t * securities
Definition: longport.h:3103
Definition: longport.h:3065
int64_t watched_at
Definition: longport.h:3085
const char * name
Definition: longport.h:3077
const char * symbol
Definition: longport.h:3069
const struct lb_decimal_t * watched_price
Definition: longport.h:3081
enum lb_market_t market
Definition: longport.h:3073