流金歲月指標 公式 源碼[其他軟件公式]
指標公式代碼分析:
?
該指標是一個基于股票的技術分析工具,用于預測股票價格的走勢和判斷買賣信號。下面是對該指標源碼的簡要編程思路和指標使用說明:
編程思路:
1. 首先定義了一系列變量,包括rsi、sma、ema等,用于計算指標的中間結果。
2. 根據給定的公式計算各個中間結果,并將其賦值給相應的變量。
3. 使用stickline函數繪制持倉和空倉的線條,使用fillrgn函數繪制流金和歲月之間的填充區域,使用drawicon函數繪制符號圖標。
4. 根據不同條件使用不同的顏色和線條粗細來繪制相應的圖形。
5. 使用explain和explainex函數輸出相關信息,例如市場平均成本、主力平均成本等。
指標使用說明:
1. 該指標包含了多個子指標,如RSV、MACD等,可以根據實際需求選擇使用。
2. 可以通過觀察持倉和空倉的線條以及流金和歲月的填充區域來判斷股票的買賣信號。持倉表示建議買入,空倉表示建議賣出。
3. MACD指標用于判斷股票的短期和長期趨勢,當MACD線從負值變為正值時,表示買入信號;當MACD線從正值變為負值時,表示賣出信號。
4. 可以觀察神奇線、半年線等指標的變化來判斷股票價格的漲跌趨勢和買賣信號。
5. 通過輸出的各種信息和指標數值,可以幫助分析股票的市場情況和預測價格的走勢。
需要注意的是,以上只是對該指標源碼的簡要分析和說明,具體的使用方法還需要根據實際情況和個人需求進行調整和應用。在使用任何股票分析工具時,都需要結合自己的投資經驗和市場情況進行準確分析和判斷。
?
源碼:
?
?
rsv:=(c-llv(l,7))/(hhv(h,7)-llv(l,7))*100;
rsv1:=(c-llv(l,38))/(hhv(h,38)-llv(l,38))*100;
流金:sma(rsv1,5,1),colorff;
歲月:sma(流金,10,1),color66cc33;
fillrgn(流金<=歲月,流金,歲月),color669933;
a:=(3*c+l+o+h)/6;
b:=(20*a+19*ref(a,1)+18*ref(a,2)+17*ref(a,3)+16*ref(a,4)+15*ref(a,5)+14*ref(a,6)+13*ref(a,7)+12*ref(a,8)+11*ref(a,9)+10*ref(a,10)+9*ref(a,11)+8*ref(a,12)+7*ref(a,13)+6*ref(a,14)+5*ref(a,15)+4*ref(a,16)+3*ref(a,17)+2*ref(a,18)+ref(a,20))/210;
d:=ma(b,10);
持倉:stickline(b>d,103,107,6,1),Linethick2,colorff;
空倉:stickline(b<d,103,107,6,1),Linethick2,colorff00;
CXH2q:=ma(c,80)-ma(c,13)/3;
神奇線:=ma((c-CXH2q)/CXH2q,1);
xa:=ema(神奇線,12)*0.7;
xb:=ema(神奇線,3);
底部區域:if(llv(xb-xa,12)>0,0,-5),Linethick2,colorff00;
diff:=(ema(c,17)-ema(c,73))*100;
dea:=ema(diff,73);
macd:=2*(diff-dea);
地利:if(diff<=0 and dea<=diff and ref(diff,1)<ref(dea,1),10,0),stick,color5c32d4;
買入:=stickline(diff<=0 and dea<=diff and ref(diff,1)<ref(dea,1),0,3,40,0);
買入:stickline(diff<=0 and dea<=diff and ref(diff,1)<ref(dea,1),3,6,30,0),Linethick2,colorffff;
stickline(diff<=0 and dea<=diff and ref(diff,1)<ref(dea,1),6,20,5,0),colorffff;
diff:=(ema(c,17)-ema(c,73))*100;
dea:=ema(diff,73);
macd:=2*(diff-dea);
if(diff<=0 and dea<=diff and ref(diff,1)<ref(dea,1),10,0),colorff0000;
賣出:=stickline(diff>=0 and dea>=diff and ref(diff,1)>ref(dea,1),97,100,40,0);
天時:stickline(diff>=0 and dea>=diff and ref(diff,1)>ref(dea,1),94,97,30,0),stick,color5c32d4;
stickline(diff>=0 and dea>=diff and ref(diff,1)>ref(dea,1),80,94,5,0),colorffff;
CXH0:=date>970101;
CXH1:=(c-ref(c,1))/ref(c,1)*100;
CXH2:=(indexc-ref(indexc,1))/ref(indexc,1)*100;
CXH3:=ema(sum(CXH1,10),3);
CXH4:=ema(sum(CXH2,10),3);
CXH5:=(CXH3-CXH4)*CXH0;
drawicon(CXH5<-20 and filter(CXH5>ref(CXH5,2),7),-6,4),colorff;
vertline(CXH5<-20 and filter(CXH5>ref(CXH5,2),7));
drawtext(CXH5<-20 and filter(CXH5>ref(CXH5,2),7),-10,'---參考價'),colorff;
drawnumber(CXH5<-20 and filter(CXH5>ref(CXH5,2),7),-15,ref(c,1)*1.015,2),colorffffff;
drawicon(CXH5>20 and filter(CXH5<ref(CXH5,2),7),17,5),colorffffff;
vertline(CXH5>20 and filter(CXH5<ref(CXH5,2),7));
drawtext(CXH5>20 and filter(CXH5<ref(CXH5,2),7),-10,'---參考價'),colorff00;
drawnumber(CXH5>20 and filter(CXH5<ref(CXH5,2),7),-15,ref(c,1)*0.985,2),colorff00;
stickline(CXH5<-20 and filter(CXH5>ref(CXH5,2),7),0,-4,15,0);
stickline(CXH5>20 and filter(CXH5<ref(CXH5,2),7),0,-4,10,0),colorff;
a1:=ma(c,13);
zx:=ref(a1,13/2+1);
b1:=cross(c,zx);
s1:=cross(zx,c);
drawicon(cross(c,zx),-3,12),colorff00;
drawicon(c>zx and ref(c,1)>ref(zx,1),-3,10);
drawicon(c<zx and ref(c,1)>ref(zx,1),-3,11);
vvv:=9999;
lgl:=c-ref(ma(c,20),11);
wr1:=if(ema(c,5)/ema(ema(c,9),16)<=0.85 and c/ref(c,1)>0.905 and c/ref(c,1)<1.05 and v/capital*100<5,50,0);
wr2:=-(100*(hhv(h,34)-c)/(hhv(h,34)-llv(l,34)))+100*lgl;
wr3:=-(100*(hhv(h,50)-c)/(hhv(h,50)-llv(l,50)))+100;
bias1:=-(100*(hhv(h,70)-c)/(hhv(h,70)-llv(l,70)))+100*lgl;
bias2:=((c-ma(c,34))/ma(c,34)*100+10)*5;
bias3:=((c-ma(c,50))/ma(c,50)*100+10)*5;
sx:=((c-ma(c,70))/ma(c,70)*100+10)*5;
s1:=(wr2+wr3+bias1+bias2+bias3+sx)/6*lgl;
xc1:=ema(s1,3);
ccc:=abs(bias2-sx);
zjz:=(s1+ccc)/2;
lxl:=(-1)*(ema(100*(1-winner(c)),1)-50)+50;
jbj:=lxl+zjz;
ma3:=if(wr1>0 and jbj<0,200,0)*lgl;
c0:=if(zjz<0 and c=llv(c,5) and c/ref(c,1)>0.905 and c/ref(c,1)<1.05 and v/capital*100<5,-50,0);
bot:=if(jbj<0 and c0=-50,100,0)*lgl;
hsl:=ma(c,3);
cxc:=ref(c,2)*0.865;
vmc:=ref(c,13)*0.772;
v93:=min(cxc,vmc);
v90:=100*v/capital*lgl;
半年線:=if((c-v93)/c<3/100 and sum(v90,5)/5<1.8,1,0);
股道賣出價預測:=if(半年線>0 and (c0<0 or wr1>0),10,0);
if(股道賣出價預測>0,30,0);
天涯:if(ma3>0 and bot>0 and sum(v/capital*100,5)/5<1 or 半年線>0 and ref(c,1)/ref(c,2)>0.902 or (ma3>0 and bot>0 and sum(v/capital*100,5)/5<1 or 半年線>0) and (c0<0 or wr1>0) and 股道賣出價預測<10,20,0),Linethick2,colorff;
股道買入價預測:=(ma3>0 and bot>0 and sum(v/capital*100,5)/5<1 or 半年線>0) and (c0<0 or wr1>0);
多空1:=ma3>0 and bot>0 and sum(v/capital*100,5)/5<1 or 半年線>0 and ref(c,1)/ref(c,2)>0.902;
海角:if(股道買入價預測 or 多空1,10,0),Linethick2,colorff;
CXH2q:=ma(c,80)-ma(c,13)/3;
神奇線:=ma((c-CXH2q)/CXH2q,1);
天神:if(cross(神奇線,0) and l/ref(h,1)<1.012 and (c-ref(c,2))/c>0.06,15,0),Linethick2,colorffcc33;
a:=ema(winner(c),10);
b:=ema(winner(c),34);
CXH1:=ma(v,5)>ma(v,60);
地神:if(a<0.15 and abs(a-b)<0.05 and cross(a,b) and CXH1,1,0)*-10,Linethick2,colorffcc33;
介入:if(a>0.9 and c<ma(c,5),1,0)*-10,Linethick2,colorff;
多空2:=ema(c,148);
多空3:=ema(c,250);
出貨:explain(c>=多空2,'股價在半年線之上'),Linethick2,colorff00;
explain(c>=多空3,'股價在年線之上 '),colorffff;
explain(c<多空2,'股價在半年線之下 '),colorffff;
explain(c<多空3,'股價在年線之下 '),colorffff00;
explain(多空2>=ref(多空2,1),'半年線趨勢向上'),colorffff00;
explain(多空3>=ref(多空3,1),'年線趨勢向上 '),colorffff;
explain(多空2<ref(多空2,1),'半年線趨勢向下 '),colorffff;
explain(多空3<ref(多空3,1),'年線趨勢向下 '),colorffff00;
tr1:=c*2.5/100+c;
hd:=c-c*2.5/100;
explainex(cost(50),'市場平均成本:',cost(50),2,0),colorffff00;
explainex(cost(4),'主力平均成本:',cost(4),2,0),colorffff;
explainex(cost(30),'控盤平均成本:',cost(30),2,0),colorff;
explainex(cost(75),'拉升平均成本:',cost(75),2,0),colorff;
explainex(cost(95),'頂部平均成本:',cost(95),2,0),colorffff;
explainex(cost(0.05),'底部平均成本:',cost(0.05),2,0),colorffff;
explainex(tr1,'股道賣出價預測:',tr1,2,0),colorffff;
explainex(hd,'股道買入價預測:',hd,2,0),color99ff;
explainex(1,'獲利盤比例=',winner(c)*100,2,0),color99ff;explain(dmm<ld and dmp>ma(dmp,4),'場內資金有運作行為'),colorffff00;
explain(dmm>ld and dmp<ma(dmp,4),'多空雙方激烈爭奪中'),colorffff;
explain(dmm>ld and dmp>ma(dmp,4),'場外資金介入(或出局)意愿強烈'),colorffff;
pdi:=sum(max(max(h-l,abs(h-ref(c,1))),abs(l-ref(c,1))),14);
mdi:=h-ref(h,1);
adx:=ref(l,1)-l;
adxr:=sum(if(mdi>0 and mdi>adx,mdi,0),14);
typ:=sum(if(adx>0 and adx>mdi,adx,0),14);
cci:=adxr*100/pdi;
wr:=typ*100/pdi;
mtm:=ma(abs(wr-cci)/(wr+cci)*100,6);
mtmma:=(mtm+ref(mtm,6))/2;
explain(cross(cci,wr),'PDI線從下向上突破MDI線,顯示有新多頭進場,為買進信號'),color99ff;
explain(cross(wr,cci),'PDI線從上向下跌破MDI線,顯示有新空頭進場,為賣出信號'),colorff00;
explain(mtm>ref(mtm,1),'ADX值持續高于前一日,行情將維持原趨勢'),colorffff00;
explain(mtm<ref(mtm,1) and mtm<20,'ADX值遞減,降到20以下,且橫向行進時,市場氣氛
?
公式導入教程: 【通達信公式源碼導入方法教程】 【同花順公式源碼導入方法教程】 【大智慧新一代公式源碼導入方法教程】
?
有思路,想編寫各種指標公式,交易模型,選股公式,還原公式的朋友
可聯系技術人員 QQ: 262069696 或微信:cxhjy888 進行 有償收費 編寫!(注:由于人數限制,QQ或微信請選擇方便的一個聯系我們就行,加好友時請簡單備注下您的需求,否則無法通過。謝謝您!)
(注:由于人數限制,QQ或微信請選擇方便的一個聯系我們就行,加好友時請簡單備注下您的需求,否則無法通過。謝謝您!)
相關文章
-
沒有相關內容