买入卖出指标,有买卖价格提示,箱体支撑,趋势明确,好用的指标。
drawgbklast(c>0,strip(rgb(120,120,110),rgb(100,100,100),1));
上涨值:=ma((h+ref(l,1))/2,3);
买进高点:=ma((h+ref(h,1))/2,3);
var1:=((h+l+c)/3)*2-l;
突破买入值:=ma(var1,3);
下跌值:=ma((ref(h,1)+l)/2,3);
卖出低点:=ma((ref(l,1)+l)/2,3);
var2:=((h+l+c)/3)*2-h;
突破卖出值:=ma(var2,3);
次日卖出点:=(上涨值+买进高点+突破买入值+h)/4;
次日买入点:=(下跌值+卖出低点+突破卖出值+l)/4;
均价:=(2*c+l+h/4);//www.goodgongshi.com
买入价:if(均价/ref(均价,1)>1,次日买入点*1.01,次日买入点),colorff00ff;
卖出价:if(均价/ref(均价,1)>1,次日卖出点*1.01,次日卖出点),colorffff00;
箱顶:ma(ref(hhv(c,25),1),2),colorffffff,linethick2;
箱底:ma(ref(llv(c,25),1),2),color3737ff,linethick2;
中线:(箱顶 + 箱底)/2,color00ffff;
ed:=(-0.4*ref(c,4)-0.4*ref(c,3)-1.1*ref(c,2)+0.9*ref(c,1)+2*c);
rsv:=(sma(ed,4,1)-llv(l,17))/(hhv(h,17)-llv(l,17))*100;
k:=sma(rsv,2,1);
d:=sma(k,3,1);
j:=2*k-1*d;
tj:=close>open or close=open and close>ref(close,1);
stickline(tj,low,high,1,1),color0000f2;
stickline(tj,open,close,10,0),color000097;
stickline(tj,open,close,8,0),color0000b5;
stickline(tj,open,close,4,0),color0000f2;//红升
stickline(not(tj),high,low,1,1),color00f200;
stickline(not(tj),close,open,10,0),color009700;
stickline(not(tj),close,open,8,0),color00b500;
stickline(not(tj),close,open,4,0),color00f200;//绿降
立桩显:=if(amount=1,vol*240/fromopen/ref(vol,1)-1,vol/ref(vol,1)-1);
t12:=立桩显>=1;
a1:=min(o,c);
b1:=abs(o-c);
lc:=ref(close,1);
rsi:=((sma(max((close - lc),0),3,1) / sma(abs((close - lc)),3,1)) * 100);
ff:=ema(close,3);
ma15:=ema(close,21);
stickline(cross(ff,ma15),a1,a1+b1/2,10,0),colorb7005b;
stickline(cross(ff,ma15),a1,a1+b1/2,8,0),colore10071;
stickline(cross(ff,ma15),a1,a1+b1/2,4,0),colorfb00fb;//粉底背
stickline(cross(88,rsi),a1+b1,a1+b1/2,10,0),colora5a5a5;
stickline(cross(88,rsi),a1+b1,a1+b1/2,8,0),colord2d2d2;
stickline(cross(88,rsi),a1+b1,a1+b1/2,4,0),colorf0f0f0;//白顶背
ma13:=ma(close,13);
x1:=(c+l+h)/3;
bb13:=atan(ema(x1,13)-ref(ema(x1,13),1))*3.1416*10;
ema8:=ema(c,8);
a1:=min(o,c);
b1:=abs(o-c);
t1:=filter(bb13>1 and ema(x1,13)>ref(ema(x1,8),1),10);
stickline(t1 and t12,a1+b1/3,a1+b1*2/3,10,0),color804040;
stickline(t1 and t12,a1+b1/3,a1+b1*2/3,8,0),color9d4f4f;
stickline(t1 and t12,a1+b1/3,a1+b1*2/3,2,0),colord3a9a9;//浅色45度升
f:=100*(c-ref(c,1))/ref(c,1);
p1:=if(c<ref(o,1) and f<0,1,0);
p2:=if(c<ref(o,2) and f<0,1,0);
stickline(p1=0 and ref(p1,1)=1 and p2=0 and ref(p2,1)=1,h,l,1,1),colorf9007c;
stickline(p1=0 and ref(p1,1)=1 and p2=0 and ref(p2,1)=1,open,close,10,0),colorb00058;
stickline(p1=0 and ref(p1,1)=1 and p2=0 and ref(p2,1)=1,open,close,8,0),colorce0067;
stickline(p1=0 and ref(p1,1)=1 and p2=0 and ref(p2,1)=1,open,close,4,0),colorea00ea;//紫色底
stickline(p1=1 and ref(p1,1)=0 and p2=1 and ref(p2,1)=0,low,high,1,1),colorf0a300;
stickline(p1=1 and ref(p1,1)=0 and p2=1 and ref(p2,1)=0,open,close,10,0),color976600;
stickline(p1=1 and ref(p1,1)=0 and p2=1 and ref(p2,1)=0,open,close,8,0),colorc48400;
stickline(p1=1 and ref(p1,1)=0 and p2=1 and ref(p2,1)=0,open,close,4,0),colorf0a300;//
aa:=ref(c,3)>ref(o,3) and ref(c,3)>ref(c,4);
bb:=ref(c,2)<ref(o,2) and ref(c,1)<ref(o,1);
cc:=c>o and c>ref(c,3) and h>ref(h,3);
跳二阴:=aa and bb and cc,color004ff2;
stickline(跳二阴,c ,o,10,0),color0037aa;
stickline(跳二阴,c ,o,8,0),color0042ca;
stickline(跳二阴,c ,o,4,0),color004ff2;
bdgd:=cross(0.8,h=hhv(h,4));
gdsj:=barslast(bdgd)+1;
波峰:=ref(h,gdsj),color00ff00,pointdot;
bddd:=cross(0.8,l=llv(l,4));
ddsj:=barslast(bddd)+1;
波谷:=ref(l,ddsj),colorff00ff,pointdot;
stickline(gdsj<=4,波峰,波峰,4,0),colorffffff,linethick01;
stickline(ddsj<=4,波谷,波谷,4,0),color00caca,linethick01;
上一指标公式:买卖均差值指标公式详解 同花顺差值
下一指标公式:SB指标公式详解 同花顺指标
☉ 好公式网发布的指标公式主要用于软件技术面分析,仅供参考,勿用于实际操作,据此操作风险自负!
☉ 解压密码:www.goodgongshi.com 就是好公式网域名,希望大家看清楚,切勿输错。
☉ tnc和tni格式指标公式,仅可以用通达信软件引入使用,例如可以用通达信软件引入使用指标公式;
☉ tne格式指标公式,仅可以用通达信软件公式编辑器5.0版导入,高版本兼容低版本;
☉ fnc格式指标公式,可以用大智慧软件新一代高速行情分析系统股票软件使用,少部分可以用分析家软件引入使用;
☉ alg格式指标公式,仅仅可以用飞狐交易师软件引入使用;exp格式指标公式,仅可以用大智慧经典版软件引入使用;
☉ hxf格式指标公式,仅可以用同花顺软件引入使用。
☉ 如果您发现下载软件链接错误,请联系管理员报告错误。
☉ 好公式网欢迎各位网友帮忙宣传转发本站网址,有您的支持,我们会做得更好!
☉ 本文买卖33指标公式详解 同花顺买卖仅供学习研究。