예스스탁
예스스탁 답변
2024-11-21 10:19:11
안녕하세요
예스스탁입니다.
텍스트크기 조정가능하게 외부변수로 처리해 드립니다.
출력된 plot은 식작성시 각 데이터별 매수/매도 확인 위해 임의로 추가한 것입니다.
삭제해 드립니다.
input : 텍스트크기(20);
var : c2(0),c3(0),c4(0),c5(0);
var : s2(0),s3(0),s4(0),s5(0);
var : t2(0),t3(0),t4(0),t5(0);
var : cnt(0);
c2 = 0;
s2 = 0;
if Data2(C > ma(C,20) and ma(c,20) < ma(c,60)) Then
{ c2 = Orange; s2 = 1;}
if Data2(C > ma(C,20) and ma(c,20) > ma(c,60)) Then
{ c2 = Red; s2 = 1;}
if Data2(C < ma(C,20) and ma(c,20) > ma(c,60)) Then
{ c2 = Blue; s2 = -1;}
if Data2(C < ma(C,20) and ma(c,20) < ma(c,60)) Then
{ c2 = Black; s2 = -1;}
c3 = 0;
s3 = 0;
if Data3(C > ma(C,20) and ma(c,20) < ma(c,60)) Then
{ c3 = Blue; s3 = -1;}
if Data3(C > ma(C,20) and ma(c,20) > ma(c,60)) Then
{ c3 = Black; s3 = 1;}
if Data3(C < ma(C,20) and ma(c,20) > ma(c,60)) Then
{ c3 = Orange; s3 = -1;}
if Data3(C < ma(C,20) and ma(c,20) < ma(c,60)) Then
{ c3 = Red; s3 = -1;}
c4 = 0;
s4 = 0;
if Data4(C > ma(C,20) and ma(c,20) < ma(c,60)) Then
{ c4 = Blue; s4 = -1;}
if Data4(C > ma(C,20) and ma(c,20) > ma(c,60)) Then
{ c4 = Black; s4 = 1;}
if Data4(C < ma(C,20) and ma(c,20) > ma(c,60)) Then
{ c4 = Orange; s4 = -1;}
if Data4(C < ma(C,20) and ma(c,20) < ma(c,60)) Then
{ c4 = Red; s4 = -1;}
c5 = 0;
s5 = 0;
if Data5(C > ma(C,20) and ma(c,20) < ma(c,60)) Then
{ c5 = Orange; s5 = 1;}
if Data2(C > ma(C,20) and ma(c,20) > ma(c,60)) Then
{ c5 = Red; s5 = 1;}
if Data2(C < ma(C,20) and ma(c,20) > ma(c,60)) Then
{ c5 = Blue; s5 = -1;}
if Data2(C < ma(C,20) and ma(c,20) < ma(c,60)) Then
{ c5 = Black; s5 = -1;}
For cnt = 0 to 49
{
Text_Delete(t2[cnt]);
Text_Delete(t3[cnt]);
Text_Delete(t4[cnt]);
Text_Delete(t5[cnt]);
}
if s2 == 1 Then
t2 = Text_New(sDate,sTime,H,"▲"+NewLine+NewLine+NewLine);
if s2 == -1 Then
t2 = Text_New(sDate,sTime,H,"▼"+NewLine+NewLine+NewLine);
Text_SetColor(t2,c2);
Text_SetStyle(t2,2,1);
Text_SetSize(t2,텍스트크기);
if s3 == 1 Then
t3 = Text_New(sDate,sTime,H,"▲"+NewLine+NewLine);
if s3 == -1 Then
t3 = Text_New(sDate,sTime,H,"▼"+NewLine+NewLine);
Text_SetColor(t3,c3);
Text_SetStyle(t3,2,1);
Text_SetSize(t3,텍스트크기);
if s4 == 1 Then
t4 = Text_New(sDate,sTime,H,"▲"+NewLine);
if s4 == -1 Then
t4 = Text_New(sDate,sTime,H,"▼"+NewLine);
Text_SetColor(t4,c4);
Text_SetStyle(t4,2,1);
Text_SetSize(t4,텍스트크기);
if s5 == 1 Then
t5 = Text_New(sDate,sTime,H,"▲");
if s5 == -1 Then
t5 = Text_New(sDate,sTime,H,"▼");
Text_SetColor(t5,c5);
Text_SetStyle(t5,2,1);
Text_SetSize(t5,텍스트크기);
즐거운 하루되세요
> 냠냠냠 님이 쓴 글입니다.
> 제목 : 추가질문 드립니다.
> 앞질문(90070)에 대한 추가질문
첨부 파일에 보듯이 1>화살표가 너무커서..크기 조절하는 방법좀 가르쳐주세.
2>새로생긴 보조지표 어떠게 보는 건가요?