指標公式源碼分析及使用說明參考:
?
?
源碼:
cxh2:=REF(LOW,1);
cxh3:=SMA(ABS(LOW-cxh2),3,1)/SMA(MAX(LOW-cxh2,0),3,1)*100;
cxh4:=EMA(IF(CLOSE*1.3,cxh3*10,cxh3/10),3);
cxh5:=LLV(LOW,30);
cxh6:=HHV(cxh4,30);
cxh7:=IF(MA(CLOSE,58),1,0);
cxh8:=EMA(IF(LOW<=cxh5,(cxh4+cxh6*2)/2,0),3)/618*cxh7;
cxh9:=IF(cxh8>100,100,cxh8);
吸籌:STICKLINE(cxh9>-120,0,cxh9,6,1),colorf00ff0;
LC:=REF(CLOSE,1);
RSI:SMA(MAX(CLOSE-LC,0),4.1,1)/SMA(ABS(CLOSE-LC),4.1,1)*100,COLORFF937F;
黃買:filter((ref(close,2)<close and rsi<25),7),colorYELLOW;
stickline(黃買,0,18,10,1),colorYELLOW;
黃賣:=filter((ref(close,2)>close and rsi>80),7);
stickline(黃賣,100,82,10,1),colorYELLOW;
紅買:filter(CROSS(RSI,11),7),colorred;
stickline(紅買,0,12,6,1),colorred;
紅賣:=filter(CROSS(89,RSI),7);
stickline(紅賣,100,88,6,1),colorred;
綠買:filter(CROSS(rsi,20),7),color00ff00;
stickline(綠買,0,6,6,1),color00ff00;
綠賣:=filter(CROSS(80,rsi),7);
stickline(綠賣,100,94,6,1),color00ff00;
?
公式導入教程: 【通達信公式源碼導入方法教程】 【同花順公式源碼導入方法教程】 【大智慧新一代公式源碼導入方法教程】
?