커뮤니티
종목검색과 겸해서 부탁합니다.
2014-01-17 07:56:32
164
글번호 71515
1. 전제조건: 20일 이평선 우상향 추세, 거래량 최소 10만주이상, 주가 900원 이상
2. 매수조건: 당일에 10% 이상 장대 양봉 혹은 상한가 종목이 1의 조건을 만족시키는 경우 다음날 매매 대상으로 선정
3. 매수타이밍: 전일 상한가 이전에 매집이 시작된 대략적인 평균 가격과 전일 종가 사이에 직선을 긋고, 직선의 상단 1/3 선과 1/2 선에서 50%씩 분할매수)
4. 손절: 2차 매수 이후 5% 하락시
5. 익절: 10% 선 이후 5일선 하방 통과시
답변 1
예스스탁 예스스탁 답변
2014-01-17 15:58:59
안녕하세요
예스스탁입니다.
종목검색과 시스템이 자동으로 연결되지 않습니다.
종목검색후 거래하고자 하는 종목의 차트를 여시고
시스템을 적용하셔야 합니다.
3번의 시스템 내용은 정확한 조건내용이 필요합니다.
문의하신 내용 추상적인 내용이 있어 식으로 답변드리기 어렵습니다.
종목검색식만 올려드립니다.
1. 종목검색
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;
}
}
var1 = ma(c,20);
if var1 > var1[1] and V >= 100000 and C >= 900 And
((C >= O*1.10) or H >= 상한가) Then
find(1);
즐거운 하루되세요
> 까마귀 님이 쓴 글입니다.
> 제목 : 종목검색과 겸해서 부탁합니다.
> 1. 전제조건: 20일 이평선 우상향 추세, 거래량 최소 10만주이상, 주가 900원 이상
2. 매수조건: 당일에 10% 이상 장대 양봉 혹은 상한가 종목이 1의 조건을 만족시키는 경우 다음날 매매 대상으로 선정
3. 매수타이밍: 전일 상한가 이전에 매집이 시작된 대략적인 평균 가격과 전일 종가 사이에 직선을 긋고, 직선의 상단 1/3 선과 1/2 선에서 50%씩 분할매수)
4. 손절: 2차 매수 이후 5% 하락시
5. 익절: 10% 선 이후 5일선 하방 통과시