커뮤니티

수식요청

프로필 이미지
ksks
2024-06-25 09:00:00
945
글번호 180923
답변완료
아래는 선행스팬기준선을 13이평이 돌파하는 수식입니다. 이를 A라 할 때, A가 1봉전 or 2봉전 or 3봉전에 발생하고 이 3봉의 RSI(20)는 모두 64미만 and 0봉전 RSI(20)>64 인 종목 을 검색하는 수식으로 변환시키코자 합니다. 도와주세요. ================================================================================= INPUT : shortPeriod(9),midPeriod(26),longPeriod(52),이평(13); VAR : 선행1(0),선행2(0),고점(0),저점(0),A(0),B(0); 선행1=(highest(high,shortPeriod)+lowest(low,shortPeriod)+highest(high,midPeriod)+lowest(low,midPeriod))/4; 선행2=(highest(high,longPeriod)+lowest(low,longPeriod))/2; 고점 = Highest(선행1,25); 저점 = lowest(선행1,25); IF 선행1<선행2 TheN A=저점; B=EMA(C, 이평); IF CROSSUP(B, A) && C>O && C>C[1] && B[1]<B && (V>V[1]*2 or V[1]>V[2]*5) TheN Find(1);
종목검색
답변 3
프로필 이미지

예스스탁 예스스탁 답변

2024-06-25 13:32:43

안녕하세요 예스스탁입니다. INPUT : shortPeriod(9),midPeriod(26),longPeriod(52),이평(13),RSIP(20); VAR : 선행1(0),선행2(0),고점(0),저점(0),A(0),B(0),R(0); 선행1=(highest(high,shortPeriod)+lowest(low,shortPeriod)+highest(high,midPeriod)+lowest(low,midPeriod))/4; 선행2=(highest(high,longPeriod)+lowest(low,longPeriod))/2; 고점 = Highest(선행1,25); 저점 = lowest(선행1,25); IF 선행1<선행2 TheN A=저점; B = EMA(C, 이평); Condition1 = CrossUp(B,A); R = RSI(RSIP); IF CountIf(Condition1,3)[1] >= 1 and Lowest(R,3)[1] < 64 and R > 64 TheN Find(1); 즐거운 하루되세요 > ksks 님이 쓴 글입니다. > 제목 : 수식요청 > 아래는 선행스팬기준선을 13이평이 돌파하는 수식입니다. 이를 A라 할 때, A가 1봉전 or 2봉전 or 3봉전에 발생하고 이 3봉의 RSI(20)는 모두 64미만 and 0봉전 RSI(20)>64 인 종목 을 검색하는 수식으로 변환시키코자 합니다. 도와주세요. ================================================================================= INPUT : shortPeriod(9),midPeriod(26),longPeriod(52),이평(13); VAR : 선행1(0),선행2(0),고점(0),저점(0),A(0),B(0); 선행1=(highest(high,shortPeriod)+lowest(low,shortPeriod)+highest(high,midPeriod)+lowest(low,midPeriod))/4; 선행2=(highest(high,longPeriod)+lowest(low,longPeriod))/2; 고점 = Highest(선행1,25); 저점 = lowest(선행1,25); IF 선행1<선행2 TheN A=저점; B=EMA(C, 이평); IF CROSSUP(B, A) && C>O && C>C[1] && B[1]<B && (V>V[1]*2 or V[1]>V[2]*5) TheN Find(1);
프로필 이미지

ksks

2024-06-25 14:40:09

죄송합니다. 질문 중 "A가 1봉전 or 2봉전 or 3봉전에 발생하고 이 3봉의 RSI(20)는 모두 64미만 and 0봉전 RSI(20)>64 인 종목"을 ----> "A가 1봉전에 발생하고 RSI(20)은 64미만 and 0봉전 RSI(20)>64 인 종목" 으로 수정하고 싶읍니다. > 예스스탁 님이 쓴 글입니다. > 제목 : Re : 수식요청 > 안녕하세요 예스스탁입니다. INPUT : shortPeriod(9),midPeriod(26),longPeriod(52),이평(13),RSIP(20); VAR : 선행1(0),선행2(0),고점(0),저점(0),A(0),B(0),R(0); 선행1=(highest(high,shortPeriod)+lowest(low,shortPeriod)+highest(high,midPeriod)+lowest(low,midPeriod))/4; 선행2=(highest(high,longPeriod)+lowest(low,longPeriod))/2; 고점 = Highest(선행1,25); 저점 = lowest(선행1,25); IF 선행1<선행2 TheN A=저점; B = EMA(C, 이평); Condition1 = CrossUp(B,A); R = RSI(RSIP); IF CountIf(Condition1,3)[1] >= 1 and Lowest(R,3)[1] < 64 and R > 64 TheN Find(1); 즐거운 하루되세요 > ksks 님이 쓴 글입니다. > 제목 : 수식요청 > 아래는 선행스팬기준선을 13이평이 돌파하는 수식입니다. 이를 A라 할 때, A가 1봉전 or 2봉전 or 3봉전에 발생하고 이 3봉의 RSI(20)는 모두 64미만 and 0봉전 RSI(20)>64 인 종목 을 검색하는 수식으로 변환시키코자 합니다. 도와주세요. ================================================================================= INPUT : shortPeriod(9),midPeriod(26),longPeriod(52),이평(13); VAR : 선행1(0),선행2(0),고점(0),저점(0),A(0),B(0); 선행1=(highest(high,shortPeriod)+lowest(low,shortPeriod)+highest(high,midPeriod)+lowest(low,midPeriod))/4; 선행2=(highest(high,longPeriod)+lowest(low,longPeriod))/2; 고점 = Highest(선행1,25); 저점 = lowest(선행1,25); IF 선행1<선행2 TheN A=저점; B=EMA(C, 이평); IF CROSSUP(B, A) && C>O && C>C[1] && B[1]<B && (V>V[1]*2 or V[1]>V[2]*5) TheN Find(1);
프로필 이미지

예스스탁 예스스탁 답변

2024-06-25 14:57:48

안녕하세요 예스스탁입니다. INPUT : shortPeriod(9),midPeriod(26),longPeriod(52),이평(13),RSIP(20); VAR : 선행1(0),선행2(0),고점(0),저점(0),A(0),B(0),R(0); 선행1=(highest(high,shortPeriod)+lowest(low,shortPeriod)+highest(high,midPeriod)+lowest(low,midPeriod))/4; 선행2=(highest(high,longPeriod)+lowest(low,longPeriod))/2; 고점 = Highest(선행1,25); 저점 = lowest(선행1,25); IF 선행1<선행2 TheN A=저점; B = EMA(C, 이평); Condition1 = CrossUp(B,A); R = RSI(RSIP); IF Condition1[1] == true and R[1] < 64 and R > 64 TheN Find(1); 즐거운 하루되세요 > ksks 님이 쓴 글입니다. > 제목 : Re : Re : 수식요청 > 죄송합니다. 질문 중 "A가 1봉전 or 2봉전 or 3봉전에 발생하고 이 3봉의 RSI(20)는 모두 64미만 and 0봉전 RSI(20)>64 인 종목"을 ----> "A가 1봉전에 발생하고 RSI(20)은 64미만 and 0봉전 RSI(20)>64 인 종목" 으로 수정하고 싶읍니다. > 예스스탁 님이 쓴 글입니다. > 제목 : Re : 수식요청 > 안녕하세요 예스스탁입니다. INPUT : shortPeriod(9),midPeriod(26),longPeriod(52),이평(13),RSIP(20); VAR : 선행1(0),선행2(0),고점(0),저점(0),A(0),B(0),R(0); 선행1=(highest(high,shortPeriod)+lowest(low,shortPeriod)+highest(high,midPeriod)+lowest(low,midPeriod))/4; 선행2=(highest(high,longPeriod)+lowest(low,longPeriod))/2; 고점 = Highest(선행1,25); 저점 = lowest(선행1,25); IF 선행1<선행2 TheN A=저점; B = EMA(C, 이평); Condition1 = CrossUp(B,A); R = RSI(RSIP); IF CountIf(Condition1,3)[1] >= 1 and Lowest(R,3)[1] < 64 and R > 64 TheN Find(1); 즐거운 하루되세요 > ksks 님이 쓴 글입니다. > 제목 : 수식요청 > 아래는 선행스팬기준선을 13이평이 돌파하는 수식입니다. 이를 A라 할 때, A가 1봉전 or 2봉전 or 3봉전에 발생하고 이 3봉의 RSI(20)는 모두 64미만 and 0봉전 RSI(20)>64 인 종목 을 검색하는 수식으로 변환시키코자 합니다. 도와주세요. ================================================================================= INPUT : shortPeriod(9),midPeriod(26),longPeriod(52),이평(13); VAR : 선행1(0),선행2(0),고점(0),저점(0),A(0),B(0); 선행1=(highest(high,shortPeriod)+lowest(low,shortPeriod)+highest(high,midPeriod)+lowest(low,midPeriod))/4; 선행2=(highest(high,longPeriod)+lowest(low,longPeriod))/2; 고점 = Highest(선행1,25); 저점 = lowest(선행1,25); IF 선행1<선행2 TheN A=저점; B=EMA(C, 이평); IF CROSSUP(B, A) && C>O && C>C[1] && B[1]<B && (V>V[1]*2 or V[1]>V[2]*5) TheN Find(1);