특정시간에 라인을 긋는식인데,
여기서 라인이 검정색으로 고정이 되던데,
색상을 바꿀수 있게 할수 있나요?
또, 선긋기의 선굵기도 설정할수 있나요?
if stime == 110000 or (stime > 110000 and stime[1] < 110000) Then{
TL_New(sdate,stime,9999999,sdate,stime,0);
PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav");
}
답변 1
예스스탁
예스스탁 답변
2023-09-08 14:39:36
안녕하세요
예스스탁입니다.
추세선은 수식안에서 TL_SetColor함수로 색상지정이 가능합니다
var : TL(0);
if stime == 110000 or (stime > 110000 and stime[1] < 110000) Then
{
TL = TL_New(sdate,stime,9999999,sdate,stime,0);
PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav");
TL_SetColor(TL,Green);
}
즐거운 하루되세요
> 만복이 님이 쓴 글입니다.
> 제목 : 문의
> 특정시간에 라인을 긋는식인데,
여기서 라인이 검정색으로 고정이 되던데,
색상을 바꿀수 있게 할수 있나요?
또, 선긋기의 선굵기도 설정할수 있나요?
if stime == 110000 or (stime > 110000 and stime[1] < 110000) Then{
TL_New(sdate,stime,9999999,sdate,stime,0);
PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav");
}