admin
2024-10-18 8ea6d363df77de2dca288397da8d4f9c3d3a5c4d
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
45
46
47
48
#pragma once
#include <afxstr.h>
#include<list>
using namespace std;
struct SellRule
{
    CString id_;
    CString code;
    int buy1_volume;
    //Âò1¼Û¸ñ
    CString buy1_price;
    //ÂôÁ¿
    int sell_volume;
    //Âô¼Û¸ñÀàÐÍ
    int sell_price_type;
    CString create_time;
    int excuted;
    CString day;
    CString end_time;
    // 0-Âò 1-Âò³· 2-Âô 3-Âô³·
    int type;
};
 
struct Buy1Info {
    int volume;
    double price;
};
 
 
struct TimeMoney {
    CString time;
    int money;
    int count;
};
 
struct BuyDataSettings
{
    int normalCount;
    list<TimeMoney> normalMoneyList;
    int radicalCount;
    list<TimeMoney> radicalMoneyList;
};
 
 
struct RadicalBuyBlockInfo {
    CString blockName;
    int count;
};