커뮤니티

문의드립니다.

프로필 이미지
고박사122
2025-06-06 18:55:06
269
글번호 191480
답변완료
안녕하세요. 운영자님 이번에 문의드릴 사항은 Cumulative Volume Delta (CVD) 지표를 구현할 수 있는지 문의 드립니다. Cumulative Volume Delta (CVD) = 시장가 매수 - 시장가 매도 수고하세요.
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2025-06-09 16:04:33

안녕하세요 예스스탁입니다. 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) = 시장가 매수 - 시장가 매도 수고하세요.