답변완료
지표수식 요청드립니다.
폭염에 수고많으세요
Y=floor(date/10000);
YC=Valuewhen(1, Y!=Y(1), C(1));
YO=Valuewhen(2, Y!=Y(1), O);
M=floor(date/100);
MC=Valuewhen(1, M!=M(1), C(1));
MO=Valuewhen(2, M!=M(1), O);
D=요일(date);
WC=Valuewhen(1, D<D(1), C(1));
WO=Valuewhen(2, D<D(1), O);
(YC+YO+MC+MO+WC+WO)/6
지표수식 부탁드립니다. 항상 건강하세요 감사합니다.
2025-08-21
209
글번호 193413
지표
답변완료
검색식 변환 부탁드립니다.
A= if(OBV()>=avg(ma(OBV(),9,단순),20),OBV(),0);
B= if(OBV()<avg(ma(OBV(),9,단순),20),OBV(),0);
D= avg(ma(OBV(),9,단순),20)+2*stdev(ma(OBV(),9,단순),20);
A>B && A>0 && A>D
키움에서 stdev함수의 정확한 수치가 공개 되어 있지 않다면 예스트레이터의 표준편차
함수를 사용하여 변환해 주시면 감사하겠습니다.
즐거운 하루 보내세요
2025-08-21
229
글번호 193410
종목검색
답변완료
검색식 부탁 드려요
1. 아래 수식을 참조하여'
수식4) 가 기준선0 위에 있는 모든 종목 검색식 부탁드려요.
----------아래--------------------
수식1)
// 캔들 구성 요소 계산
upper_wick = if(C>O, H-C, H-O);
lower_wick = if(C>O, O-L, C-L);
spread = H-L;
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 = if(C>O, (percent_body_length + (percent_upper_wick + percent_lower_wick)/2)*V, ((percent_upper_wick + percent_lower_wick)/2)*V);
// 누적 매수 거래량
eavg(buying_volume, cumulation_length)
수식2)
// 기본 계산 (수식1과 동일)
upper_wick = if(C>O, H-C, H-O);
lower_wick = if(C>O, O-L, C-L);
spread = H-L;
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;
// 매도 거래량
selling_volume = if(C<O, (percent_body_length + (percent_upper_wick + percent_lower_wick)/2)*V, ((percent_upper_wick + percent_lower_wick)/2)*V);
// 누적 매도 거래량
eavg(selling_volume, cumulation_length)
수식3)
// 누적 거래량 계산
cumulative_buying = eavg(if(C>O, (((H-L)-(if(C>O,H-C,H-O)+if(C>O,O-L,C-L)))/(H-L) + ((if(C>O,H-C,H-O)+if(C>O,O-L,C-L))/2)/(H-L))*V, (((if(C>O,H-C,H-O)+if(C>O,O-L,C-L))/2)/(H-L))*V), cumulation_length);
cumulative_selling = eavg(if(C<O, (((H-L)-(if(C>O,H-C,H-O)+if(C>O,O-L,C-L)))/(H-L) + ((if(C>O,H-C,H-O)+if(C>O,O-L,C-L))/2)/(H-L))*V, (((if(C>O,H-C,H-O)+if(C>O,O-L,C-L))/2)/(H-L))*V), cumulation_length);
// 거래량 강도 파동의 EMA
volume_strength = if(cumulative_buying > cumulative_selling, cumulative_buying, cumulative_selling);
eavg(volume_strength, cumulation_length)
수식4)
// 매수/매도 거래량 재계산
buying_vol = eavg(if(C>O, (((H-L)-(if(C>O,H-C,H-O)+if(C>O,O-L,C-L)))/(H-L) + ((if(C>O,H-C,H-O)+if(C>O,O-L,C-L))/2)/(H-L))*V, (((if(C>O,H-C,H-O)+if(C>O,O-L,C-L))/2)/(H-L))*V), cumulation_length);
selling_vol = eavg(if(C<O, (((H-L)-(if(C>O,H-C,H-O)+if(C>O,O-L,C-L)))/(H-L) + ((if(C>O,H-C,H-O)+if(C>O,O-L,C-L))/2)/(H-L))*V, (((if(C>O,H-C,H-O)+if(C>O,O-L,C-L))/2)/(H-L))*V), cumulation_length);
// 델타 계산
buying_vol - selling_vol
-------
지표조건
cumulation_leng 28
기준선 0
2025-08-21
186
글번호 193398
종목검색