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))
답변 1
예스스탁
예스스탁 답변
2024-07-26 13:45:00
안녕하세요
예스스탁입니다.
var : A(0),B(0),E(0);
A=BollBandUp(17,2);
B=BollBandUp(40,2);
E=EnvelopeUP(20,2);
if (c>ma(h,5) and Crossup(A,E))
or (c>ma(h,5) and B>E and CrossUp(A,B))
or (A>B and B>E and CrossUp(C,A))
or (CrossUp(C,A) and CrossUp(C,B)
and CrossUp(C,E)) Then
Find(1);
즐거운 하루되세요
> 보이저 님이 쓴 글입니다.
> 제목 : 신호 수식입니다. 이것을 조건검색식으로 종목검색이 가능할지 문의 드립니다.
> 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))