| | |
| | | |
| | | |
| | | // 获取自动撤卖模式 |
| | | static int get_auto_cancel_sell_mode(); |
| | | static int get_auto_cancel_sell_mode(string code); |
| | | |
| | | // 设置自动撤卖模式 |
| | | static void set_auto_cancel_sell_mode(int mode); |
| | | static void set_auto_cancel_sell_mode(string code, int mode); |
| | | |
| | | // 获取是否买板块独苗 |
| | | static int get_buy_unique_block_mode(); |
| | |
| | | //同步L1订阅代码 |
| | | static string sync_l1_subscript_codes(); |
| | | |
| | | //同步扫入辨识度代码 |
| | | static string sync_radical_buy_special_codes(); |
| | | |
| | | //获取系统日志 |
| | | static string list_system_log(int start_index, int count); |
| | | |
| | |
| | | static string get_buy1_info(string code); |
| | | |
| | | // 设置每个代码可买的金额 |
| | | static void set_buy_money_and_count(int mormalCount, string normalMoneyJson,int radicalCount, string radicalMoneyJson); |
| | | static void set_buy_money_and_count(int mormalCount, string normalMoneyJson,int radicalCount, string radicalMoneyJson, int default_buy_money); |
| | | |
| | | // 获取买入设置 |
| | | static string get_buy_money_and_count(); |
| | |
| | | |
| | | // 获取今日已经更新的K线的数据 |
| | | static string get_today_updated_history_k_bars_count(); |
| | | |
| | | // 获取买入下单设置 |
| | | static string get_place_order_settings(); |
| | | |
| | | // 买入下单参数设置 |
| | | static string set_place_order_settings(string radical_buy_data); |
| | | |
| | | // 隔夜单排1 |
| | | static string get_buy_open_limit_up_codes(); |
| | | |
| | | static string set_buy_open_limit_up_codes(list<string> codes); |
| | | |
| | | // 获取代码同板块历史涨停数量 |
| | | static string get_same_block_limit_up_codes_count(list<string> codes); |
| | | |
| | | // 获取成交队列 |
| | | static string get_code_deal_queue(string code, int min_money); |
| | | |
| | | //测试下单 |
| | | static string test_place_order(string code); |
| | | |
| | | |
| | | }; |
| | | |