커뮤니티

부탁드립니다.

프로필 이미지
매일상승
2015-09-01 02:31:02
120
글번호 89949
답변완료
아래 지표에서 빨간색에 매수진입 파란색에 매수청산 및 매도진입이 되도록 부탁드립니다. vars: haClose(0),haOpen(0),haHigh(0),haLow(0); if index == 0 then { haOpen = open; haClose = (O+H+L+C)/4; haHigh = MaxList( high, haOpen, haClose); haLow = MinList( low, haOpen,haClose); } if index >= 1 then { haClose = (O+H+L+C)/4; haOpen = (haOpen [1] + haClose [1])/2 ; haHigh = MaxList(High, haOpen, haClose) ; haLow = MinList(Low, haOpen, haClose) ; if haClose > haOpen then { plot1(100,"Heikin-Ash-color",RED); } else { plot1(100,"Heikin-Ash-color",BLUE); } }
시스템
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2015-09-01 10:55:48

안녕하세요 예스스탁입니다. vars: haClose(0),haOpen(0),haHigh(0),haLow(0); if index == 0 then { haOpen = open; haClose = (O+H+L+C)/4; haHigh = MaxList( high, haOpen, haClose); haLow = MinList( low, haOpen,haClose); } if index >= 1 then { haClose = (O+H+L+C)/4; haOpen = (haOpen [1] + haClose [1])/2 ; haHigh = MaxList(High, haOpen, haClose) ; haLow = MinList(Low, haOpen, haClose) ; if haClose > haOpen then { buy(); } else { sell(); } } 즐거운 하루되세요 > 매일상승 님이 쓴 글입니다. > 제목 : 부탁드립니다. > 아래 지표에서 빨간색에 매수진입 파란색에 매수청산 및 매도진입이 되도록 부탁드립니다. vars: haClose(0),haOpen(0),haHigh(0),haLow(0); if index == 0 then { haOpen = open; haClose = (O+H+L+C)/4; haHigh = MaxList( high, haOpen, haClose); haLow = MinList( low, haOpen,haClose); } if index >= 1 then { haClose = (O+H+L+C)/4; haOpen = (haOpen [1] + haClose [1])/2 ; haHigh = MaxList(High, haOpen, haClose) ; haLow = MinList(Low, haOpen, haClose) ; if haClose > haOpen then { plot1(100,"Heikin-Ash-color",RED); } else { plot1(100,"Heikin-Ash-color",BLUE); } }