답변완료
예스트레이더 종목검색으로 요청합니다^^*
항상고맙고 감사드립니다..
아래수식은 키움에서 작성된 신호수식입니다..
주봉에서 적용했으며 이것을 예스종목검색으로 부탁드립니다...^^
a=valuewhen(1,c(0)>o(0)*1.14 and c(0)>o(0),l(0));
b=valuewhen(1,c(0)>o(0)*1.14 and c(0)>o(0),c(0));
a1=(a+b)/2;
a2=c(1)*1.09<h
or
o*1.09<h
and
eavg(c,40)<h
and
eavg(c,40)<=c
and
crossup(c,eavg(c,40))
and
o<c;
a3=valuewhen(1,a2,c);
crossup(a1,a3)
2025-02-06
476
글번호 187862
종목검색
답변완료
문의 드립니다
1.
해외선물 매매입니다.
전일 하락폭의 50%를 당일 내려갔을때 매수후 +150%에
청산되는 수식어 부탁드립니다.
매매시간은 08시 익일 06시입니다.
2.
아래a,b 별도의 수식어를 하나의 시스템에서 적용하고자 합니다.
a.
Inputs: VtyPercent(0.10),ATRperiod(5);
input : StartTime(80000),EndTime(60000);
var : Tcond(false);
IF Endtime > starttime Then
SetStopEndofday(Endtime);
Else
{
if sDate != sDate[1] Then
SetStopEndofday(Endtime);
}
if (sdate != sdate[1] and stime >= EndTime) or
(sdate == sdate[1] and stime >= EndTime and stime[1] < EndTime) Then
Tcond = False;
if (sdate != sdate[1] and stime >= StartTime) or
(sdate == sdate[1] and stime >= StartTime and stime[1] < StartTime) Then
{
Tcond = true;
IF Endtime <= starttime Then
{
SetStopEndofday(0);
}
}
If MarketPosition() <> 1 Then
Buy ("Vty_LE", AtStop, Close + (VtyPercent * ATR(ATRperiod)));
If MarketPosition() <> -1 Then
ExitLong ("Vty_SE)", AtStop, Close - (VtyPercent * ATR(ATRperiod)));
-----------------------------------
b.
Inputs: VtyPercent(0.10),ATRperiod(5);
input : StartTime(80000),EndTime(60000);
var : Tcond(false);
IF Endtime > starttime Then
SetStopEndofday(Endtime);
Else
{
if sDate != sDate[1] Then
SetStopEndofday(Endtime);
}
if (sdate != sdate[1] and stime >= EndTime) or
(sdate == sdate[1] and stime >= EndTime and stime[1] < EndTime) Then
Tcond = False;
if (sdate != sdate[1] and stime >= StartTime) or
(sdate == sdate[1] and stime >= StartTime and stime[1] < StartTime) Then
{
Tcond = true;
IF Endtime <= starttime Then
{
SetStopEndofday(0);
}
}
If MarketPosition() <> 1 Then
ExitShort("Vty_LE", AtStop, Close + (VtyPercent * ATR(ATRperiod)));
If MarketPosition() <> -1 Then
sell ("Vty_SE)", AtStop, Close - (VtyPercent * ATR(ATRperiod)));
2025-02-06
307
글번호 187839
시스템