예스스탁
예스스탁 답변
2025-07-16 10:13:29
안녕하세요
예스스탁입니다.
var : xClose(0),xOpen(0),xHigh(0),xLow(0);
var : AA(0),BB(0),MM(0);
if index == 0 then
{
xClose = (O+H+L+C)/4;
xOpen = open;
xHigh = MaxList( high, xOpen, xClose);
xLow = MinList( low, xOpen,xClose);
}
else
{
xClose = (O+H+L+C)/4;
xOpen = (xOpen [1] + xClose [1])/2 ;
xHigh = MaxList(High, xOpen, xClose) ;
xLow = MinList(Low, xOpen, xClose);
}
AA = ma(xClose,17)+ STD(xClose,17)*2;
BB = ma(xClose,40)+ STD(xClose,40)*2;
MM = ma(xClose,20)*1.06;
var1 = xclose/ma(xclose,120)*100;
if ((c>ma(xhigh,5) and Crossup(AA,MM)) or
(c>ma(xhigh,5) and BB>MM and Crossup(AA,BB)) or
(AA>BB and BB>MM and Crossup(xClose,AA)) or
(Crossup(xClose,AA))and
Crossup(xClose,BB) and Crossup(xClose,MM)) and var1 <= 112 Then
Find(1);
즐거운 하루되세요
> ksks 님이 쓴 글입니다.
> 제목 : 수식문의
>
아래는 88455번에서 문의드리고 받았던 답변 복사입니다.
이를 하이킨아시 차트에서 검색가능한거로 변형이 가능할까요?
=======================================================================
안녕하세요
예스스탁입니다.
var : AA(0),BB(0),MM(0);
AA=BollBandUp(17,2);
BB=BollBandUp(40,2);
MM=EnvelopeUp(20,6);
var1 = Disparity(120);
if ((c>ma(h,5) and Crossup(AA,MM)) or
(c>ma(h,5) and BB>MM and Crossup(AA,BB)) or
(AA>BB and BB>MM and Crossup(C,AA)) or
(Crossup(C,AA))and
Crossup(C,BB) and Crossup(C,MM)) and var1 <= 112 Then
Find(1);
즐거운 하루되세요
> ksks 님이 쓴 글입니다.
> 제목 : 수식요청
> 아래 수식의 변환을 요청드립니다.
A=BBandsUp(17,2);
B=BBandsUp(40,2);
M=EnvelopeUp(20,6);
(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))
이면서 120일선과 이격이 115이하.