커뮤니티

종목검색식 부탁드림니다.

프로필 이미지
존슨비치
2024-09-11 11:23:00
436
글번호 183366
답변완료
항상 노고에 감사드림니다. 아래의 수식을 종목검색식으로 부탁드림니다. aa=(highestsince(1,crossup(trix(20),0),c)+ lowestsince(1,crossdown(trix(20),0),c))/2;//안전선 a=Highest(h(1),20, 1); a1=Highest(h(1),40, 1); a2=Highest(h(1),60, 1); crossup(c,a) and crossup(c,a1) and crossup(c,a2) and c>aa and SUM(if(V(1)*2<= V, 1,0),3) //100 and c>predayclose() and o(1)/c(1)>0.5 and L/H>0.7 and H/C>0.3 and C>dayopen() and Disparity(5) >= 90//100 and c<predayclose()*1.15 //100 and c>BBandsup(30, 1.8) //100
종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2024-09-11 11:56:37

안녕하세요 예스스탁입니다. var : aa(0),a(0),a1(0),a2(0); var : hh(0),ll(0); var1 = TRIX(20); if CrossUp(var1,0) Then hh = c; Else { if hh > 0 and c > hh Then hh = c; } if CrossDown(var1,0) Then ll = c; Else { if ll > 0 and c < ll Then ll = c; } aa=(hh+ll)/2;//안전선 a=Highest(h[1],20)[1]; a1=Highest(h[1],40)[1]; a2=Highest(h[1],60)[1]; if crossup(c,a) and crossup(c,a1) and crossup(c,a2) and c>aa and AccumN(iff(V[1]*2<= V, 1,0),3) //100 and c>dayclose(1) and o[1]/c[1]>0.5 and L/H>0.7 and H/C>0.3 and C>dayopen() and Disparity(5) >= 90//100 and c<dayclose(1)*1.15 //100 and c>BollBandUp(30, 1.8) //100 Then Find(1); 즐거운 하루되세요 > 존슨비치 님이 쓴 글입니다. > 제목 : 종목검색식 부탁드림니다. > 항상 노고에 감사드림니다. 아래의 수식을 종목검색식으로 부탁드림니다. aa=(highestsince(1,crossup(trix(20),0),c)+ lowestsince(1,crossdown(trix(20),0),c))/2;//안전선 a=Highest(h(1),20, 1); a1=Highest(h(1),40, 1); a2=Highest(h(1),60, 1); crossup(c,a) and crossup(c,a1) and crossup(c,a2) and c>aa and SUM(if(V(1)*2<= V, 1,0),3) //100 and c>predayclose() and o(1)/c(1)>0.5 and L/H>0.7 and H/C>0.3 and C>dayopen() and Disparity(5) >= 90//100 and c<predayclose()*1.15 //100 and c>BBandsup(30, 1.8) //100