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