(20)、放量上攻
a:=(c-ref(c,1))/ref(c,1)〉=(n/100);
sum(vol,n1)/capital〉=(n2/100) and count(vol〉ref(vol,1),n3 )=n3 and count(a,n3)=n3;
完整含義:每日股價漲幅均大于n%,n1日內(nèi)累計換手率大于n2%,并且成交量連續(xù)在n3日內(nèi)放大。
(21)、溫和放量上攻
股價小幅上揚
a1:=close/ref(close,1);
a2:=a1〉1 and a1〈1.03;
成交量小幅上揚
b1:=vol/ref(vol,1);
b2:=b1〉1 and b1〈2;
c1:=ma(vol,n)/capital〈0.05;
count(a2 and b2,n)/n〉0.6 and c1;
完整公式為:
a1:=close/ref(close,1);
a2:=a1〉1 and a1〈1.03;
b1:=vol/ref(vol,1);
b2:=b1〉1 and b1〈2;
c1:=ma(vol,n)/capital〈0.05;
count(a2 and b2,n)/n〉0.6 and c1;
注:公式分為股價小幅上揚和成交量小幅上揚兩個部分,請在指標編寫時注意其結(jié)構(gòu)。
(22)、突然放量
vol〉ref(hhv(vol,n),1*m;
注:當前成交量高于n個周期中最大成交量的m倍。
(23)、平臺整理
count(close,0)〉n and (hhv(close,n)-llv(close,n))/llv(close,n)〈=(n1/100);
注:count(close,0)〉n為平臺整理n個周期的設定。(hhv(close,n)-llv(close,n))/llv(close,n)〈=(n1/100)為平臺整理幅度n1%的設定。
(24)、突破長期盤整
ref(((hhv(h,n)-llv(l,n))/llv(l,n))/llv(l,n)),1)〈=(n1/100) and c〉=ref(hhv(h,n),1) and barscount(c)〉n;
注:前n日在上下n1%的幅度內(nèi)整理:ref(((hhv(h,n)-llv(l,n))/llv(l,n))/llv(l,n)),1)〈=(n1/100);
今日突破:c〉=ref(hhv(h,n),1)。
(25)、階段強勢股
a:=sum(if(date-n=0,indexc,0),0);
b:=sum(if(date-n1=0,indexc,0)0);
e:=sum(if(date-n=0,c,0),0);
f:=sum(if(date-n1=0,c,0),0);
((f-e)/e)〉((b-a)/a);
注:該公式求的是n日-n1日之間漲幅高于大盤的股票。n、n1參數(shù)的表達格式為yymmdd,注意在2000年前的表達為年份的后兩位,例如1999年為99,從2000年開始以100依次向后累加,例如2001年9月14日為1010914,indexc函數(shù)表示同期大盤的收盤價,該函數(shù)對分筆成交分析周期無效。
(26)、階段弱勢股
a:=sum(if(date=n,indexc,0),0);
b:=sum(if(date=n1,indexc,0)0);
e:=sum(if(date=n,c,0),0);
f:=sum(if(date=n1,c,0),0);
((f-e)/e)〈((b-a)/a);
注:該公式求的是n日-n1日之間漲幅低于大盤的股票。n、n1參數(shù)的表達格式為yymmdd,注意在2000年前的表達為年份的后兩位,例如1999年為99,從2000年開始以100依次向后累加,例如2001年9月14日為1010914,indexc函數(shù)表示同期大盤的收盤價,該函數(shù)對分筆成交分析周期無效。
(27)、大盤同步
count((c〉o and indexc〉indexo) or (c〈o and indexc〈indexo),n)/n〉m/100;
注:含義為n周期中與大盤走勢相同(同收陰線或同收陽線)的例超過m%。此處的o不是數(shù)字的零,而是開盤價open的首寫字母o。
(28)、n日內(nèi)強勢股
a:=(c-ref(o,n))/ref(o,n);
b:=(indexc-ref(indexo,n))/ref(indexo,n);
a〉b and a/b〉=m;
注:n日內(nèi)個股漲幅大于等于大盤漲幅的m倍。 (南方財富網(wǎng)SOUTHMONEY.COM)