커뮤니티

수식변환

프로필 이미지
saeroi
2024-08-30 17:03:55
778
글번호 183003
답변완료
1. 지표관련 챠트에 지표(라인)로 추가할 수 있도록 변환 부탁드립니다. A=shift(C,-25); B=BBandsUp(240,2); Valuewhen(1, CrossUp(A,B),B) 2. 종목검색 1 A=shift(C,-25); B=BBandsUp(240,2); 조건=valuewhen(1, crossUp(A,B),B); CrossUp(C,조건) 3. 종목검색 2 B1=BBandsup(120,1); B2=BBandsup(20,2); B3=BWI(20,2); R=RSI(14); M=MACD(5,12); M>0 and R>=70 and B3>B3(1) and C>B1 and crossUP(C,B2) 4. 종목검색 3 B=sum(v*((Pow((C-L),2) - Pow((H-C),2))/(H-L))); B>B(1) and C>C(20) and (ma(C,5)>ma(C,10) or ma(C,5)>ma(C,20)) and C>BBandsUp(20,2,25) and V>highest(V(1),19) and CrossUp(C,Highest(H,19,1))
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2024-08-30 17:40:51

안녕하세요 예스스탁입니다. 1 var : B(0); B = BollBandUp(240,2); if CrossUp(C,B[25]) Then var1 = B; if var1 > 0 Then Plot1(var1); 2 var : B(0); B = BollBandUp(240,2); if CrossUp(C,B[25]) Then var1 = B; if CrossUp(C,var1) Then Find(1); 3 var : B1(0),B2(0),B3(0),R(0),MM(0); B1=BollBandUp(120,1); B2=BollBandUp(20,2); B3=(BollBandUp(20,2) - BollBandDown(20,2))/ ma(C,20); R=RSI(14); MM=MACD(5,12); if MM>0 and R>=70 and B3>B3[1] and C>B1 and crossUP(C,B2) Then Find(1); 4 var : B(0); B=Accum(v*((Pow((C-L),2) - Pow((H-C),2))/(H-L))); if B>B[1] and C>C[20] and (ma(C,5)>ma(C,10) or ma(C,5)>ma(C,20))and C>BollBandUp(20,2)[25] and V>highest(V,19)[1] and CrossUp(C,Highest(H,19)[1]) Then Find(1); 즐거운 하루되세요 > saeroi 님이 쓴 글입니다. > 제목 : 수식변환 > 1. 지표관련 챠트에 지표(라인)로 추가할 수 있도록 변환 부탁드립니다. A=shift(C,-25); B=BBandsUp(240,2); Valuewhen(1, CrossUp(A,B),B) 2. 종목검색 1 A=shift(C,-25); B=BBandsUp(240,2); 조건=valuewhen(1, crossUp(A,B),B); CrossUp(C,조건) 3. 종목검색 2 B1=BBandsup(120,1); B2=BBandsup(20,2); B3=BWI(20,2); R=RSI(14); M=MACD(5,12); M>0 and R>=70 and B3>B3(1) and C>B1 and crossUP(C,B2) 4. 종목검색 3 B=sum(v*((Pow((C-L),2) - Pow((H-C),2))/(H-L))); B>B(1) and C>C(20) and (ma(C,5)>ma(C,10) or ma(C,5)>ma(C,20)) and C>BBandsUp(20,2,25) and V>highest(V(1),19) and CrossUp(C,Highest(H,19,1))