QQ1数值变化,为何fal没有反应出来呢?

此主题相关图片如下:1319.jpg
[此贴子已经被作者于2013/7/13 16:11:13编辑过]
举个例子if time=091600 then qq:=0;
if time=151400 then qq:=0;
if time=131500 then qq:=1;
if time=131600 then qq:=0;
FAL:EXIST(QQ=0&REF(QQ,1)=1,15),nodraw;
一分钟模式下运行,应该在131600之后看到fal数值是1.
你先检查看看TIME时间里,有没有131500这个时间段再说
if time>091600 then qq:=0;
if time>151400 then qq:=0;
if time>131500 then qq:=1;
if time>131600 then qq:=0;
FAL:EXIST(QQ=0&REF(QQ,1)=1,15),nodraw;
[此贴子已经被作者于2013/7/14 20:17:27编辑过]
if time>091600 then
qq:=0;
if time>151400 then
qq:=0;
if time>131500 then
qq:=1;
if time>131600 then
qq:=0;
FAL:EXIST(QQ=0&REF(QQ,1)=1,15),nodraw;
什么原因我不说了,我建议你这么改完以后,使用单步跟踪功能,好好看看程序的执行逻辑