-
aa:=close/ref(close,1)>;
bb:=low/ref(high,1)>1 and low/ref(high,1)<;
cc:=close2;
**:aa and bb and cc and dd;
ee:=close/ref(close,1)< and ref(open,1)/ref(close,1)<1 and ref(close,2)/ref(close,3)<;
ff:=ref(high,2)>hhv(high,12);
gg:=ref(close,2)/ref(close,3)<1 and ref(close,1)/ref(close,2)>1 and ref(low,1)/ref(low,2)<1; xh1:=ee and ff and gg;
hh:=close/(ref(close,1)+ref(open,1))<
xh2:=ee and hh;
kk:=amount>ref(amount,1) and amount>ref(amount,2) and ref(amount,2)xh3:=ee and kk;
賣出:xh1 或 xh2 或 xh3;
這很好,但是你的指標不好,賣出很不準確,利潤太小。
-
這封信的這個公式可以修改成乙個大智慧的公式。 沒關係。
下圖為同大信選股結果的持倉圖和大智慧選股持倉圖。
-
把同大新配方修改成大智慧配方是可以的,是用來選股的嗎?
-
我給你買了,測試通過了:
a:= "sh000001$close";
強度:mA(C a*10000,n);
強度1:mA(C A*10000,N1);
-
顯示無效是什麼意思? 我嘗試了通過的公式。
您是否無法在大智慧中顯示公式或無效,如螢幕截圖所示?
公式本身是正確的,而你截圖中的無效是因為你在除錯過程中沒有選擇執行它,所以即使是第一步獲取證書的**價格也是無效的。
另外,在除錯過程中,“強力1”無法得到有效值,無論什麼移動平均線都能得到乙個值(“強弱”是個例外,因為你的n取1,也就是根本就沒有移動平均線,呵呵)。
-
改動如下:(大智慧傳了,若有幫助,回答,謝謝)。
x:=c>=,120) and ma(c,120)>=ref(ma(c,120),1);
y:=ma(c,40)>=ref(ma(c,40),1);z:=ma(c,60)>ma(c,120);
wr:=100*(hhv(high,10)-close)/(hhv(high,10)-llv(low,10));
a:=wr-80;
aa:=max(a,0);
b:=(c/ma(c,60))-1;
cc:=1-b;
d:=max(aa*z,0);
stickline(d>,0,d,1,0),coloryellow;
e:=ma(c,2)-ma(c,10);
f:=ma(e,2);
stickline(e>f and y and ref(d,1)>=9,0,d+9,1,0),colorred;
stickline(ma(c,40)>=ref(ma(c,40),1),0,1,15,0),colorlimagenta;stickline(ma(c,40)f and y and ref(d,1)>=9,0,d),coloryellow,linethick1;
主攻:if(e>f and y and ref(d,1)>=9,d+9,0),colorred,linethick2;
戰鬥階段:if(馬(c,40)>=ref(馬(c,40),1),1,0),colorff5500,linethick1;
休止階段:if(馬(c,40)>=ref(馬(c,40),1),0,1),colorgreen,linethick1;
30,colorblack;
如果不想看到任何行,請將 linethick1 函式的最後乙個值更改為 0)。