老师请问一下,以下代码为啥切换到日线图后,把低周期的线显示出来了,怎样才能避免日线图上显示低周期的线?
//10分钟图上看60分钟或者日线
M:=IF(DATAPERIOD=5,6,if(DATAPERIOD=18 or (DATAPERIOD=13 and DATATYPEMORE(2)=10),5,0));
HH1:CALLSTOCK(STRCAT(MARKETLABEL,STKLABEL),VTHIGH,M,-1);
LL1:CALLSTOCK(STRCAT(MARKETLABEL,STKLABEL),VTLOW,M,-1);
HH3:CALLSTOCK(STRCAT(MARKETLABEL,STKLABEL),VTHIGH,M+1,-1);
LL3:CALLSTOCK(STRCAT(MARKETLABEL,STKLABEL),VTLOW,M+1,-1);
这个只能判断下M不等于0,比如:
if M<>0 then HH1:CALLSTOCK(STRCAT(MARKETLABEL,STKLABEL),VTHIGH,M,-1);
if M<>0 then LL1:CALLSTOCK(STRCAT(MARKETLABEL,STKLABEL),VTLOW,M,-1);
if M<>0 then HH3:CALLSTOCK(STRCAT(MARKETLABEL,STKLABEL),VTHIGH,M+1,-1);
if M<>0 then LL3:CALLSTOCK(STRCAT(MARKETLABEL,STKLABEL),VTLOW,M+1,-1);