키움 지표입니다.
VV=highest(V(1),period);
accumulationOpen=valuewhen(1,V>VV*2 and C(1)<C, min(C, O))
period 60
혹시 지표에 맞는 검색식도 알 수 있을까요?
답변 1
예스스탁
예스스탁 답변
2023-07-21 10:31:34
안녕하세요
1
input : Period(60);
var : vv(0),accumulationOpen(0);
VV = highest(V,period)[1];
if v > vv*2 and C[1] < C[1] Then
accumulationOpen = min(C, O);
Plot1(accumulationOpen);
2
지표값 돌파하는 종목검색식입니다.
input : Period(60);
var : vv(0),accumulationOpen(0);
VV = highest(V,period)[1];
if v > vv*2 and C[1] < C[1] Then
accumulationOpen = min(C, O);
if accumulationOpen > 0 and crossup(c,accumulationOpen) then
find(1);
즐거운 하루되세요
> euni 님이 쓴 글입니다.
> 제목 : 전환 부탁드립니다
> 키움 지표입니다.
VV=highest(V(1),period);
accumulationOpen=valuewhen(1,V>VV*2 and C(1)<C, min(C, O))
period 60
혹시 지표에 맞는 검색식도 알 수 있을까요?