英国 美国 香港 日本 瑞士
贵金属投资品牌
你当前所在页面: 大田环球首页 > 新闻资讯 > 投资知识 > 大智慧选股公式(一)

大智慧选股公式(一)

关键词:大智慧选股公式

大智慧选股公式能够为股票投资者带来很大的益处。它不但能做一般意义上的买入条件选股,也可以做卖出条件选股,因为大智慧选股公式能够衡量“买入”选股的成功率。以下内容分三个小篇幅来说明。本节为第一部分的内容。

1.30个交易日内,股价跌幅达到一半的股票:

xg:(hhv(c,30)-c)/hhv(c,30)>0.5;

 

2,今天的量   是5天平均的 2倍以上

xg:v>ma(v,5)*2;

缩量

vol/ma(vol,10)<0.3;

 

3,两天内,累计下跌等于或超过20%选股.

xg:(ref(c,2)-c)/c>0.2;

 

4,股价是25天以来新低.

xg:c<ref(llv(c,25),1);

 

5,选股:EXPMA 5日与10日金叉 并且第二天的收盘价在EXPMA的5日线以上.

cross(ref(ema(c,5),1),ref(ema(c,10),1)) and c>ema(c,5);

 

6,请编买入公式:

1. 将BIAS指标的参数设置为24日,将KD指标的参数设置为9;3;3。

2. BIAS指标要小于-6,这只是确认该股超跌的初选条件。

3. KD指标产生黄金交叉,K线上穿D线。

4. KD交叉同时,KD指标中的D值要小于16。

 

BIAS3 :=(CLOSE-MA(CLOSE,24))/MA(CLOSE,24)*100,colorff00ff;

RSV:=(CLOSE-LLV(LOW,9))/(HHV(HIGH,9)-LLV(LOW,9))*100;

K:=SMA(RSV,3,1),COLORWHITE;

D:=SMA(K,3,1),COLORYELLOW;

xg:BIAS3<-6 and cross(k,d) and d<16;

 

7,要求是量大、换手率达到3左右,涨幅>7个点。

xg:v/capital*100>3 and (c/ref(c,1)>1.07;

 

8,个股分时图上都有一条黄线,叫做均价线

a/capital*100;

 

9,”阴转阳”的公式(也就是昨天收阴线,今天收阳线)

xg:ref(c,1)<ref(o,1) and c>o;

 

10,股价回抽20日均线选股公式

xg:ref(c,1)>ma(c,20) and cross(ma(c,20),c);

 

 

 

11,一根大阳线,至少有5个点以上,再连着出现二根振幅不大于5的十字星或是小K线

xg:(ref(c,3)-ref(c,4))/ref(c,3)>0.05 and count((h-l)/l<0.05,2)=2;

 

12,行情信息里的“涨幅”的原码

(c-ref(c,1))/c*100;

 

13,kdj的J从上向下穿越O轴发出信号

RSV:=(CLOSE-LLV(LOW,9))/(HHV(HIGH,9)-LLV(LOW,9))*100;

K:=SMA(RSV,3,1),COLORWHITE;

D:=SMA(K,3,1),COLORYELLOW;

J:=3*K-2*D,COLORFF00FF;

xg:cross(0,j);

 

14,股价4天中有两天在10日线上

count(c>ma(c,10),4)=2;

 

15,选出10天内出现了涨停的个股

count(c/ref(c,1)>1.1,10)>0;

又:

今涨停:=C/REF(C,1)>1.09;

选股:count(今涨停,n);

 

16,一阳上穿10,20,30日线,量能是前一天3倍。

xg:cross(c,ma(c,10)) and cross(c,ma(c,20)) and cross(c,ma(c,30)) and v>ref(v,1)*3;

 

17,共三根K线,第一根K线为阴线;第二根K线为阴线线,最高价低于第一根K线,最低价高于第一根K线;第三根K线阴阳不限,最高价低于第二根K线,最低价高于第二根K线。满足后发出信号~

w1:=ref(c,2)<ref(o,2);

w2:=ref(h,2)>ref(h,1) and ref(l,2)<ref(l,1);

w3:=ref(h,1)>h and ref(l,1)<l;

xg:w1 and w2 and w3;

 

18, 选出今日成交量大于昨日成交量一成的股票。

xg:v>ref(v,1)*1.1;

 

19, 连续5天,当日的5日均线减前一天的5日均线差值小于1.

count((ma(c,5)-ref(ma(c,5),1))<1,5)=5;

 

20,股价上穿5周均线:

xg:cross(c,ma(c,5));

注意:选股时用周线

 

21,上穿30日均线的公式

xg:cross(c,ma(c,30));

 

22,两笔阴线中间夹着一根阳线或数根K线,其中两笔阴线最低点相等

xg:ref(l,2)=l;

 

23,量比大于1 同时换手大于2的公式

xg:v/ref(v,1)>1 and AMOUNT/CAPITAL*100>2;

 

24,换手:VOL*100/CAPITAL;

周期换手:SUM(换手,10);

 

25,流通盘小于4000万 的选股公式

xg:CAPITAL/100<4000;

 

26,涨停开盘跌停收盘选股

xg:h/ref(c,1)>1.1 and ref(c,1)/l>1.1;

 

 

27,当天开盘价与收盘价相等的选股公式

xg:c=o;

 

28,5日均线向上 流通盘小于5000万 换手率大于3的选股公式

lt:CAPITAL/100<5000;

换手:=VOL*100/CAPITAL<3;

w1:ma(c,5)>ref(ma(c,5),1);

xg:lt and 换手 and w1;

 

29,收下影线

xg:c>l;

 

30, o=l就没有下引线了,那就:

xg:c>l and o>l;

 

31,当日收盘下穿5日均价

xg:cross(ma(c,5),c);

 

32,最低价小于前一日的最低价但收盘后为阳线。

xg:l<ref(l,1) and c>o;

 

33,30日内到本日收盘价下跌20%的公式

xg:hhv(c,30)/c>1.2;

 

34,选周线跳空缺口的个股。

xg:HIGH<REF(LOW,1) OR

LOW>REF(HIGH,1);

周期选周线

 

35,30日均线走平或走高的个股

xg:ma(c,30)>ref(ma(c,30),1);

 

36,连续4天的收盘价格波动幅度在3%之内连续走平或向上

count(abs(c-ref(c,1)/ref(c,1))<0.03 and c>ref(c,1),3)=3;

 

37,下影线长于上影线

(c-l)>(h-c);

 

38, 收盘价+收盘价的10%

(c+c*0.1);

 

39,今天高开的公式

c>o;

 

40,今天的量大于等于昨天量的2倍,股价上涨

xg:v>ref(v,1)*2 and c>ref(c,1);

 

41,今天的量小于昨天量的2倍以上,股价上涨

xg:v<ref(v,1)*2 and c>ref(c,1);

 

42,大部分股票跌到43日均线时就会反弹,如果在43日均线附近买入,短线成功率占90%以上,即时选出还差几分钱就跌到43日均线的股票。

xg:abs(c-ma(c,43))/ma(c,43)<0.01;

 

43,{选出每天换手5%-15%之间的股票}

Var1:=100*VOL/CAPITAL;

w1:=var1>5;

w2:=var1<15;

xg:w1 and w2;

 

44,换手率10天80%以上的选股公式

sum(VOL/CAPITAL*100,10)>80;

 

45,60个交易日内,涨幅大于9.9%(涨停)的天数

count(c/ref(c,1)>1.099,60);

 

46,昨天跌幅大于3%,今天开盘高开2%以上的选股公式。

xg:ref(c,1)/ref(c,2)<0.97 and o/ref(c,1)>1.02;

 


本文来源: 大田环球贵金属

猜你喜欢:菜鸟不用愁!5分钟动画让您认识黄金投资!!

贵金属投资网

Risk Warning

Trading bullion and financial instruments carries significant risks and may not be suitable for all investors, requiring careful consideration of investment objectives, experience, and risk tolerance. Key risks include market volatility, leverage risks that can amplify gains or losses, liquidity issues that may prevent executing trades at desired prices, and technical failures in online trading systems. Prices fluctuate unpredictably, and past performance does not guarantee future results. CIDT Global Bullion Limited provides general market commentary but does not offer investment advice and is not liable for any losses incurred from reliance on its information, which may change without notice.


Jurisdiction Disclaimer

CIDT Global Bullion Limited's services are subject to local regulations and may not be available in all jurisdictions. Users are responsible for ensuring compliance with their local laws. Services are not provided in regions where they are prohibited by law, under international sanctions, or require licensing that the company does not hold. By using the platform, users confirm they are not in a restricted jurisdiction and accept full responsibility for legal compliance. The company reserves the right to decline or terminate services in restricted areas without prior notice.

QQ客服 在线客服 微信客服