예스스탁
예스스탁 답변
2023-03-20 11:02:17
안녕하세요
예스스탁입니다.
수직선으로 표시되게 작성해 드립니다.
input : 유럽시작(160000),유럽끝(003000);
input : 미국시작(223000),미국끝(050000);
var : TL(0);
if (sdate != sdate[1] and stime >= 유럽시작) or
(sdate == sdate[1] and stime >= 유럽시작 and stime[1] < 유럽시작) Then
{
TL = TL_New(sdate,stime,9999999999,sdate,stime,0);
TL_SetColor(TL,Green);
}
if (sdate != sdate[1] and stime >= 유럽끝) or
(sdate == sdate[1] and stime >= 유럽끝 and stime[1] < 유럽끝) Then
{
TL = TL_New(sdate,stime,9999999999,sdate,stime,0);
TL_SetColor(TL,Green);
}
if (sdate != sdate[1] and stime >= 미국시작) or
(sdate == sdate[1] and stime >= 미국시작 and stime[1] < 미국시작) Then
{
TL = TL_New(sdate,stime,9999999999,sdate,stime,0);
TL_SetColor(TL,Green);
}
if (sdate != sdate[1] and stime >= 미국끝) or
(sdate == sdate[1] and stime >= 미국끝 and stime[1] < 미국끝) Then
{
TL = TL_New(sdate,stime,9999999999,sdate,stime,0);
TL_SetColor(TL,Green);
}
즐거운 하루되세요
> 부활 님이 쓴 글입니다.
> 제목 : 수식 문의 드립니다
> 안녀하세요
미국개장시간과 마감시간
유럽개장시간과 마감시간을
차트에 선이나 기호로 표시 가능한가요?