C/C++ www.gszb.com 股票公式指标网提供 Code复制内容到剪贴板
- Var2:=REF(LOW,1);
- Var3:=SMA(ABS(LOW-Var2),3,1)/SMA(MAX(LOW-Var2,0),3,1)*100;
- Var4:=EMA(IF(CLOSE*1.3,Var3*10,Var3/10),3);
- Var5:=LLV(LOW,30);
- Var6:=HHV(Var4,30);
- Var7:=IF(MA(CLOSE,58),1,0);
- Var8:=EMA(IF(LOW<=Var5,(Var4+Var6*2)/2,0),3)/618*Var7;
- Var9:=IF(Var8>100,100,Var8);
- 吸筹:STICKLINE(Var9>-120,0,Var9,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;
-