커뮤니티
검색식부탁드립니다.
2012-02-17 16:27:06
379
글번호 47888
안녕하세요.
5일내 상한가 없고 시가총액 2000억이하 시초가1%이상 12%이내 상승종목 검색식 부탁드립니다.
15일내 상한가 없고 시가총액 5000억이하 시초가1%이상 15%이내 상승종목 검색식 부탁드립니다.
답변 3
예스스탁 예스스탁 답변
2012-02-17 17:44:54
안녕하세요
예스스탁입니다.
수식에는 시가총액 데이터가 제공되지 않아
해당 내용은 조건으로 추가하실 수 없습니다.
시가총액은 따로 재무검색에 제공되지므로
파워종목검색화면등에서 조건조합하셔서 검색하셔야 합니다.
var : 상한가(0), UpLimit(0);
var : up1(0), up2(0), up3(0), up4(0), up5(0),up6(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;
}
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;
}
}
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;
}
if CodeCategory() == 1 || CodeCategory() == 2 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
상한가 = iff(up6>=5000, up5, up6);
}
else if CodeCategory() == 8 || CodeCategory() == 9 then { // ETF
상한가 = up6;
}
}
if countif(H >= 상한가,5) == 0 And
C >= dayopen*1.01 and c <= dayopen*1.12 Then
find(1);
즐거운 하루되세요
> 외국인 님이 쓴 글입니다.
> 제목 : 검색식부탁드립니다.
> 안녕하세요.
5일내 상한가 없고 시가총액 2000억이하 시초가1%이상 12%이내 상승종목 검색식 부탁드립니다.
15일내 상한가 없고 시가총액 5000억이하 시초가1%이상 15%이내 상승종목 검색식 부탁드립니다.
외국인
2012-02-17 17:48:57
15일내 상한가 없고 시가총액 5000억이하 시초가5%이상 15%이내 상승종목 검색식 부탁드립니다.
예스스탁 예스스탁 답변
2012-02-17 17:53:52
안녕하세요
예스스탁입니다.
var : 상한가(0), UpLimit(0);
var : up1(0), up2(0), up3(0), up4(0), up5(0),up6(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;
}
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;
}
}
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;
}
if CodeCategory() == 1 || CodeCategory() == 2 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
상한가 = iff(up6>=5000, up5, up6);
}
else if CodeCategory() == 8 || CodeCategory() == 9 then { // ETF
상한가 = up6;
}
}
if countif(H >= 상한가,15) == 0 And
C >= dayopen*1.05 and c <= dayopen*1.15 Then
find(1);
즐거운 하루되세요
> 외국인 님이 쓴 글입니다.
> 제목 : Re : Re : 검색식부탁드립니다.
>
15일내 상한가 없고 시가총액 5000억이하 시초가5%이상 15%이내 상승종목 검색식 부탁드립니다.
다음글