커뮤니티
문의 드립니다.
2026-04-14 15:30:12
44
글번호 231612
안녕하세요
많은 정보 주심에 감사 드립니다.
RSI(5)가 70이상일때, 아래의 신호가 나오는 종목의 검색식을 부탁 드립니다.
Crossup(DIPlus(14),DIMinus(14))and
if(DIPlus(7)>DIMinus(7), C>=SAR(0.015,0.15), !C>=SAR(0.015,0.15))
and
MACD(10,15)>-20
And
A=(highest(high,9)+lowest(low,9))/2;
B=(highest(high,26)+lowest(low,26))/2;
CrossUp(c, A)
And
CrossUp(C, B)
and
c>eavg(c, 30)
감사합니다.
답변 1
예스스탁 예스스탁 답변
2026-04-15 09:37:14
안녕하세요
예스스탁입니다.
var : R(0),A(0),B(0);
R = RSI(5);
A=(highest(high,9)+lowest(low,9))/2;
B=(highest(high,26)+lowest(low,26))/2;
if R >= 70 and
Crossup(DIPlus(14),DIMinus(14))and
((DIPlus(7)> DIMinus(7) and C>=SAR(0.015,0.15)) or
(DIPlus(7)<= DIMinus(7) and C<SAR(0.015,0.15)))
and
MACD(10,15)>-20 And
CrossUp(c, A) And
CrossUp(C, B) and
c>Ema(c, 30) Then
Find(1);
즐거운 하루되세요