1樓:匿名使用者
引數還是macd原來的引數,保持不變,你自己重新輸入。
新公式1 如下:
dif:ema(close,short)-ema(close,long);
dea:ema(dif,mid);
macd:(dif-dea)*2,colorstick;
stickline(dif>dea,macd,0,1,0),color0000ff;
stickline(difdea,macd,0,2,0),color0000ff;
stickline(dif
stickline(dif=dea,macd,0,2,0),color000000;。
請高手編寫個通達信的簡單公式:macd紅綠柱子背離
2樓:匿名使用者
macd頂底背離(同時包含kdj背離,rsi背離)
公式如下:
diff:ema(close,12) - ema(close,26);
dea:ema(diff,9);
macd:2*(diff-dea),colorstick;
a1:=barslast(ref(cross(diff,dea),1));
b1:=ref(c,a1+1)>c and ref(diff,a1+1)c and ref("kdj.k"(9,3,3),a2+1)<"kdj.
k"(9,3,3) and cross("kdj.k"(9,3,3),"kdj.d"(9,3,3));
a3:=barslast(ref(cross("rsi.rsi1"(6,12,24),"rsi.rsi2"(6,12,24)),1));
b3:=ref(c,a3+1)>c and ref("rsi.rsi1"(6,12,24),a3+1)<"rsi.
rsi1"(6,12,24) and cross("rsi.rsi1"(6,12,24),"rsi.rsi2"(6,12,24));
c1:=barslast(ref(cross(dea,diff),1));
d1:=ref(c,c1+1)diff and cross(dea,diff);
c2:=barslast(ref(cross("kdj.d"(9,3,3),"kdj.k"(9,3,3)),1));
d2:=ref(c,c2+1)"kdj.k"(9,3,3) and cross("kdj.d"(9,3,3),"kdj.k"(9,3,3));
c3:=barslast(ref(cross("rsi.rsi2"(6,12,24),"rsi.rsi1"(6,12,24)),1));
d3:=ref(c,c3+1)"rsi.rsi1"(6,12,24) and cross("rsi.rsi2"(6,12,24),"rsi.rsi1"(6,12,24));
macd底背:if(b1>0,-0.1,0),colorred,pointdot;
kdj底背:if(b2>0,-0.1,0),colorff00ff,pointdot;
rsi底背:if(b3>0,-0.1,0),coloryellow,pointdot;
macd頂背:if(d1>0,0.1,0),color00ff00,pointdot;
kdj頂背:if(d2>0,0.1,0),colorffcc66,pointdot;
rsi頂背:if(d3>0,0.1,0),colorwhite,pointdot;
stickline(b1>0,-0.1,0,2,0),colorred;
stickline(b2>0,-0.1,0,2,0),colorff00ff;
stickline(b3>0,-0.1,0,2,0),coloryellow;
stickline(d1>0,0.1,0,2,0),color00ff00;
stickline(d2>0,0.1,0,2,0),colorffcc66;
stickline(d3>0,0.1,0,2,0),colorwhite;
怎麼把通達信軟體macd指標藍色的柱狀線變為綠色?
3樓:匿名使用者
dif:ema(close,short)-ema(close,long);
dea:ema(dif,mid);
macd:(dif-dea)*2,nodraw;
stickline(macd>=0,macd,0,0,0),colorred;
stickline(macd<0,macd,0,0,0),colorgreen;
用上面的換掉系統自帶的macd公式內容另存下就行!
4樓:道覓霜昊乾
引數還是macd原來的引數,保持不變,自己重新輸入。
新公式1
如下:dif:ema(close,short)-ema(close,long);
dea:ema(dif,mid);
macd:(dif-dea)*2,colorstick;
stickline(dif>dea,macd,0,1,0),color0000ff;
stickline(difdea,macd,0,2,0),color0000ff;
stickline(dif
stickline(dif=dea,macd,0,2,0),color000000;
把以上滿意的任一個公式直接貼上到新公式中,或覆蓋原來的macd公式也行,就能達到預期要求。
請高手編寫通達信macd綠柱變短或持續變短、紅柱變長或持續變長的選股公式
5樓:匿名使用者
dif:=ema(close,12)-ema(close,26);
dea:=ema(dif,9);
macd:=(dif-dea)*2;
every(macd>ref(macd,1),持續週期);
持續週期在引數欄設定,最小為1,最大為100,預設為5,可以自己調整
求通達信macd紅柱開始縮短的公式
6樓:匿名使用者
dif:ema(close,short)-ema(close,long);
dea:ema(dif,mid);
macd:(dif-dea)*2,colorstick;
縮短:ref(macd,1)>0 and macd<=0 and macd不能是將要變綠柱,而是一變綠條件成立,「縮短」值為1
如果是要將要變就顯示的那隻能引用未來函式,這樣就沒有實際參考價值了。
7樓:匿名使用者
cross("macd.macd",0) or cross("macd.macd"+("macd.macd"-ref("macd.macd",1)),0) ;
請求高手編寫通達信macd綠柱變短或持續變短、紅柱變長或持續變長的選股公式
8樓:匿名使用者
dif:ema(close,12)-ema(close,26);
dea:ema(dif,9);
macd:(dif-dea)*2,colorstick;
stickline(macd>=ref(macd,1),0,macd,0.0,0),colorred;
stickline(macd<=ref(macd,1),0,macd,0.0,0),colorgreen;
怎麼把通達信軟體macd指標藍色的柱狀線變為綠色
9樓:遊樂裝置
引數還是macd原來的引數,保持不變,自己重新輸入。
新公式1 如下:
dif:ema(close,short)-ema(close,long);
dea:ema(dif,mid);
macd:(dif-dea)*2,colorstick;
stickline(dif>dea,macd,0,1,0),color0000ff;
stickline(difdea,macd,0,2,0),color0000ff;
stickline(dif
stickline(dif=dea,macd,0,2,0),color000000;
把以上滿意的任一個公式直接貼上到新公式中,或覆蓋原來的macd公式也行,就能達到預期要求。
10樓:匿名使用者
dif:ema(close,short)-ema(close,long);
dea:ema(dif,mid);
macd:(dif-dea)*2,nodraw;
stickline(macd>=0,macd,0,0,0),colorred;
stickline(macd<0,macd,0,0,0),colorgreen;
用上面的換掉系統自帶的macd公式內容另存下就行!
求助通達信或大智慧公式編寫,請幫忙!通達信或大智慧公式編寫 我想在K線圖上,我任意選取2個K線,電腦能把這2個K線的最高點和最低點
公式二0 0.5 aa111 mod c 100,8 aa222 mod c 100,6 stickline v 0,0,0.3,4,0 colorwhite stickline v 0,0.3,0.55,4,0 colorligray drawnumber v 0,0.2,intpart aa22...
關於通達信麻煩高手幫我寫通達信的選股公式條件1股價昨天收盤價在60日線以下,今天
dif ema close,12 ema close,26 dea ema dif,9 tj1 dif dea tj2 ref c,1 ma c,60 and c ma c,60 tj3 ma c,60 ma c,120 xg tj1 1 and tj2 1 and tj3 1 條件dao1 ref...
通達信這是什么指標公式,通達信這是什麼指標公式?
通達信軟體指標都可以隨意的新增!名字還可以根據自己的意願隨意改!你說的這個可能是紅藍帶 也可能是凌波微步!指標就是指標!只是一個參照物!我的指標是我自己新增的!適合自己的就是最好的!這圖中的指標明顯就不是系統自帶的這一看就是使用者自編的指標公式,不可能在系統中找到,照著模仿做一個不會就完了。主圖指標...