커뮤니티

돌파 조건 검색식 부탁 합니다

프로필 이미지
님이랑
2025-02-05 09:18:13
430
글번호 187789
답변완료
A=RSI(period); B=RSI(period); 상=valuewhen(1,A,B(1)); A1=RSI(period); B1=RSI(period); 하=valuewhen(1,B1(1),A1); crossup(하,상(1)) 지표변수 period 25
종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2025-02-05 11:27:35

안녕하세요 예스스탁입니다. input : Period(25); var : A(0),B(0),상(0),A1(0),B1(0),하(0); A=RSI(period); B=RSI(period); if A > 0 Then 상 = B[1]; A1=RSI(period); B1=RSI(period); if B1[1] > 0 Then 하 = A1; if crossup(하,상[1]) Then Find(1); 즐거운 하루되세요 > 님이랑 님이 쓴 글입니다. > 제목 : 돌파 조건 검색식 부탁 합니다 > A=RSI(period); B=RSI(period); 상=valuewhen(1,A,B(1)); A1=RSI(period); B1=RSI(period); 하=valuewhen(1,B1(1),A1); crossup(하,상(1)) 지표변수 period 25