커뮤니티
부탁합니다
2014-10-01 08:34:08
146
글번호 78977
오후장 1시반 이후 주가 및 거래량 급등 종목 수식 부탁합니다
상한가 종목은 제외 바랍니다.
1시반 이후 종가까지 거래량이 이전 거래량 누계보다 크고
당일 저가가 아니라 1시반 이후 종가까지 주가의 저가와 종가를 대비하여
5% 이상인 종목 수식 부탁합니다
일봉에서 종목 검색식이 안되면 분봉 검색식 부탁합니다
답변 1
예스스탁 예스스탁 답변
2014-10-01 14:09:57
안녕하세요
예스스탁입니다.
조건에 시간이 들어가면 일봉으로는 가능하지 않습니다.
분봉에서 검색하셔야 합니다.
분봉주기에서 당일 데이터가 모두 있어야 하므로
5분봉 정도에서 검색하시고 검색에 필요한 최소기간은 넉넉히
200이상 지정하시고 검색하시기 바랍니다.
var : LL(0),VV(0),Prevv(0);
var : 상한가(0), UpLimit(0);
var : up1(0), up2(0), up3(0), up4(0), up5(0),up6(0),Up7(0);
if date >= 19981207 then {
if date < 20050328 && CodeCategory() == 2 then
UpLimit = (BP[0] * 1.12);
Else
UpLimit = (BP[0] * 1.15);
if CodeCategory() == 2 then {
if date >= 20030721 then {
up1 = int(UpLimit/100+0.00001)*100;
up2 = int(UpLimit/100+0.00001)*100;
up3 = int(UpLimit/100+0.00001)*100;
up4 = int(UpLimit/50+0.00001)*50;
up5 = int(UpLimit/10+0.00001)*10;
up6 = int(UpLimit/5+0.00001)*5;
up7 = int(UpLimit/1+0.00001)*1;
}
else {
up1 = int(UpLimit/1000+0.00001)*1000;
up2 = int(UpLimit/500+0.00001)*500;
up3 = int(UpLimit/100+0.00001)*100;
up4 = int(UpLimit/50+0.00001)*50;
up5 = int(UpLimit/10+0.00001)*10;
up6 = int(UpLimit/10+0.00001)*10;
up7 = int(UpLimit/1+0.00001)*1;
}
}
Else {
up1 = int(UpLimit/1000+0.00001)*1000;
up2 = int(UpLimit/500+0.00001)*500;
up3 = int(UpLimit/100+0.00001)*100;
up4 = int(UpLimit/50+0.00001)*50;
up5 = int(UpLimit/10+0.00001)*10;
up6 = int(UpLimit/5+0.00001)*5;
up7 = int(UpLimit/1+0.00001)*1;
}
if CodeCategory() == 1 || CodeCategory() == 2 then {
if sdate < 20101004 Then{
If BP >= 500000 Then
상한가 = up1;
Else If BP >= 100000 Then
상한가 = iff(up2>=500000, up1, up2);
Else If BP >= 50000 Then
상한가 = iff(up3>=100000, up2, up3);
Else If BP >= 10000 Then
상한가 = iff(up4>=50000, up3, up4);
Else If BP >= 5000 Then
상한가 = iff(up5>=10000, up4, up5);
Else If BP >= 1000 Then
상한가 = iff(up5>=5000, up5, up6);
Else
상한가 = iff(up6>=1000, up6, up6);
}
Else{
If BP >= 500000 Then
상한가 = up1;
Else If BP >= 100000 Then
상한가 = iff(up2>=500000, up1, up2);
Else If BP >= 50000 Then
상한가 = iff(up3>=100000, up2, up3);
Else If BP >= 10000 Then
상한가 = iff(up4>=50000, up3, up4);
Else If BP >= 5000 Then
상한가 = iff(up5>=10000, up4, up5);
Else If BP >= 1000 Then
상한가 = iff(up5>=5000, up5, up6);
Else
상한가 = iff(up6>=1000, up6, up7);
}
}
else if CodeCategory() == 8 || CodeCategory() == 9 then { // ETF
상한가 = up6;
}
}
if stime < 133000 Then
PreVV = DayVolume;
if stime == 133000 or (stime > 133000 and stime[1] < 133000) Then{
LL = L;
VV = 0;
}
if stime >= 133000 Then{
if L < LL Then
LL = L;
VV = VV+V;
if C >= LL*1.05 and VV > Prevv and C < 상한가 Then
find(1);
}
즐거운 하루되세요
> 미래테크 님이 쓴 글입니다.
> 제목 : 부탁합니다
> 오후장 1시반 이후 주가 및 거래량 급등 종목 수식 부탁합니다
상한가 종목은 제외 바랍니다.
1시반 이후 종가까지 거래량이 이전 거래량 누계보다 크고
당일 저가가 아니라 1시반 이후 종가까지 주가의 저가와 종가를 대비하여
5% 이상인 종목 수식 부탁합니다
일봉에서 종목 검색식이 안되면 분봉 검색식 부탁합니다
다음글
이전글