커뮤니티
재질문입니다.
2013-03-19 13:54:18
234
글번호 60930
아래내용대로 적용시 매수하자마자 다음봉에서 바로 손절합니다.
써니전자 2분봉 기준으로 적용해보았는데 이렇네요..
뭐가 문제가 있는거죠??
=================================================================================
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 date != date[1] Then
Condition1 = false;
if exitdate(1) != sdate and
stime <= 91000 and
C > dayopen and
C >= DayClose(1)*1.04 and c <= DayClose(1)*1.145 and
Upvol/DownVol*100 >= 1000 and
asks >= bids*1.2 and
DayVolume >= 100000 Then
buy();
if MarketPosition == 1 then{
if Upvol/DownVol*100 <= 150 Then{
exitlong("익절",atlimit,EntryPrice*1.015);
}
exitlong("손절",AtStop, EntryPrice*0.985);
if Upvol/DownVol*100 < 100 Then
exitlong();
if H >= 상한가 Then{
Condition1 = true;
var1 = TimeToMinutes(stime);
}
if Condition1 == true and TimeToMinutes(stime) <= var1+2 and Bids < 100000 Then
exitlong();
if Condition1 == false and stime == 143500 Then
exitlong();
}
즐거운 하루되세요
> 메디사 님이 쓴 글입니다.
> 제목 : 질문입니다~
> #매수진입
- 금일 양봉에 4%이상 14.5%이하 상승중일때
- 거래강도 100 이상일때
- 매도잔량이 매수잔량보다 1.2배 이상일때
- 거래량이 10만주 이상일때
# 9시부터 9시10분사이 위 조건 만족하고 스토캐스틱/MACD 골든크로스일때 매수신호
# 위 조건 만족하고 스토캐스틱 50이하이고 MACD 골든크로스 일때 매수신호
$매수청산
- 거래강도 150 이하이고 1.5% 수익시 매도신호(익절)
- -1.5% 손실시 매도신호(손절)
- 거래강도 100 이하일때 매도신호
- 상한가 도달 후 2분이내 매수잔량 10만주 이하일때 매도신호
- 2시 35분 당일 매수분 일괄 매도신호
- 상한가 도달시 오버나잇
알려주세요~
답변 2
메디사
2013-03-19 14:09:56
^^; 제가 잘못생각하고 있었군요..ㅎㅎ
if MarketPosition == 1 then{
if Upvol/DownVol*100 <= 150 Then{
exitlong("익절",atlimit,EntryPrice*1.015);
}
exitlong("손절",AtStop, EntryPrice*0.985);
if Upvol/DownVol*100 < 100 Then
exitlong();
if H >= 상한가 Then{
Condition1 = true;
var1 = TimeToMinutes(stime);
}
if Condition1 == true and TimeToMinutes(stime) <= var1+2 and Bids < 100000 Then
exitlong();
if Condition1 == false and stime == 143500 Then
exitlong();
}
이 구문에서
exitlong("익절",atlimit,EntryPrice*1.015) 과
exitlong("손절",AtStop, EntryPrice*0.985) 은 조건만족시 즉시 실행이라
현재가가 이미 -1.5%를 밑돌고 있어서 계속 매수후 바로 손절이 되는거군요..ㅎㅎ
리포트를 가능할수 있게 수정해주시면 안될까요?? 봉완성시 매도신호가 나갈수 있도록
늘 감사합니다~^^
예스스탁 예스스탁 답변
2013-03-19 14:54:49
안녕하세요
예스스탁입니다.
봉완성시 종가기준으로 변경한 식입니다.
if MarketPosition == 1 then{
if Upvol/DownVol*100 <= 150 and C >= EntryPrice*1.015 Then{
exitlong("익절");
}
if C <= EntryPrice*0.985 Then
exitlong("손절");
if Upvol/DownVol*100 < 100 Then
exitlong();
if H >= 상한가 Then{
Condition1 = true;
var1 = TimeToMinutes(stime);
}
if Condition1 == true and TimeToMinutes(stime) <= var1+2 and Bids < 100000 Then
exitlong();
if Condition1 == false and stime == 143500 Then
exitlong();
}
즐거운 하루되세요
> 메디사 님이 쓴 글입니다.
> 제목 : Re : 재질문입니다.
> ^^; 제가 잘못생각하고 있었군요..ㅎㅎ
if MarketPosition == 1 then{
if Upvol/DownVol*100 <= 150 Then{
exitlong("익절",atlimit,EntryPrice*1.015);
}
exitlong("손절",AtStop, EntryPrice*0.985);
if Upvol/DownVol*100 < 100 Then
exitlong();
if H >= 상한가 Then{
Condition1 = true;
var1 = TimeToMinutes(stime);
}
if Condition1 == true and TimeToMinutes(stime) <= var1+2 and Bids < 100000 Then
exitlong();
if Condition1 == false and stime == 143500 Then
exitlong();
}
이 구문에서
exitlong("익절",atlimit,EntryPrice*1.015) 과
exitlong("손절",AtStop, EntryPrice*0.985) 은 조건만족시 즉시 실행이라
현재가가 이미 -1.5%를 밑돌고 있어서 계속 매수후 바로 손절이 되는거군요..ㅎㅎ
리포트를 가능할수 있게 수정해주시면 안될까요?? 봉완성시 매도신호가 나갈수 있도록
늘 감사합니다~^^