input string comm0X="--------①EA运行参数设置---------";//--------EA运行参数设置---------
input bool 是否显示信息框=false;
extern color 信息显示颜色=clrYellow;
enum EAmoshi { 全自动运行=1,半自动运行=2,手动运行=3 };
input EAmoshi EA运行模式=3;
enum openmoshi {双向都开=1,只开BUY多=2,只开SELL空=3};
input openmoshi 开单模式=1;
input int ordermagic=2017888; //魔术码
extern string orderComment="交易精灵面版"; //订单注释
extern double 初始下单量=0.01;
double BUY单量=初始下单量;
double SELL单量=初始下单量;
extern double 止损点数=0;
extern double 止盈点数=0;
|