항상 노고에 감사드림니다.
아래의 수식을 종목검색식으로 부탁드림니다.
A=(predayhigh()+predaylow()+predayclose())/3+predayhigh()-predaylow();
전일=Valuewhen(1, DATE(0) != DATE(1), C(1));
B=(C/전일-1)*100;
첫봉신호=
V>=50000 &&
C>O*1.01 &&
C>Predayhigh() &&
RSI(14)>= 70 &&
Crossup(C,A) &&
(B>=1) && (B <=10);
cnt=Countsince(date!=date(1), 첫봉신호);
cnt== 1 && cnt(1)==0
답변 1
예스스탁
예스스탁 답변
2025-09-26 10:32:07.0
안녕하세요
예스스탁입니다.
var : A(0),전일(0), B(0),첫봉신호(False),cnt(0);
A=(dayhigh(1)+daylow(1)+dayclose(1))/3+dayhigh(1)-daylow(1);
if sDate != sDate[1] Then
{
전일 = C[1];
cnt = 0;
}
B=(C/전일-1)*100;
첫봉신호= V>=50000 && C>O*1.01 && C>dayhigh(1) &&
RSI(14)>= 70 && Crossup(C,A) && (B>=1) && (B <=10);
if 첫봉신호 == true Then
cnt = cnt+1;
if cnt== 1 && cnt[1]==0 Then
Find(1);
즐거운 하루되세요
> 존슨비치 님이 쓴 글입니다.
> 제목 : 종목검색식 부탁드림니다.
> 항상 노고에 감사드림니다.
아래의 수식을 종목검색식으로 부탁드림니다.
A=(predayhigh()+predaylow()+predayclose())/3+predayhigh()-predaylow();
전일=Valuewhen(1, DATE(0) != DATE(1), C(1));
B=(C/전일-1)*100;
첫봉신호=
V>=50000 &&
C>O*1.01 &&
C>Predayhigh() &&
RSI(14)>= 70 &&
Crossup(C,A) &&
(B>=1) && (B <=10);
cnt=Countsince(date!=date(1), 첫봉신호);
cnt== 1 && cnt(1)==0