커뮤니티

87303

프로필 이미지
ksks
2024-05-21 13:36:21
804
글번호 179794
답변완료
87303번 문의에 주신 수식입니다. 전일신호발생 후 금일 연속으로 신호발생을 보려는 건데 아래 수식은 전일만 나오는거 아닌가요? 1 var : R(0),A(0),B(0); R = RSI(20); A=iff( (high==low), 0, volume*(close-low)/(high-low)); B=iff( (high==low), 0, volume*(high-close)/(high-low)); Condition1 = C > O and R[1] < 64 and R>64 and (A>=B*5 or B==0); if Condition1[1] == true and R>64 and (A>=B*5 or B==0) Then Find(1);
종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2024-05-21 14:30:40

안녕하세요 예스스탁입니다. 2일 연속입니다. Condition1 = C > O and R[1] < 64 and R>64 and (A>=B*5 or B==0); if Condition1[1] == true and R>64 and (A>=B*5 or B==0) Then Find(1); 1봉전 Condition1이 true이고 현재봉에서 R이 64이상이고 (A>=B*5 or B==0)조건 충족한 종목을 검색하게 됩니다. 전일 64를 돌파했고 현재봉도 64이상 유지한 종목입니다. 즐거운 하루되세요 > ksks 님이 쓴 글입니다. > 제목 : 87303 > 87303번 문의에 주신 수식입니다. 전일신호발생 후 금일 연속으로 신호발생을 보려는 건데 아래 수식은 전일만 나오는거 아닌가요? 1 var : R(0),A(0),B(0); R = RSI(20); A=iff( (high==low), 0, volume*(close-low)/(high-low)); B=iff( (high==low), 0, volume*(high-close)/(high-low)); Condition1 = C > O and R[1] < 64 and R>64 and (A>=B*5 or B==0); if Condition1[1] == true and R>64 and (A>=B*5 or B==0) Then Find(1);