作者:文華財(cái)經(jīng) 來(lái)源:cxh99.com 發(fā)布時(shí)間:2019年04月25日
: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(251, 251, 251); text-decoration-style: initial; text-decoration-color: initial;" />K:=SMA(RSV,3,1);//RSV的移動(dòng)平均值: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(251, 251, 251); text-decoration-style: initial; text-decoration-color: initial;" />D:=SMA(K,3,1);//K的移動(dòng)平均值: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(251, 251, 251); text-decoration-style: initial; text-decoration-color: initial;" />J:=3*K-2*D;: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(251, 251, 251); text-decoration-style: initial; text-decoration-color: initial;" />: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(251, 251, 251); text-decoration-style: initial; text-decoration-color: initial;" />J>50,?BPK;: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(251, 251, 251); text-decoration-style: initial; text-decoration-color: initial;" />J<50?,SPK;: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(251, 251, 251); text-decoration-style: initial; text-decoration-color: initial;" />AUTOFILTER;:="" -webkit-text-stroke-width:="" 0px;="" white-space:="" word-break:="" break-all;="" word-spacing:="" word-wrap:="" break-word;"="">開(kāi)倉(cāng)前面3根總體的最高最低價(jià)
?
網(wǎng)友回復(fù):?參考:
RSV:=(CLOSE-LLV(LOW,9))/(HHV(HIGH,9)-LLV(LOW,9))*100;//收盤價(jià)與N周期最低值做差,N周期最高值與N周期最低值做差,兩差之間做比值。K:=SMA(RSV,3,1);//RSV的移動(dòng)平均值D:=SMA(K,3,1);//K的移動(dòng)平均值J:=3*K-2*D;
J>50, BPK;J<50 ,SPK;C<REF(LV(L,3),BARSBK),SP;C>REF(HV(H,3),BARSSK),BP;ISLASTKLINE,CLOSEOUT;CLOSEKLINE(1,10);AUTOFILTER;
?
網(wǎng)友回復(fù):
?我再5分鐘和15分鐘上使用模型。然后如果我想改成,滿足條件就馬上出發(fā),不等K線走完。我用了? 函數(shù) MULTSIG_MIN(0,0,99);?
但提示,不能和CLOSEKLINE(1,10);一起用這個(gè)怎么解決?收盤前平倉(cāng)還要的,有別的寫法嗎? ??