답변완료
종목검색식 부탁드림니다.
항상 노고에 감사드림니다.
아래의 수식을 종목검색식으로 부탁드림니다.
1)수식
N=20;
N1=SAR(0.0025, 0.2);
A=Crossdown(C, N1);
K=Ref(Highest(C, N), 1);
B=Crossup(C, K);
B && Highest(if(a,1,0), N)>= 1 && !Ref(B,1)
2)수식
음봉=C<O;
이동10=MA(C, 10);
음봉(2) && 음봉(1) &&
C(2)>C(1) &&
O(2)> O(1) &&
O(2)> C(1) *(1+7/100) &&
Crossup(C, 이동10) &&
L< C(1) && C> O(2);
2025-08-15
154
글번호 193274
종목검색
답변완료
문의드립니다.
안녕하세요. 운영자님
아래 지표는 예전에 요청드려 받은 결과인데 추가적으로 요청드릴 사항이 있어 부탁드립니다.
우선 캔들 하나하나에 대한 Cumulative Volume Delta (CVD) 을 체크하기 위해 지표를 캔들형태로 만들고 % 값을 캔들에 나타나도록 가능한지 문의드립니다. 글로는 제가 요청드릴 사항이 이해되지 않으실 수 있어서 관련 동영상 링크롤 보시면서 가능하신지 봐 주셨으면 합니다.
https://www.youtube.com/watch?v=BHYta_mQFuk&t=2209s
=======================================================================================
안녕하세요
예스스탁입니다.
input: cumulation_length(14);
var : upper_wick(0),lower_wick(0),spread(0),body_length(0);
var : percent_upper_wick(0),percent_lower_wick(0),percent_body_length(0);
var : buying_volume(0),selling_volume(0);
var : cumulative_buying_volume(0),cumulative_selling_volume(0);
var : volume_strength_wave(0),ema_volume_strength_wave(0),cumulative_volume_delta(0);
upper_wick = iff(close>open , high-close , high-open);
lower_wick = iff(close>open , open-low , close-low);
spread = high-low;
body_length = spread - (upper_wick + lower_wick);
percent_upper_wick = upper_wick/spread;
percent_lower_wick = lower_wick/spread;
percent_body_length = body_length/spread;
buying_volume = iff(close>open , (percent_body_length + (percent_upper_wick + percent_lower_wick)/2)*volume , ((percent_upper_wick + percent_lower_wick)/2) * volume);
selling_volume = iff(close<open , (percent_body_length + (percent_upper_wick + percent_lower_wick)/2)*volume , ((percent_upper_wick + percent_lower_wick)/2) * volume);
cumulative_buying_volume = ema(buying_volume,cumulation_length);
cumulative_selling_volume = ema(selling_volume,cumulation_length);
volume_strength_wave = iff(cumulative_buying_volume > cumulative_selling_volume , cumulative_buying_volume , cumulative_selling_volume);
ema_volume_strength_wave = ema(volume_strength_wave , cumulation_length);
cumulative_volume_delta = cumulative_buying_volume - cumulative_selling_volume;
plot1(cumulative_buying_volume,"cumulative_buying_volume",green);
plot2(cumulative_selling_volume,"cumulative_selling_volume",red);
plot3(ema_volume_strength_wave,"ema_volume_strength_wave",gray);
plot4(cumulative_volume_delta,"cumulative_volume_delta",iff(cumulative_volume_delta>0 ,green , red));
즐거운 하루되세요
> 고박사122 님이 쓴 글입니다.
> 제목 : 문의드립니다.
> 안녕하세요. 운영자님
이번에 문의드릴 사항은 Cumulative Volume Delta (CVD) 지표를 구현할 수 있는지 문의 드립니다.
Cumulative Volume Delta (CVD) = 시장가 매수 - 시장가 매도
수고하세요.
2025-08-14
175
글번호 193270
지표