datastruct.h
来自「股票搜索程序,可自动搜索符合一定条件的股票。这里的条件主要包括前N天的成交量、价」· C头文件 代码 · 共 36 行
H
36 行
#if !defined(__DataStruct_H_)
#define __DataStruct_H_
#define SIGNAL_TOTAL 9
#define SIGNAL_JZLS 1
#define SIGNAL_GWFL 2
#define LEN_STOCKDATA 40
#define MAX_PRICE 999999999
#define NUM_DAY_JZLS 3
#define TYPE_JZLS 0
#define TYPE_DWFL 1
#define TYPE_GWFL 2
#define TYPE_MAX 3
#define PARAM_MAX 12
struct TagJZLS{
float Amount21Low;
float Amount21Up;
float Amount32Low;
float Amount32Up;
float Price21Low;
float Price21Up;
float Price32Low;
float Price32Up;
float Amount3InMaxLow;
float Amount3InMaxUp;
float Price3InSectLow;
float Price3InSectUp;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?