예스스탁
예스스탁 답변
2025-04-23 09:09:44
안녕하세요
예스스탁입니다.
if XClose > Xopen Then
{
if C > O Then
PlotPaintBar(C,O,"강조",Red);
Else
PlotPaintBar(c,o,"강조",RGb(255,108,108));
}
else if XClose < Xopen Then
{
if C < O Then
PlotPaintBar(C,O,"강조",Blue);
Else
PlotPaintBar(c,o,"강조",RGb(61,183,204));
}
else
PlotPaintBar(c,o,"강조",GREEN);
즐거운 하루되세요
> 러블리 님이 쓴 글입니다.
> 제목 : 문의드립니다
> if XClose > Xopen Then
PlotPaintBar(c,o,"강조",RGb(255,0,0));
else if XClose < Xopen Then
PlotPaintBar(c,o,"강조",Blue);
else
PlotPaintBar(c,o,"강조",GREEN);
------------------------------------------
위 식에서 xclose>xopen 이면서 & 양봉이면 red
" 음봉이면 rgb 255,108,108
xclose<xopen 이면서 & 음봉이면 blue
" 양봉이면 rgb 61,183,204
위와 같은 조건을 추가하고 싶은데 어떻게 표현해야 하는지요?
감사합니다