답변완료
종목검색식 부탁드려요
LL=LOWEST(L,기간);
HH=HIGHEST(H,기간);
NH=VALUEWHEN(1,H>HH(1),H);
BOX1=HIGHEST(H,기간-2)<HIGHEST(H,기간-1);
TOP=VALUEWHEN(1,BarsSince(H>HH(1))==(기간-2) AND ,BOX1,NH);
BTM=VALUEWHEN(1,BarsSince(H>HH(1))==(기간-2) AND ,BOX1,LL);
TOP>=C(1) and BTM<=C(1) and Crossup(C,TOP)
지표변수~ 기간 : 5
안녕하세요~
항상 도움주셔서 감사합니다
위의 수식을 종목검색식으로 부탁드립니다
2024-10-22
608
글번호 184489
종목검색
답변완료
시스템 산식 확인 및 수정 부탁드립니다.
k1=(highest(H,9)+lowest(L,9)+highest(H,26)+lowest(L,26));
k2 = AccumN((C[1]+c)/2-lowest(L,Period1),Period2)/AccumN((highest(H,Period1)-lowest(L,Period1)),Period2)* 100;
k3= MACD(shortPeriod, longPeriod);
종가가 k1을 상향 돌파하고 k2가 10선을 상향 돌파하고 k3가 0선을 상향 돌파하면 매수
매수후 51틱때 매도
종가가 k1을 하양 돌파하고 k2가 10선을 하양 돌파하고 k3가 0선을 하향 돌파하면 매도
매매후 51틱때 매수
2024-10-22
523
글번호 184488
시스템
답변완료
문의 드립니다
안녕하세요
다음 트레이딩뷰 코드을 예스로 전환부탁드립니다
슈퍼트랜드 고딩입니다
Periods = input(title="ATR Period", type=input.integer, defval=10)
src = input(hl2, title="Source")
Multiplier = input(title="ATR Multiplier", type=input.float, step=0.1, defval=3.0)
changeATR= input(title="Change ATR Calculation Method ?", type=input.bool, defval=true)
showsignals = input(title="Show Buy/Sell Signals ?", type=input.bool, defval=true)
highlighting = input(title="Highlighter On/Off ?", type=input.bool, defval=true)
atr2 = sma(tr, Periods)
atr= changeATR ? atr(Periods) : atr2
up=src-(Multiplier*atr)
up1 = nz(up[1],up)
up := close[1] > up1 ? max(up,up1) : up
dn=src+(Multiplier*atr)
dn1 = nz(dn[1], dn)
dn := close[1] < dn1 ? min(dn, dn1) : dn
trend = 1
trend := nz(trend[1], trend)
trend := trend == -1 and close > dn1 ? 1 : trend == 1 and close < up1 ? -1 : trend
upPlot = plot(trend == 1 ? up : na, title="Up Trend", style=plot.style_linebr, linewidth=2, color=color.green)
buySignal = trend == 1 and trend[1] == -1
plotshape(buySignal ? up : na, title="UpTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.green, transp=0)
plotshape(buySignal and showsignals ? up : na, title="Buy", text="Buy", location=location.absolute, style=shape.labelup, size=size.tiny, color=color.green, textcolor=color.white, transp=0)
dnPlot = plot(trend == 1 ? na : dn, title="Down Trend", style=plot.style_linebr, linewidth=2, color=color.red)
sellSignal = trend == -1 and trend[1] == 1
plotshape(sellSignal ? dn : na, title="DownTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.red, transp=0)
plotshape(sellSignal and showsignals ? dn : na, title="Sell", text="Sell", location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.red, textcolor=color.white, transp=0)
mPlot = plot(ohlc4, title="", style=plot.style_circles, linewidth=0)
longFillColor = highlighting ? (trend == 1 ? color.green : color.white) : color.white
shortFillColor = highlighting ? (trend == -1 ? color.red : color.white) : color.white
fill(mPlot, upPlot, title="UpTrend Highligter", color=longFillColor)
fill(mPlot, dnPlot, title="DownTrend Highligter", color=shortFillColor)
alertcondition(buySignal, title="SuperTrend Buy", message="SuperTrend Buy!")
alertcondition(sellSignal, title="SuperTrend Sell", message="SuperTrend Sell!")
changeCond = trend != trend[1]
alertcondition(changeCond, title="SuperTrend Direction Change", message="SuperTrend has changed direction!")
감사합니다
2024-10-22
579
글번호 184475
지표