커뮤니티

문의드립니다

프로필 이미지
러블리
2025-03-30 13:15:49
388
글번호 189695
답변완료
var : xClose(0),xOpen(0),xHigh(0),xLow(0); if Bdate != Bdate[1] Then { xOpen = open; xClose = (O+H+L+C+c)/5; xHigh = MaxList( high, xOpen, xClose); xLow = MinList( low, xOpen,xClose); } else { xClose = (O+H+L+C+c)/5; xOpen = (xOpen [1] + xClose [1])/2 ; xHigh = MaxList(High, xOpen, xClose) ; xLow = MinList(Low, xOpen, xClose) ; } if XClose > Xopen Then Plot1(xclose, "1", Red); Else Plot1(xclose, "1", Blue); ------------------------------ 라인 색상이 블루로 바뀌면 위에 블루색 화살표, 라인 색상이 레드로 바뀌면 아래에 레드색 화살표가 나오게 부탁합니다 tx = Text_New(sDate,sTime,up,"▲"); Text_SetStyle(tx,2,0); Text_SetColor(tx,Red);
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2025-03-31 12:58:34

안녕하세요 예스스탁입니다. var : xClose(0),xOpen(0),xHigh(0),xLow(0),tx(0); if Bdate != Bdate[1] Then { xOpen = open; xClose = (O+H+L+C+c)/5; xHigh = MaxList( high, xOpen, xClose); xLow = MinList( low, xOpen,xClose); } else { xClose = (O+H+L+C+c)/5; xOpen = (xOpen [1] + xClose [1])/2 ; xHigh = MaxList(High, xOpen, xClose) ; xLow = MinList(Low, xOpen, xClose) ; } if XClose > Xopen Then Plot1(xclose, "1", Red); Else Plot1(xclose, "1", Blue); if CrossUp(XClose,xOpen) Then { tx = Text_New(sDate,sTime,L,"▲"); Text_SetStyle(tx,2,0); Text_SetColor(tx,Red); } if CrossDown(XClose,xOpen) Then { tx = Text_New(sDate,sTime,H,"▼"); Text_SetStyle(tx,2,1); Text_SetColor(tx,Blue); } 즐거운 하루되세요 > 러블리 님이 쓴 글입니다. > 제목 : 문의드립니다 > var : xClose(0),xOpen(0),xHigh(0),xLow(0); if Bdate != Bdate[1] Then { xOpen = open; xClose = (O+H+L+C+c)/5; xHigh = MaxList( high, xOpen, xClose); xLow = MinList( low, xOpen,xClose); } else { xClose = (O+H+L+C+c)/5; xOpen = (xOpen [1] + xClose [1])/2 ; xHigh = MaxList(High, xOpen, xClose) ; xLow = MinList(Low, xOpen, xClose) ; } if XClose > Xopen Then Plot1(xclose, "1", Red); Else Plot1(xclose, "1", Blue); ------------------------------ 라인 색상이 블루로 바뀌면 위에 블루색 화살표, 라인 색상이 레드로 바뀌면 아래에 레드색 화살표가 나오게 부탁합니다 tx = Text_New(sDate,sTime,up,"▲"); Text_SetStyle(tx,2,0); Text_SetColor(tx,Red);