admin
2025-04-08 5c9991be21f57781573f04961ec511ac2938ea3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#pragma once
#include <wx/wx.h>
#include <list>
enum MsgTypeEnum {
    MSG_TYPE_ERROR,
    MSG_TYPE_WARNING,
    MSG_TYPE_INFO
};
 
struct TradeQueue {
    wxString num;
    int type;
};
 
 
// Î¯ÍÐÐÅÏ¢
struct DelegateInfo {
    int index;
    wxString id;
    wxString code;
    wxString codeName;
    
    wxString buy1_money;
    int big_num_count;
    wxString big_num_money;
    int not_deal_big_num_count_pre;// Ã»³É½»Ç°´óµ¥
    int not_deal_total_big_count_after;// Ã»³É½»ºó´óµ¥
    wxString not_deal_big_num_money_pre;// Ã»³É½»Ç°´óµ¥
    wxString not_deal_big_num_money_after;// Ã»³É½»ºó´óµ¥
    int left_count; // ×ܹ²Ê£Óà±ÊÊý
    wxString left_money;// ×ܹ²Ê£Óà½ð¶î
    float volume_rate;// Á¿±È
    bool pay_attention;// ÊÇ·ñÐèҪעÒâ
    float trade_progress_percent;//³É½»½ø¶È±ÈÀý
    float limit_up_price;//ÕÇÍ£¼Û
    bool is_near_big_order; // ÊÇ·ñ¿¿½ü´óµ¥
    wxString block;// °å¿é
    wxString limit_up_time; // 
    std::list<TradeQueue> tradeQueueList;
    wxString zyltgb;
    int mode;// Ïµ¥Ä£Ê½£¬ 3-ɨÈëϵ¥
    wxString l_down_cancel_rate;// Lϳ·µ¥±ÈÀý
    wxString expire_rate;
};