예스스탁
예스스탁 답변
2025-09-30 10:35:38.0
안녕하세요
예스스탁입니다.
var : haClose(0),haOpen(0),haHigh(0),haLow(0);
var : A(0),B(0),N(0);
haClose = (O+H+L+C)/4;
haOpen = iff(index == 0,open,(haOpen [1] + haClose [1])/2) ;
haHigh = MaxList(High, haOpen, haClose) ;
haLow = MinList(Low, haOpen, haClose) ;
A = ma(haclose,17)+std(haclose,17)*2;
B = ma(haclose,40)+std(haclose,40)*2;
N = ma(haclose,20)*1.02;
if (haClose>ma(haHigh,5) and Crossup(A,N)) or
(haClose>ma(haHigh,5) and B>N and Crossup(A,B)) or
(A>B and B>N and Crossup(haClose,A)) or
Crossup(haClose,A) and
Crossup(haClose,B) and
Crossup(haClose,N) Then
Find(1);
즐거운 명절 되시기 바랍니다.
> ksks 님이 쓴 글입니다.
> 제목 : 수식문의(HA)
> 수고하십니다.
아래 수식을 하이켄아시 차트에서 검색할 수식으로 변환 가능할까요?
A=BBandsUp(17,2);
B=BBandsUp(40,2);
M=EnvelopeUp(20,2);
(c>ma(h,5) and Crossup(A,M)) or
(c>ma(h,5) and B>M and Crossup(A,B)) or
(A>B and B>M and Crossup(C,A)) or
Crossup(C,A) and
Crossup(C,B) and
Crossup(C,M)