항상 노고에 감사드림니다.
아래의 수식을 종목검색식으로 부탁드림니다.
A=sum((h+l+c)/3*v);
B=valuewhen(1,date !=date(1), A(1));
A1=sum(v);
B1=valuewhen(1,date !=date(1), A(1));
VWAP=(A-B)/(A1-B1);
RSI_VWAP=
sum(if(VWAP-VWAP(1)>0,
VWAP-VWAP(1),0),17)/
sum(if(VWAP-VWAP(1)>0,
VWAP-VWAP(1),VWAP(1)-VWAP),
17)*100;
Crossup(RSI_VWAP,20)
답변 1
예스스탁
예스스탁 답변
2024-12-05 11:45:54
안녕하세요
예스스탁입니다.
var : A(0),B(0),A1(0),B1(0),VWAP(0),RSI_VWAP(0);
A = Accum((h+l+c)/3*v);
if sDate != sDate[1] Then
B = A[1];
A1 = Accum(v);
if sDate != sDate[1] Then
B1 = A[1];
VWAP=(A-B)/(A1-B1);
RSI_VWAP=
AccumN(iff(VWAP-VWAP[1]>0,
VWAP-VWAP[1],0),17)/
AccumN(iff(VWAP-VWAP[1]>0,
VWAP-VWAP[1],VWAP[1]-VWAP),
17)*100;
if Crossup(RSI_VWAP,20) Then
Find(1);
즐거운 하루되세요
> 존슨비치 님이 쓴 글입니다.
> 제목 : 종목검색식 부탁드림니다.
> 항상 노고에 감사드림니다.
아래의 수식을 종목검색식으로 부탁드림니다.
A=sum((h+l+c)/3*v);
B=valuewhen(1,date !=date(1), A(1));
A1=sum(v);
B1=valuewhen(1,date !=date(1), A(1));
VWAP=(A-B)/(A1-B1);
RSI_VWAP=
sum(if(VWAP-VWAP(1)>0,
VWAP-VWAP(1),0),17)/
sum(if(VWAP-VWAP(1)>0,
VWAP-VWAP(1),VWAP(1)-VWAP),
17)*100;
Crossup(RSI_VWAP,20)