예스스탁
예스스탁 답변
2025-08-13 12:48:25
안녕하세요
예스스탁입니다.
1
input : AvgLen(17),기준선(0);
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);
var2 = IfF(nRes<0,nRes,0);
if CrossUp(var1,0) Then
Find(1);
2
input : AvgLen(17),기준선(0);
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);
var2 = IfF(nRes<0,nRes,0);
if var1 > 0 and var1 > var1[1] Then
Find(1);
즐거운 하루되세요
> 일지매7 님이 쓴 글입니다.
> 제목 : 종목 검색부탁드립니다.
> 1. 아래 수식을 참조하여,
수식1) 이 기준선 0 을 돌파할때 종목 검색식 부탁드립니다.
2. 수식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 17
기준선 0