커뮤니티

수식변경 부탁드립니다.

프로필 이미지
james79
2024-04-05 12:20:57
1150
글번호 178309
답변완료
아래에 지표를 예스트레이더로 지표 / 검색 / 강조 / 시스템 4개로 변경 부탁드립니다. ========================================================================= < 스토케스틱RSI 지표 > (수식1) %K rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; ma(R, smoothK); (수식2) %D rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K=ma(R, smoothK); ma(k, smoothD); - 지표조건설정 R기간 : 14 S기간 : 14 smoothK : 3 smoothD : 3 ========================================================================= < 강세약세 수식 > rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K=ma(R, smoothK); D=ma(k, smoothD); A=eavg(c,50); B=eavg(c,100); 조건=A>B && C>=A && CROSSUP(K,20) && (L(1)<=A*1.01 OR L<=A*1.01); 조건 && !조건(1) - 지표조건설정 R기간 : 14 S기간 : 14 smoothK : 3 smoothD : 3 =========================================================================
지표
답변 3
프로필 이미지

예스스탁 예스스탁 답변

2024-04-05 15:12:13

안녕하세요 예스스탁입니다. 1 지표 input : R기간(14),S기간(14),smoothK(3),smoothD(3); var : rsi1(0),R(0),K(0),D(0); rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K = ma(R, smoothK); D = ma(L, smoothD); Plot1(K,"%K"); Plot2(D,"%D"); PlotBaseLine1(20); PlotBaseLine2(80); 2. 검색 input : R기간(14),S기간(14),smoothK(3),smoothD(3); var : rsi1(0),R(0),K(0),D(0),A(0),B(0); rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K = ma(R, smoothK); D = ma(L, smoothD); A = Ema(c,50); B = Ema(c,100); Condition1 = A>B && C>=A && CROSSUP(K,20) && (L[1]<=A*1.01 OR L<=A*1.01); if Condition1 == true and Condition1[1] == False Then Plot1(L,"검색",Magenta); 3. 강조 input : R기간(14),S기간(14),smoothK(3),smoothD(3); var : rsi1(0),R(0),K(0),D(0),A(0),B(0); rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K = ma(R, smoothK); D = ma(L, smoothD); A = Ema(c,50); B = Ema(c,100); Condition1 = A>B && C>=A && CROSSUP(K,20) && (L[1]<=A*1.01 OR L<=A*1.01); if Condition1 == true and Condition1[1] == False Then PlotPaintBar(H,L,"강조",Magenta); 4. 시스템 input : R기간(14),S기간(14),smoothK(3),smoothD(3); var : rsi1(0),R(0),K(0),D(0),A(0),B(0); rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K = ma(R, smoothK); D = ma(L, smoothD); A = Ema(c,50); B = Ema(c,100); Condition1 = A>B && C>=A && CROSSUP(K,20) && (L[1]<=A*1.01 OR L<=A*1.01); if Condition1 == true and Condition1[1] == False Then buy(); 즐거운 하루되세요 > james79 님이 쓴 글입니다. > 제목 : 수식변경 부탁드립니다. > 아래에 지표를 예스트레이더로 지표 / 검색 / 강조 / 시스템 4개로 변경 부탁드립니다. ========================================================================= < 스토케스틱RSI 지표 > (수식1) %K rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; ma(R, smoothK); (수식2) %D rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K=ma(R, smoothK); ma(k, smoothD); - 지표조건설정 R기간 : 14 S기간 : 14 smoothK : 3 smoothD : 3 ========================================================================= < 강세약세 수식 > rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K=ma(R, smoothK); D=ma(k, smoothD); A=eavg(c,50); B=eavg(c,100); 조건=A>B && C>=A && CROSSUP(K,20) && (L(1)<=A*1.01 OR L<=A*1.01); 조건 && !조건(1) - 지표조건설정 R기간 : 14 S기간 : 14 smoothK : 3 smoothD : 3 =========================================================================
프로필 이미지

james79

2024-04-12 18:30:22

답변이 늦었습니다! 너무 감사합니다.~~ 항상 건강하세요 > 예스스탁 님이 쓴 글입니다. > 제목 : Re : 수식변경 부탁드립니다. > 안녕하세요 예스스탁입니다. 1 지표 input : R기간(14),S기간(14),smoothK(3),smoothD(3); var : rsi1(0),R(0),K(0),D(0); rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K = ma(R, smoothK); D = ma(L, smoothD); Plot1(K,"%K"); Plot2(D,"%D"); PlotBaseLine1(20); PlotBaseLine2(80); 2. 검색 input : R기간(14),S기간(14),smoothK(3),smoothD(3); var : rsi1(0),R(0),K(0),D(0),A(0),B(0); rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K = ma(R, smoothK); D = ma(L, smoothD); A = Ema(c,50); B = Ema(c,100); Condition1 = A>B && C>=A && CROSSUP(K,20) && (L[1]<=A*1.01 OR L<=A*1.01); if Condition1 == true and Condition1[1] == False Then Plot1(L,"검색",Magenta); 3. 강조 input : R기간(14),S기간(14),smoothK(3),smoothD(3); var : rsi1(0),R(0),K(0),D(0),A(0),B(0); rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K = ma(R, smoothK); D = ma(L, smoothD); A = Ema(c,50); B = Ema(c,100); Condition1 = A>B && C>=A && CROSSUP(K,20) && (L[1]<=A*1.01 OR L<=A*1.01); if Condition1 == true and Condition1[1] == False Then PlotPaintBar(H,L,"강조",Magenta); 4. 시스템 input : R기간(14),S기간(14),smoothK(3),smoothD(3); var : rsi1(0),R(0),K(0),D(0),A(0),B(0); rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K = ma(R, smoothK); D = ma(L, smoothD); A = Ema(c,50); B = Ema(c,100); Condition1 = A>B && C>=A && CROSSUP(K,20) && (L[1]<=A*1.01 OR L<=A*1.01); if Condition1 == true and Condition1[1] == False Then buy(); 즐거운 하루되세요 > james79 님이 쓴 글입니다. > 제목 : 수식변경 부탁드립니다. > 아래에 지표를 예스트레이더로 지표 / 검색 / 강조 / 시스템 4개로 변경 부탁드립니다. ========================================================================= < 스토케스틱RSI 지표 > (수식1) %K rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; ma(R, smoothK); (수식2) %D rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K=ma(R, smoothK); ma(k, smoothD); - 지표조건설정 R기간 : 14 S기간 : 14 smoothK : 3 smoothD : 3 ========================================================================= < 강세약세 수식 > rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K=ma(R, smoothK); D=ma(k, smoothD); A=eavg(c,50); B=eavg(c,100); 조건=A>B && C>=A && CROSSUP(K,20) && (L(1)<=A*1.01 OR L<=A*1.01); 조건 && !조건(1) - 지표조건설정 R기간 : 14 S기간 : 14 smoothK : 3 smoothD : 3 =========================================================================
프로필 이미지

james79

2024-04-15 09:55:09

제가 해보니까 잘 나타나지 않네요~~ 다시 주정 바랍니다. > james79 님이 쓴 글입니다. > 제목 : 수식변경 부탁드립니다. > 아래에 지표를 예스트레이더로 지표 / 검색 / 강조 / 시스템 4개로 변경 부탁드립니다. ========================================================================= < 스토케스틱RSI 지표 > (수식1) %K rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; ma(R, smoothK); (수식2) %D rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K=ma(R, smoothK); ma(k, smoothD); - 지표조건설정 R기간 : 14 S기간 : 14 smoothK : 3 smoothD : 3 ========================================================================= < 강세약세 수식 > rsi1 = rsi(R기간); R = (rsi1 - lowest(rsi1,S기간)) / (highest(rsi1,S기간) - lowest(rsi1,S기간)) * 100; K=ma(R, smoothK); D=ma(k, smoothD); A=eavg(c,50); B=eavg(c,100); 조건=A>B && C>=A && CROSSUP(K,20) && (L(1)<=A*1.01 OR L<=A*1.01); 조건 && !조건(1) - 지표조건설정 R기간 : 14 S기간 : 14 smoothK : 3 smoothD : 3 =========================================================================