: 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的移动平均值: 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的移动平均值: 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;"="">开仓前面3根总体的最高最低价
网友回复: 参考:
RSV:=(CLOSE-LLV(LOW,9))/(HHV(HIGH,9)-LLV(LOW,9))*100;//收盘价与N周期最低值做差,N周期最高值与N周期最低值做差,两差之间做比值。K:=SMA(RSV,3,1);//RSV的移动平均值D:=SMA(K,3,1);//K的移动平均值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;
网友回复:
我再5分钟和15分钟上使用模型。然后如果我想改成,满足条件就马上出发,不等K线走完。我用了 函数 MULTSIG_MIN(0,0,99);
但提示,不能和CLOSEKLINE(1,10);一起用这个怎么解决?收盘前平仓还要的,有别的写法吗?