var : count(0);
var : month(0);
month = int(date/100)-int(date/10000)*100;
항상감사합니다
강조식입니다
챠트만들다보니
질문이 생깁니다
이 식도 특수문자 지표로 표시가능 한지요?
if month != month[1] Then
{
Condition1 = true;
count = 0;
}
if Condition1 == true and bdate != bdate[1] and DayOfWeek(bdate) == 4 Then
{
count = count+1;
if count == 2 Then
PlotPaintBar(o,c,"강조",GREEN);
}
답변 1
예스스탁
예스스탁 답변
2020-07-28 14:49:26
안녕하세요
예스스탁입니다.
var : count(0),month(0),tx(0);
month = int(date/100)-int(date/10000)*100;
if month != month[1] Then
{
Condition1 = true;
count = 0;
}
if Condition1 == true and bdate != bdate[1] and DayOfWeek(bdate) == 4 Then
{
count = count+1;
if count == 2 Then
{
PlotPaintBar(o,c,"강조",GREEN);
Text_Delete(tx);
tx = Text_New(sdate,stime,H,"▼");
text_setStyle(tx,2,1);
text_setcolor(tx,red);
text_setsize(tx,20);
}
}
즐거운 하루되세요
> 에리카 님이 쓴 글입니다.
> 제목 : 강조
> var : count(0);
var : month(0);
month = int(date/100)-int(date/10000)*100;
항상감사합니다
강조식입니다
챠트만들다보니
질문이 생깁니다
이 식도 특수문자 지표로 표시가능 한지요?
if month != month[1] Then
{
Condition1 = true;
count = 0;
}
if Condition1 == true and bdate != bdate[1] and DayOfWeek(bdate) == 4 Then
{
count = count+1;
if count == 2 Then
PlotPaintBar(o,c,"강조",GREEN);
}