커뮤니티

지표 변환 부탁드립니다.

프로필 이미지
리버피닉스
2025-05-07 18:09:36
286
글번호 190625
답변완료
키움에서 쓰던 신호 지표이며, 일전에 한 번 도움을 청한 적 있는 지표입니다. 다름이 아니라, 당일 포착 포함 5일이내 포착 된 적 있으면 검색을 할 수 있는 검색식 부탁드립니다. A=bbandsup(17,2); B=bbandsup(40,2); M=EnvelopeUp(20,2); IF((c>ma(h,5) and CrossUp(A,M)) or (c>ma(h,5) and B>M and CrossUp(A,B)) or (A>B and B>M and CrossUP(C,A)) or (CrossUP(C,A) and CrossUP(C,B) and CrossUP(C,M)),1,0)
검색
답변 3
프로필 이미지

예스스탁 예스스탁 답변

2025-05-08 13:45:34

안녕하세요 예스스탁입니다. var : AA(0),BB(0),MM(0); AA=BollBandUp(17,2); BB=BollBandUp(40,2); MM=EnvelopeUp(20,2); Condition1 = (c>ma(h,5) and CrossUp(AA,MM)) or (c>ma(h,5) and BB>MM and CrossUp(AA,BB)) or (AA>BB and BB>MM and CrossUP(C,AA)) or (CrossUP(C,AA) and CrossUP(C,BB) and CrossUP(C,MM)); if CountIf(Condition1==true,5) >= 1 Then Find(1); 즐거운 하루되세요 > 리버피닉스 님이 쓴 글입니다. > 제목 : 지표 변환 부탁드립니다. > 키움에서 쓰던 신호 지표이며, 일전에 한 번 도움을 청한 적 있는 지표입니다. 다름이 아니라, 당일 포착 포함 5일이내 포착 된 적 있으면 검색을 할 수 있는 검색식 부탁드립니다. A=bbandsup(17,2); B=bbandsup(40,2); M=EnvelopeUp(20,2); IF((c>ma(h,5) and CrossUp(A,M)) or (c>ma(h,5) and B>M and CrossUp(A,B)) or (A>B and B>M and CrossUP(C,A)) or (CrossUP(C,A) and CrossUP(C,B) and CrossUP(C,M)),1,0)
프로필 이미지

리버피닉스

2025-05-09 09:16:07

안녕하세요, 답변 잘 보았습니다. 제가 설명이 좀 부족했었나 보네요. 당일 해당조건 + 당일제외 5일안에 해당조건으로 아래 조건이 2회 발생한 경우를 확인하고 싶습니다. 귀찮게 해드려 죄송합니다. > 예스스탁 님이 쓴 글입니다. > 제목 : Re : 지표 변환 부탁드립니다. > 안녕하세요 예스스탁입니다. var : AA(0),BB(0),MM(0); AA=BollBandUp(17,2); BB=BollBandUp(40,2); MM=EnvelopeUp(20,2); Condition1 = (c>ma(h,5) and CrossUp(AA,MM)) or (c>ma(h,5) and BB>MM and CrossUp(AA,BB)) or (AA>BB and BB>MM and CrossUP(C,AA)) or (CrossUP(C,AA) and CrossUP(C,BB) and CrossUP(C,MM)); if CountIf(Condition1==true,5) >= 1 Then Find(1); 즐거운 하루되세요 > 리버피닉스 님이 쓴 글입니다. > 제목 : 지표 변환 부탁드립니다. > 키움에서 쓰던 신호 지표이며, 일전에 한 번 도움을 청한 적 있는 지표입니다. 다름이 아니라, 당일 포착 포함 5일이내 포착 된 적 있으면 검색을 할 수 있는 검색식 부탁드립니다. A=bbandsup(17,2); B=bbandsup(40,2); M=EnvelopeUp(20,2); IF((c>ma(h,5) and CrossUp(A,M)) or (c>ma(h,5) and B>M and CrossUp(A,B)) or (A>B and B>M and CrossUP(C,A)) or (CrossUP(C,A) and CrossUP(C,B) and CrossUP(C,M)),1,0)
프로필 이미지

예스스탁 예스스탁 답변

2025-05-09 13:25:32

안녕하세요 예스스탁입니다. var : AA(0),BB(0),MM(0); AA=BollBandUp(17,2); BB=BollBandUp(40,2); MM=EnvelopeUp(20,2); Condition1 = (c>ma(h,5) and CrossUp(AA,MM)) or (c>ma(h,5) and BB>MM and CrossUp(AA,BB)) or (AA>BB and BB>MM and CrossUP(C,AA)) or (CrossUP(C,AA) and CrossUP(C,BB) and CrossUP(C,MM)); if Condition1 ==true and #당일 만족 CountIf(Condition1==true,6) == 2 Then #최근 6일간 2회, 2회이상이면 >= 2로 변경하시면 됩니다. Find(1); 즐거운 하루되세요 > 리버피닉스 님이 쓴 글입니다. > 제목 : Re : Re : 지표 변환 부탁드립니다. > 안녕하세요, 답변 잘 보았습니다. 제가 설명이 좀 부족했었나 보네요. 당일 해당조건 + 당일제외 5일안에 해당조건으로 아래 조건이 2회 발생한 경우를 확인하고 싶습니다. 귀찮게 해드려 죄송합니다. > 예스스탁 님이 쓴 글입니다. > 제목 : Re : 지표 변환 부탁드립니다. > 안녕하세요 예스스탁입니다. var : AA(0),BB(0),MM(0); AA=BollBandUp(17,2); BB=BollBandUp(40,2); MM=EnvelopeUp(20,2); Condition1 = (c>ma(h,5) and CrossUp(AA,MM)) or (c>ma(h,5) and BB>MM and CrossUp(AA,BB)) or (AA>BB and BB>MM and CrossUP(C,AA)) or (CrossUP(C,AA) and CrossUP(C,BB) and CrossUP(C,MM)); if CountIf(Condition1==true,5) >= 1 Then Find(1); 즐거운 하루되세요 > 리버피닉스 님이 쓴 글입니다. > 제목 : 지표 변환 부탁드립니다. > 키움에서 쓰던 신호 지표이며, 일전에 한 번 도움을 청한 적 있는 지표입니다. 다름이 아니라, 당일 포착 포함 5일이내 포착 된 적 있으면 검색을 할 수 있는 검색식 부탁드립니다. A=bbandsup(17,2); B=bbandsup(40,2); M=EnvelopeUp(20,2); IF((c>ma(h,5) and CrossUp(A,M)) or (c>ma(h,5) and B>M and CrossUp(A,B)) or (A>B and B>M and CrossUP(C,A)) or (CrossUP(C,A) and CrossUP(C,B) and CrossUP(C,M)),1,0)