커뮤니티

예스랭귀지 Q&A

글쓰기
답변완료

당일 분봉 누적음봉캔들 갯수

당일 분봉 누적음봉캔들 갯수 수식 부탁합니다
프로필 이미지
팔보채
2024-09-08
607
글번호 183263
지표
답변완료

첫번째 봉에서 Atstop 매도

안녕하세요~ 다음은 시가 기준 매매 테스트를 위해서 60분봉 차트에서 시가대비 0.5% 상승시 매수, 매수 다음 날부터 시가대비 0.5% 하락시 매도하는 시스템입니다. if MarketPosition == 0 Then Buy("BB",AtStop,DayOpen*1.005); if MarketPosition == 1 && Bdate > EntryDate Then ExitLong("EX",Atstop,DayOpen*0.995); 매도에서 첫번째 봉 다음에 적용되거나, 시가에 바로 매도 되는 경우가 있어서, 매수 다음날 Atstop방식의 매도가 정확하게 적용되게 수정 부탁드립니다. 항상 감사합니다~
프로필 이미지
일목초인
2024-09-08
666
글번호 183262
시스템
답변완료

키움수식 종목검색

period (110) signal (30) 가=(HuLL(C, period) - HuLL(C(1), period)) / HuLL(C(1), period) * 100; 나=(Hu, signal); CROSSUP(가,나)
프로필 이미지
박셰프
2024-09-08
811
글번호 183261
종목검색
답변완료

부틱드립니다

수고하십니 아래 키움수식을 예스수식로 부탁드립니다 수식1 A1 =MA(C,5,이평종류); A2 =MA(C,20,이평종류); A3 =MA(C,40,이평종류); B1 = A3>A1 && A1>A2; 조건 = valuewhen(1,B1, o); 조건 && ! 조건(1) 수식2 A1 =MA(C,5,이평종류); A2 =MA(C,20,이평종류); A3 =MA(C,40,이평종류); B2 = A1>A3 && A3>A2; 조건 = valuewhen(1,B2, o); 조건 && ! 조건(1) 수식3 A1 =MA(C,5,이평종류); A2 =MA(C,20,이평종류); A3 =MA(C,40,이평종류); B3 = A1>A2 && A2>A3; 조건 = valuewhen(1,B3, o); 조건 && ! 조건(1)
프로필 이미지
파생돌이
2024-09-08
643
글번호 183259
지표
답변완료

예스종목검색 및 시스템 매매 2가지 변환요청드립니다...

항상 감사드립니다...^^* 첨부파일은 영웅문에서 작성한 검색식 입니다.. 예스종목 검색 및 시스템 매매적용 확용할려고 합니다... 부탁드립니다..
프로필 이미지
서민순
2024-09-08
719
글번호 183258
종목검색
답변완료

수식전환

수고많으십니다 아래수식을 예스로 변환시켜 보았으나 연산자 앞뒤 두데이타의 형태가 같아야 한다면서 안되네요 ㅠ클리닉 좀 부탁드립니다^^ AA=DAYCLOSE[1]*가격1<=DAYHIGH() AND DAYLOW()*가격2<=DAYHIGH() AND DAYOPEN()*가격3<=DAYCLOSE(); A=(DAYHIGH()+DAYLOW())*0.5; Valuewhen(1,AA,A); B=DAYLOW()+((DAYHIGH()-DAYLOW())*0.382); Valuewhen(1,AA,B); BB=DAYLOW()+((DAYHIGH()-DAYLOW())*0.618); Valuewhen(1,AA,BB); 위를 변환시킨식은 아래와 같습니다 뭣이가 잘못인지요? VAR:AA(0),A(0),B(0),BB(0),가격1(1.12),가격2(1.12),가격3(1.07); AA=DAYCLOSE[1]*가격1<=DAYHIGH() AND DAYLOW()*가격2<=DAYHIGH() AND DAYOPEN()*가격3<=DAYCLOSE(); A=(DAYHIGH()+DAYLOW())*0.5; B=DAYLOW()+((DAYHIGH()-DAYLOW())*0.382); BB=DAYLOW()+((DAYHIGH()-DAYLOW())*0.618); IF DAYCLOSE[1]*가격1<=DAYHIGH() AND DAYLOW()*가격2<=DAYHIGH() AND DAYOPEN()*가격3<=DAYCLOSE() TheN VAR1=A; IF DAYCLOSE[1]*가격1<=DAYHIGH() AND DAYLOW()*가격2<=DAYHIGH() AND DAYOPEN()*가격3<=DAYCLOSE() TheN Var2=B; IF DAYCLOSE[1]*가격1<=DAYHIGH() AND DAYLOW()*가격2<=DAYHIGH() AND DAYOPEN()*가격3<=DAYCLOSE() TheN Var3=BB; Plot1(VAR1); PLOT2(Var2); PLOT3(Var3);
프로필 이미지
트라이
2024-09-08
707
글번호 183257
지표
답변완료

종가가격 수치 부탁드립니다..

15분봉 또는 30분봉에서 사용하고 싶은데요... var1 = 1시간봉 종가가격; var2 = 4시간봉 종가가격; var10 = 1시간봉 시가가격; var11 = 4시간봉 시가가격;
프로필 이미지
신나는파파
2024-09-08
840
글번호 183256
지표

lacl 님에 의해서 삭제되었습니다.

프로필 이미지
lacl
2024-09-08
12
글번호 183255
사용자 함수
답변완료

종목검색부탁드립니다.

PL= L(5) < L(9) && L(5) < L(8) && L(5) < L(7) && L(5) < L(6) && L(5) < L(4) && L(5) < L(3) && L(5) < L(2) && L(5) < L(1) && L(5) < L(0); A=valuewhen(1, PL, L(5)); A1=A(1)<A, -5; A2=MA(c, 224)<C; shift(A1&&A2, -5) 이 함수를 예스스탁 종목검색식으로 변환할수있을까요? 노고에 감사드립니다(__)
프로필 이미지
조나리
2024-09-07
627
글번호 183254
종목검색
답변완료

수식변환요청

수고하십니다. 아래 수식을 예스로 변환부탁드립니다. =============================== study("[blackcat] L3 Banker Fund Flow Trend Oscillator", overlay=false) //functions xrf(values, length) => r_val = float(na) if length >= 1 for i = 0 to length by 1 if na(r_val) or not na(values[i]) r_val := values[i] r_val r_val xsa(src,len,wei) => sumf = 0.0 ma = 0.0 out = 0.0 sumf := nz(sumf[1]) - nz(src[len]) + src ma := na(src[len]) ? na : sumf/len out := na(out[1]) ? ma : (src*wei+out[1]*(len-wei))/len out //set up a simple model of banker fund flow trend fundtrend = ((3*xsa((close- lowest(low,27))/(highest(high,27)-lowest(low,27))*100,5,1)-2*xsa(xsa((close-lowest(low,27))/(highest(high,27)-lowest(low,27))*100,5,1),3,1)-50)*1.032+50) //define typical price for banker fund typ = (2*close+high+low+open)/5 //lowest low with mid term fib # 34 lol = lowest(low,34) //highest high with mid term fib # 34 hoh = highest(high,34) //define banker fund flow bull bear line bullbearline = ema((typ-lol)/(hoh-lol)*100,13) //define banker entry signal bankerentry = crossover(fundtrend,bullbearline) and bullbearline<25 //banker fund entry with yellow candle plotcandle(0,50,0,50,color=bankerentry ? color.new(color.yellow,0):na) //banker increase position with green candle plotcandle(fundtrend,bullbearline,fundtrend,bullbearline,color=fundtrend>bullbearline ? color.new(color.green,0):na) //banker decrease position with white candle plotcandle(fundtrend,bullbearline,fundtrend,bullbearline,color=fundtrend<(xrf(fundtrend*0.95,1)) ? color.new(color.white,0):na) //banker fund exit/quit with red candle plotcandle(fundtrend,bullbearline,fundtrend,bullbearline,color=fundtrend<bullbearline ? color.new(color.red,0):na) //banker fund Weak rebound with blue candle plotcandle(fundtrend,bullbearline,fundtrend,bullbearline,color=fundtrend<bullbearline and fundtrend>(xrf(fundtrend*0.95,1)) ? color.new(color.blue,0):na) //overbought and oversold threshold lines h1 = hline(80,color=color.red, linestyle=hline.style_dotted) h2 = hline(20, color=color.yellow, linestyle=hline.style_dotted) h3 = hline(10,color=color.lime, linestyle=hline.style_dotted) h4 = hline(90, color=color.fuchsia, linestyle=hline.style_dotted) fill(h2,h3,color=color.yellow,transp=70) fill(h1,h4,color=color.fuchsia,transp=70) alertcondition(bankerentry, title='Alert on Yellow Candle', message='Yellow Candle!') alertcondition(fundtrend>bullbearline, title='Alert on Green Candle', message='Green Candle!') alertcondition(fundtrend<(xrf(fundtrend*0.95,1)), title='Alert on White Candle', message='White Candle!') alertcondition(fundtrend<bullbearline, title='Alert on Red Candle', message='Red Candle!') alertcondition(fundtrend<bullbearline and fundtrend>(xrf(fundtrend*0.95,1)), title='Alert on Blue Candle', message='Blue Candle!')
프로필 이미지
부호장자
2024-09-07
654
글번호 183253
지표