老师股价上穿布林线中轨,然后下穿跌破,二次站上中轨这句
这中间,有时间间隔的限制吗
具体在几分钟周期上?
上穿布林线中轨,然后下穿跌破,二次站上中轨
上面的话中“二次站上中轨“是什么意思?
上穿和下穿是什么样的关系
variable:num=0;
MID: MA(CLOSE,M);//布林中轨
UPPER: MID + K*STD(CLOSE,M);//布林上轨
LOWER: MID - K*STD(CLOSE,M);//布林下轨
if num = 0 and cross(c,MID) then num:=1;
if num = 1 and cross(c,MID) then num:=2;
variable:num=0;
MID: MA(CLOSE,M);//布林中轨
UPPER: MID + K*STD(CLOSE,M);//布林上轨
LOWER: MID - K*STD(CLOSE,M);//布林下轨
if num = 0 and cross(c,MID) then num:=1;
if num = 1 and cross(MID,c) then num:=2;
if num = 3 and cross(c,MID) then num:=3;
前面有误,应该这么写