예스스탁
예스스탁 답변
2025-01-31 16:47:28
안녕하세요
예스스탁입니다.
input : StartTime(80000),EndTime(50000);
input : 익절틱수(400),손절틱수(100),진입횟수(20);
var : Tcond(False),entry(0),count1(-1),count2(-1);
var : m1(0),m2(0);
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;
entry = 0;
IF Endtime <= starttime Then
{
SetStopEndofday(0);
}
}
var1 = SwingHigh(1, H, 2, 1, 10);
var2 = SwingHigh(1, L, 2, 1, 10);
m1 = ma(C,5);
m2 = ma(C,15);
if crossup(c, var1) then
{
count1 = -1;
}
if count1 >= 0 and CrossUp(m1,m2) Then
{
count1 = count1+1;
if count1 == 2 Then
Buy();
}
if crossdown(c, var2) then
{
count2 = -1;
}
if count2 >= 0 and CrossDown(m1,m2) Then
{
count2 = count2+1;
if count2 == 2 Then
Sell();
}
즐거운 하루되세요
> 푸른 님이 쓴 글입니다.
> 제목 : 문의 드립니다
> input : StartTime(80000),EndTime(50000);
input : 익절틱수(400),손절틱수(100),진입횟수(20);
var : Tcond(False),entry(0);
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;
entry = 0;
IF Endtime <= starttime Then
{
SetStopEndofday(0);
}
}
var1 = SwingHigh(1, H, 2, 1, 10);
var2 = SwingHigh(1, L, 2, 1, 10);
if crossup(c, var1) then{
buy();
exitshort();
}
if crossdown(c, var2) then{
sell();
exitlong();
}
수식어 변경을 부탁드립니다.
위 수식어 매수 신호후 5 이평선, 15 이평선 2번째 골든크로스 매수
위 수식어 매도 신호후 5 이평선, 15 이평선 2번째 데드크로스 매도
늘 감사드립니다.