커뮤니티

부탁 드립니다

프로필 이미지
그리워
2021-04-14 11:33:10
915
글번호 148009
답변완료
aa=(highestsince(1,crossup(trix(20),0),c)+ lowestsince(1,crossdown(trix(20),0),c))/2; //100 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 //100 and SUM(if(V(1)*2<= V, 1,0),3) //100 and c>predayclose() //100 and o(1)/c(1)>0.5 //100 and L/H>0.7 //100 and H/C>0.3 //100 and C>dayopen() //100 and Disparity(5) >= 90 //100 and c<predayclose()*1.15 // 100 and c>BBandsUp(30,1.8) //100 and time >= 090200 and time <= 153000 //100 당일(오늘) 이 신호가 나온 종목을 모두 찾고 싶습니다. 지금 현재 나오는 종목이 아닌 시가 부터 이 신호가 잡힌 종목을 찾아 주셔요. 부탁 드립니다.
종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2021-04-14 15:57:18

안녕하세요 예스스탁입니다. 1 var : trixv(0),hh(0),ll(0),aa(0),a(0),a1(0),a2(0); if sdate != sdate[1] Then Condition1 = False; trixv = trix(20); if crossup(trixv,0) Then hh = C; Else { if hh > 0 and C > hh Then hh = c; } if CrossDown(trixv,0) Then ll = C; Else { if ll > 0 and C < ll Then ll = c; } aa = (hh+ll)/2; a = Highest(h, 20)[1]; a1 = Highest(h, 40)[1]; a2 = Highest(h, 60)[1]; if crossup(c,a) and crossup(c,a1) and crossup(c,a2) and c>aa //100 and AccumN(iff(V[1]*2<= V, 1,0),3) >= 1 //100 and c>dayclose(1) //100 and o[1]/c[1]>0.5 //100 and L/H>0.7 //100 and H/C>0.3 //100 and C>dayopen() //100 and Disparity(5) >= 90 //100 and c<dayclose(1)*1.15 // 100 and c>BollBandUp(30,1.8) //100 and stime >= 090200 and stime <= 153000 //100 Then Condition1 = true; if Condition1 == true Then Find(1); 2 input : per(1); var : trixv(0),hh(0),ll(0),aa(0),a(0),a1(0),a2(0); if sdate != sdate[1] Then Condition1 = False; trixv = trix(20); if crossup(trixv,0) Then hh = C; Else { if hh > 0 and C > hh Then hh = c; } if CrossDown(trixv,0) Then ll = C; Else { if ll > 0 and C < ll Then ll = c; } aa = (hh+ll)/2; a = Highest(h, 20)[1]; a1 = Highest(h, 40)[1]; a2 = Highest(h, 60)[1]; if crossup(c,a) and crossup(c,a1) and crossup(c,a2) and c>aa //100 and AccumN(iff(V[1]*2<= V, 1,0),3) >= 1 //100 and c>dayclose(1) //100 and o[1]/c[1]>0.5 //100 and L/H>0.7 //100 and H/C>0.3 //100 and C>dayopen() //100 and Disparity(5) >= 90 //100 and c<dayclose(1)*1.15 // 100 and c>BollBandUp(30,1.8) //100 and stime >= 090200 and stime <= 153000 //100 Then { Condition1 = true; var1 = C; } else { if Condition1 == true and C <= var1*(1+per/100) and C[1] > var1*(1+per/100) Then Find(1); } 즐거운 하루되세요 > 그리워 님이 쓴 글입니다. > 제목 : 부탁 드립니다 > aa=(highestsince(1,crossup(trix(20),0),c)+ lowestsince(1,crossdown(trix(20),0),c))/2; //100 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 //100 and SUM(if(V(1)*2<= V, 1,0),3) //100 and c>predayclose() //100 and o(1)/c(1)>0.5 //100 and L/H>0.7 //100 and H/C>0.3 //100 and C>dayopen() //100 and Disparity(5) >= 90 //100 and c<predayclose()*1.15 // 100 and c>BBandsUp(30,1.8) //100 and time >= 090200 and time <= 153000 //100 당일(오늘) 이 신호가 나온 종목을 모두 찾고 싶습니다. 지금 현재 나오는 종목이 아닌 시가 부터 이 신호가 잡힌 종목을 찾아 주셔요. 부탁 드립니다.