답변완료
볼린저밴드
안녕하세요.
볼린저밴드를 사용하는데.. 키움과 비교해보니 수치가 달라서요.
키움의 볼린저밴드 수식은 아래와 같습니다.
중심값 = (종가+고가+저가)/3의 단순이동평균 사용
---------------
수식1>
eavg((C+H+L)/3, 20)
수식2>
eavg((C+H+L)/3, 20)+2*stdev((C+H+L)/3, 20)
수식3>
eavg((C+H+L)/3, 20)-2*stdev((C+H+L)/3, 20)
--------------
키움과 동일하게 사용하려면 어떻게 하면 될까요?
그리고, 예스에서 사용하는 볼린저밴드 중심선의 이동평균의 수치좀 부탁 드립니다.
항상 감사합니다.
좋은 하루 보내세요.
2024-12-06
549
글번호 185993
지표
답변완료
종목검색식 부탁드림니다.
항상 노고에 감사드림니다.
아래의 수식은 목록 90317번에 문의 드렸던 종목검색식으로 마지막수식만 수정한 부분으로 다시종목검색 되도록 부탁드림니다.
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;
RSI_VWAP<=20;
2024-12-05
519
글번호 185984
종목검색
답변완료
YesStock으로 변환 부탁드립니다.
항상 친절하고 빠른 답변에 감사를 드립니다.
다음의 트레이딩뷰의 코딩을 YesStock에 맞게 변환을 부탁드립니다.
//indicator(title='UT Bot Alerts', overlay=true)
// Inputs
a = input(1, title='Key Vaule. ₩'This changes the sensitivity₩'')
c = input(10, title='ATR Period')
h = input(false, title='Signals from Heikin Ashi Candles')
xATR = ta.atr(c)
nLoss = a * xATR
srcu = h ? request.security(ticker.heikinashi(syminfo.tickerid), timeframe.period, close, lookahead=barmerge.lookahead_off) : close
xATRTrailingStop = 0.0
iff_1 = srcu > nz(xATRTrailingStop[1], 0) ? srcu - nLoss : srcu + nLoss
iff_2 = srcu < nz(xATRTrailingStop[1], 0) and srcu[1] < nz(xATRTrailingStop[1], 0) ? math.min(nz(xATRTrailingStop[1]), srcu + nLoss) : iff_1
xATRTrailingStop := srcu > nz(xATRTrailingStop[1], 0) and srcu[1] > nz(xATRTrailingStop[1], 0) ? math.max(nz(xATRTrailingStop[1]), srcu - nLoss) : iff_2
pos = 0
iff_3 = srcu[1] > nz(xATRTrailingStop[1], 0) and srcu < nz(xATRTrailingStop[1], 0) ? -1 : nz(pos[1], 0)
pos := srcu[1] < nz(xATRTrailingStop[1], 0) and srcu > nz(xATRTrailingStop[1], 0) ? 1 : iff_3
xcolor = pos == -1 ? color.red : pos == 1 ? color.green : color.blue
ema = ta.ema(srcu, 1)
above = ta.crossover(ema, xATRTrailingStop)
below = ta.crossover(xATRTrailingStop, ema)
buy = srcu > xATRTrailingStop and above
sell = srcu < xATRTrailingStop and below
barbuy = srcu > xATRTrailingStop
barsell = srcu < xATRTrailingStop
plotshape(buy, title='Buy', text='Buy', style=shape.labelup, location=location.belowbar, color=color.new(color.green, 0), textcolor=color.new(color.white, 0), size=size.tiny)
plotshape(sell, title='Sell', text='Sell', style=shape.labeldown, location=location.abovebar, color=color.new(color.red, 0), textcolor=color.new(color.white, 0), size=size.tiny)
barcolor(barbuy ? color.green : na)
barcolor(barsell ? color.red : na)
alertcondition(buy, 'UT Long', 'UT Long')
alertcondition(sell, 'UT Short', 'UT Short')
2024-12-05
479
글번호 185982
시스템