예스스탁
예스스탁 답변
2024-10-28 09:39:36
안녕하세요
예스스탁입니다.
수식 내용 맞습니다.
var : xClose(0),xOpen(0),xHigh(0),xLow(0),clr(0),tx(0);
#Heiken Ashi 시고저종
if index == 0 then
{
xOpen = dayopen;
xClose = (dayOpen+dayHigh+daylow+dayClose)/4;
xHigh = MaxList( dayhigh, xOpen, xClose);
xLow = MinList( daylow, xOpen,xClose);
}
else
{
xClose = (dayOpen+dayHigh+daylow+dayClose)/4;
xOpen = (xOpen[1] + xClose[1])/2 ;
xHigh = MaxList(dayhigh, xOpen, xClose) ;
xLow = MinList(daylow, xOpen, xClose) ;
}
clr = IFF(XClose > Xopen,Red,Blue);
if XClose > Xopen Then
Plot1(xclose, "1", red);
Else
Plot1(xclose, "1", blue);
if clr == Blue and clr != clr[1] Then
{
tx = text_new(sDate,sTime,H,"●");
Text_SetStyle(tx,2,1);
Text_SetColor(tx,Blue);
}
if clr == Red and clr != clr[1] Then
{
tx = text_new(sDate,sTime,L,"●");
Text_SetStyle(tx,2,0);
Text_SetColor(tx,Red);
}
즐거운 하루되세요
> 러블리 님이 쓴 글입니다.
> 제목 : 문의드립니다
> var : xClose(0),xOpen(0),xHigh(0),xLow(0);
#Heiken Ashi 시고저종
if index == 0 then
{
xOpen = dayopen;
xClose = (dayOpen+dayHigh+daylow+dayClose)/4;
xHigh = MaxList( dayhigh, xOpen, xClose);
xLow = MinList( daylow, xOpen,xClose);
}
else
{
xClose = (dayOpen+dayHigh+daylow+dayClose)/4;
xOpen = (xOpen[1] + xClose[1])/2 ;
xHigh = MaxList(dayhigh, xOpen, xClose) ;
xLow = MinList(daylow, xOpen, xClose) ;
}
if XClose > Xopen Then
Plot1(xclose, "1", red);
Else
Plot1(xclose, "1", blue);
-------------------------------------
위식이 일봉용 하이킨아시가 맞나요?
식이 제대로 맞는지 좀 봐주시구요
하락색상 블루색으로 바뀌면 그 봉위에 블루점 "●")
상승 빨강색으로 바뀌면 그 봉 아래에 빨간점이 나오게 부탁합니다
감사합니다