相關標簽:牧野童鬼變臉指標公式 、
鬼變臉主圖指標公式 、
機構k線指標公式 、
經典機構k線指標公式 、
童牧野鬼變臉指標 、
通達信鬼變臉指標 、
鬼變臉指標哪些軟件有 、
62歲劉曉慶整容變臉史 、
川劇變臉的原理揭秘 、
變臉是被誰賣給日本 、
sensitivy:=-c;
direction:=c;
towero:=o;
towerc:=c;
fc:=c;
i:=2;
while i<=datacount do begin
if towerc[i]>towero[i] and not(between(sensitivy[i],towero[i],towerc[i])) then
direction[i]:=1;
else if towerc[i]<towero[i] and not(between(sensitivy[i],towero[i],towerc[i])) then
direction[i]:=0;
else direction[i]:=direction[i-1];
if not(between(sensitivy[i-1],towero[i-1],towerc[i-1])) then begin
towero[i]:=towerc[i-1];towerc[i]:=fc[i];
sensitivy[i]:=towero[i-1];
end else begin
towero[i]:=towerc[i-1];towerc[i]:=fc[i];
sensitivy[i]:=sensitivy[i-1];
end;
i:=i+1;
end;今開盤:TOWERO,LINETHICK0;
今收盤:TOWERC,LINETHICK0;
敏感位:sensitivy,LINETHICK0;{上面的三句是我加的朋友們不喜歡可以自己刪除}tj:=between(sensitivy,towero,towerc);
stickline(tj,max(towero,towerc),sensitivy,7,0), colorred;
stickline(tj,min(towero,towerc),sensitivy,7,0), colorgreen;
stickline(sensitivy<towerc and not(tj),towero,towerc,7,0), colorred;
stickline(sensitivy>towerc and not(tj),towero,towerc,7,0), colorgreen;
stickline((towerc=towero or sensitivy=towerc) and direction=0,towero,towerc,7,0),colorgreen;
stickline((towerc=towero or sensitivy=towerc) and direction=1,towero,towerc,7,0),colorred;
{
程序化交易 www.kzuj.com.cn }