| | |
| | | class THSActionUtil |
| | | { |
| | | private: |
| | | static void addGP(string code); |
| | | |
| | | //批量添加股票 |
| | | static void betchAddGP(HWND addDialog,list<string> codeList); |
| | | |
| | |
| | | |
| | | static HWND getTradeSimpleDelegateWindow(); |
| | | |
| | | //获取短线精灵窗口 |
| | | static HWND getDXJLWindow(); |
| | | |
| | | static HWND getDXJLMainWindow(); |
| | | |
| | | |
| | | //检测环境 |
| | | static bool checkEnv(); |
| | |
| | | static void openSecondScreen(); |
| | | static void openThirdScreen(); |
| | | static void openTradeSuccessScreen(); |
| | | static void openDXJLScreen(); |
| | | static bool addGP(string code, MatOcrFun ocrFun); |
| | | |
| | | //设置股票 |
| | | static bool setGP(std::string quickCode, list<std::string> codeList,RecognitionManager* recognitionManager); |
| | | static bool setGP(std::string quickCode, list<std::string> codeList,RecognitionManager* recognitionManager,MatOcrFun ocrFun); |
| | | //识别股票代码 |
| | | static std::list<GPCodeArea> recognitionGPArea(cv::Mat img); |
| | | |
| | |
| | | //更新行情主站 |
| | | static void updateMainSite(); |
| | | |
| | | //筛选L2行情金额 |
| | | static bool screenL2Money(HWND l2_hwnd,string money, MatOcrFun ocrFun); |
| | | |
| | | }; |
| | | |