안녕하세요.
지난번 문의때 아래와 같은 수식을 만들어 주셨는데요.
지금까지 잘 사용하고 있습니다!
아래 수식에서 거래 시간만 수정하여(다른조건은 동일)
23시부터 진입하고 늦어도 다음날 오전 1시 30분에는 청산되도록 부탁드립니다.
항상 감사드립니다.
input : StartTime(230000),EndTime(235900);
var : Tcond(False),Xcond(False),DayPL(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;
Xcond = False;
daypl = 0;
IF Endtime <= starttime Then
{
SetStopEndofday(0);
}
}
if TotalTrades > TotalTrades[1] then
{
daypl = dayPL + PositionProfit(1);
if daypl > 0 Then
Xcond = true;
}
if Tcond == true and Xcond == False Then
{
진입청산수식
}
답변 1
예스스탁
예스스탁 답변
2025-02-03 14:33:59
안녕하세요
예스스탁입니다.
청산시간인 EndTime만 013000으로 변경하시면 됩니다.
input : StartTime(230000),EndTime(013000);
var : Tcond(False),Xcond(False),DayPL(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;
Xcond = False;
daypl = 0;
IF Endtime <= starttime Then
{
SetStopEndofday(0);
}
}
if TotalTrades > TotalTrades[1] then
{
daypl = dayPL + PositionProfit(1);
if daypl > 0 Then
Xcond = true;
}
if Tcond == true and Xcond == False Then
{
진입청산수식
}
즐거운 하루되세요
> 트레이더365 님이 쓴 글입니다.
> 제목 : 수식 문의드립니다.
> 안녕하세요.
지난번 문의때 아래와 같은 수식을 만들어 주셨는데요.
지금까지 잘 사용하고 있습니다!
아래 수식에서 거래 시간만 수정하여(다른조건은 동일)
23시부터 진입하고 늦어도 다음날 오전 1시 30분에는 청산되도록 부탁드립니다.
항상 감사드립니다.
input : StartTime(230000),EndTime(235900);
var : Tcond(False),Xcond(False),DayPL(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;
Xcond = False;
daypl = 0;
IF Endtime <= starttime Then
{
SetStopEndofday(0);
}
}
if TotalTrades > TotalTrades[1] then
{
daypl = dayPL + PositionProfit(1);
if daypl > 0 Then
Xcond = true;
}
if Tcond == true and Xcond == False Then
{
진입청산수식
}