커뮤니티

종목 검색부탁드립니다.

프로필 이미지
일지매7
2025-06-26 16:30:36
144
글번호 192125
답변완료
1. 수식1) 이 "기준선 0선"을 돌파할때 종목 검색식 부탁드립니다. 수식1) xClose = close; xOpen = open; xVolume = volume; nVolAccum = SUM(if(xClose > xOpen, xVolume, if(xClose < xOpen, -xVolume, 0)) ,AvgLen); nRes = nVolAccum / AvgLen; IF(nRes>0,nRes,0) 수식2) IF(nRes<0,nRes,0) -------------- 지표조건 AvgLen 25
종목검색
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2025-06-27 08:29:19

안녕하세요 예스스탁입니다. input : AvgLen(25); var : xclose(0),xopen(0),xvolume(0),nVolAccum(0),nRes(0); xClose = close; xOpen = open; xVolume = volume; nVolAccum = AccumN(iff(xClose > xOpen, xVolume, iff(xClose < xOpen, -xVolume, 0)) ,AvgLen); nRes = nVolAccum / AvgLen; var1 = IfF(nRes>0,nRes,0); if CrossUp(var1,0) Then Find(1); 즐거운 하루되세요 > 일지매7 님이 쓴 글입니다. > 제목 : 종목 검색부탁드립니다. > 1. 수식1) 이 "기준선 0선"을 돌파할때 종목 검색식 부탁드립니다. 수식1) xClose = close; xOpen = open; xVolume = volume; nVolAccum = SUM(if(xClose > xOpen, xVolume, if(xClose < xOpen, -xVolume, 0)) ,AvgLen); nRes = nVolAccum / AvgLen; IF(nRes>0,nRes,0) 수식2) IF(nRes<0,nRes,0) -------------- 지표조건 AvgLen 25