var1:=ema(ema(close,9),9); 控盤:=(var1-ref(var1,1))/ref(var1,1)*1000; stickline(控盤<0,控盤,0,1,0),colorwhite; a10:=cross(控盤,0); 無莊控盤:if(控盤<0,控盤,0),colorwhite,linethick1; 開始控盤:if(a10,5,0),linethick2,coloryellow; stickline(控盤>ref(控盤,1) and 控盤>0,控盤,0,1,0),colorred; 有莊控盤:if(控盤>ref(控盤,1) and 控盤>0,控盤,0),colorred,linethick1; var2:=100*winner(close*0.95); stickline(var2>50 and cost(85)<close and 控盤>0,控盤,0,1,0),colorff00ff; 高度控盤:if(var2>50 and cost(85)<close and 控盤>0,控盤,0),colorff00ff,linethick1; stickline(控盤<ref(控盤,1) and 控盤>0,控盤,0,1,0),color00ff00; 控盤趨弱:if(控盤<ref(控盤,1) and 控盤>0,控盤,0),color00ff00,linethick1; |
|