커뮤니티
수식문의
2012-08-07 13:51:49
317
글번호 53567
Average price of the current bar :
xClose = ( Open+High+Low+Close)/4
Midpoint of the previous bar :
xOpen = [xOpen(previous Bar)+Close(previous Bar)]/2
Highest value in the set :
xHigh = Max(High, xOpen, xClose)
Lowest value in the set :
xLow = Min(Low, xOpen, xClose)
HEIKIN-ASHI Closing price
= (xClose+xOpen+xHigh+xLow)/4
위의지표식을 예스로구현해주세요 감사합니다
답변 3
예스스탁 예스스탁 답변
2012-08-07 15:52:57
안녕하세요
예스스탁입니다.
var : XClose(0),XOpen(0),Xhigh(0),Xlow(0),HEIKIN(0);
#Average price of the current bar :
xClose = ( Open+High+Low+Close)/4;
#3Midpoint of the previous bar :
xOpen = (xOpen[1]+Close[1])/2;
#Highest value in the set :
xHigh = Max(High, xOpen, xClose);
#Lowest value in the set :
xLow = Min(Low, xOpen, xClose);
#HEIKIN-ASHI Closing price
HEIKIN = (xClose+xOpen+xHigh+xLow)/4;
plot1(HEIKIN);
즐거운 하루되세요
> 백진강 님이 쓴 글입니다.
> 제목 : 수식문의
> Average price of the current bar :
xClose = ( Open+High+Low+Close)/4
Midpoint of the previous bar :
xOpen = [xOpen(previous Bar)+Close(previous Bar)]/2
Highest value in the set :
xHigh = Max(High, xOpen, xClose)
Lowest value in the set :
xLow = Min(Low, xOpen, xClose)
HEIKIN-ASHI Closing price
= (xClose+xOpen+xHigh+xLow)/4
위의지표식을 예스로구현해주세요 감사합니다
백진강
2012-08-07 15:58:05
지표적용이안되는데요 아무표시가안나오네요
> 예스스탁 님이 쓴 글입니다.
> 제목 : Re : 수식문의
> 안녕하세요
예스스탁입니다.
var : XClose(0),XOpen(0),Xhigh(0),Xlow(0),HEIKIN(0);
#Average price of the current bar :
xClose = ( Open+High+Low+Close)/4;
#3Midpoint of the previous bar :
xOpen = (xOpen[1]+Close[1])/2;
#Highest value in the set :
xHigh = Max(High, xOpen, xClose);
#Lowest value in the set :
xLow = Min(Low, xOpen, xClose);
#HEIKIN-ASHI Closing price
HEIKIN = (xClose+xOpen+xHigh+xLow)/4;
plot1(HEIKIN);
즐거운 하루되세요
> 백진강 님이 쓴 글입니다.
> 제목 : 수식문의
> Average price of the current bar :
xClose = ( Open+High+Low+Close)/4
Midpoint of the previous bar :
xOpen = [xOpen(previous Bar)+Close(previous Bar)]/2
Highest value in the set :
xHigh = Max(High, xOpen, xClose)
Lowest value in the set :
xLow = Min(Low, xOpen, xClose)
HEIKIN-ASHI Closing price
= (xClose+xOpen+xHigh+xLow)/4
위의지표식을 예스로구현해주세요 감사합니다
예스스탁 예스스탁 답변
2012-08-07 16:03:44
안녕하세요
예스스탁입니다.
죄송합니다. 빠진 부분이 있었습니다.
아래식 이용하시면 됩니다.
var : XClose(0),XOpen(0),Xhigh(0),Xlow(0),HEIKIN(0);
#Average price of the current bar :
xClose = ( Open+High+Low+Close)/4;
#3Midpoint of the previous bar :
if (CurrentBar <= 1) then
xOpen = O;
Else
xOpen = (xOpen[1]+Close[1])/2;
#Highest value in the set :
xHigh = Max(High, xOpen, xClose);
#Lowest value in the set :
xLow = Min(Low, xOpen, xClose);
#HEIKIN-ASHI Closing price
HEIKIN = (xClose+xOpen+xHigh+xLow)/4;
plot1(HEIKIN);
즐거운 하루되세요
> 백진강 님이 쓴 글입니다.
> 제목 : Re : Re : 수식문의
>
지표적용이안되는데요 아무표시가안나오네요
> 예스스탁 님이 쓴 글입니다.
> 제목 : Re : 수식문의
> 안녕하세요
예스스탁입니다.
var : XClose(0),XOpen(0),Xhigh(0),Xlow(0),HEIKIN(0);
#Average price of the current bar :
xClose = ( Open+High+Low+Close)/4;
#3Midpoint of the previous bar :
xOpen = (xOpen[1]+Close[1])/2;
#Highest value in the set :
xHigh = Max(High, xOpen, xClose);
#Lowest value in the set :
xLow = Min(Low, xOpen, xClose);
#HEIKIN-ASHI Closing price
HEIKIN = (xClose+xOpen+xHigh+xLow)/4;
plot1(HEIKIN);
즐거운 하루되세요
> 백진강 님이 쓴 글입니다.
> 제목 : 수식문의
> Average price of the current bar :
xClose = ( Open+High+Low+Close)/4
Midpoint of the previous bar :
xOpen = [xOpen(previous Bar)+Close(previous Bar)]/2
Highest value in the set :
xHigh = Max(High, xOpen, xClose)
Lowest value in the set :
xLow = Min(Low, xOpen, xClose)
HEIKIN-ASHI Closing price
= (xClose+xOpen+xHigh+xLow)/4
위의지표식을 예스로구현해주세요 감사합니다
다음글
이전글