피봇2=(predayhigh()+predaylow()+predayclose())/3+predayhigh()-predaylow();
신호=
V>50000 &&
C>O*1.01 &&
C>predayhigh() &&
RSI(14)>=70 &&
Crossup(C,피봇2);
cnt=countsince(date!=date(1),신호);
cnt==1 && cnt(1)==0
30분봉상에서 장중에 신호가 한번이라도 뜬 종목을 검출하고 싶습니다 (__)
늘 감사드립니다:)
답변 1
예스스탁
예스스탁 답변
2025-06-12 14:09:14
안녕하세요
예스스탁입니다.
var : 피봇2(0),신호(False),cnt(0);
피봇2=(dayhigh(1)+daylow(1)+dayclose(1))/3+dayhigh(1)-daylow(1);
신호= V>50000 && C>O*1.01 && C>dayhigh(1) && RSI(14)>=70 && Crossup(C,피봇2);
if sDate != sDate[1] Then
cnt = 0;
if 신호 == true Then
cnt = cnt+1;
if cnt==1 && cnt[1]==0 Then
Find(1);
즐거운 하루되세요
> 살빼고싶다 님이 쓴 글입니다.
> 제목 : 조건검색식 문의드립니다.
> 피봇2=(predayhigh()+predaylow()+predayclose())/3+predayhigh()-predaylow();
신호=
V>50000 &&
C>O*1.01 &&
C>predayhigh() &&
RSI(14)>=70 &&
Crossup(C,피봇2);
cnt=countsince(date!=date(1),신호);
cnt==1 && cnt(1)==0
30분봉상에서 장중에 신호가 한번이라도 뜬 종목을 검출하고 싶습니다 (__)
늘 감사드립니다:)