키움신호를 종목검색식으로 변환 부탁드립니다.
감사합니다..
//cumulative volume
VV=highest(V(1), period1);
sumV=sum(V(1), period1);
if(V>=VV and C>O, C*2, 0);
count=barssince((V>=VV or V>=sumV*ratio)
and C>O);
count2=barssince(count>0 and count <20
and v<=eavg(v(1), 5)*ratio2
and c<=lowest(c(1), 5));
if(count2>0 and count2 <10 and
C>highest(C(1), 5), 1, 0)
지표변수
midPeriod 26
Period 20
D1 2
period1 250
답변 1
예스스탁
예스스탁 답변
2024-06-21 15:20:43
안녕하세요
예스스탁입니다.
input : period1(250),ratio(0.5),ratio2(0.5);
var : vv(0),sumV(0),count(-1),count2(-1);
//cumulative volume
VV = highest(V, period1)[1];
sumV = AccumN(V, period1)[1];
iff(V>=VV and C>O, C*2, 0);
if (V>=VV or V>=sumV*ratio)and C>O Then
count = 0;
Else
{
if count >= 0 Then
count = count+1;
}
if count>0 and count <20 and v<=Ema(v, 5)[1]*ratio2 and c<=lowest(c, 5)[1] Then
count2 = 0;
Else
{
if count2 >= 0 Then
count2 = count2+1;
}
if count2>0 and count2 <10 and C>highest(C, 5)[1] Then
Find(1);
즐거운 하루되세요
> 오말리 님이 쓴 글입니다.
> 제목 : 종목 검색식으로 변환 부탁드립니다.
> 키움신호를 종목검색식으로 변환 부탁드립니다.
감사합니다..
//cumulative volume
VV=highest(V(1), period1);
sumV=sum(V(1), period1);
if(V>=VV and C>O, C*2, 0);
count=barssince((V>=VV or V>=sumV*ratio)
and C>O);
count2=barssince(count>0 and count <20
and v<=eavg(v(1), 5)*ratio2
and c<=lowest(c(1), 5));
if(count2>0 and count2 <10 and
C>highest(C(1), 5), 1, 0)
지표변수
midPeriod 26
Period 20
D1 2
period1 250