ehaerim

[번역/스크립트] Sladkaya Bulochka

FX_IDC:USDKRW   Dollar Américain / Won
불코프스키가 수년간 모아온 1분 차트 (21백만 캔들) 분석에 따르면, 단기 타임프레임에서 리버설 확률이 높을 수록 통계적으로 의미있는 기간이 있다는 것입니다.
리버설에 의해, 평균적으로, 마음 속으로는 5 캔들로 움직입니다 (이 문장은 번역이 여의치 않아 아래 원본도 함께 적었습니다).
By reversal, on average, had in mind the movement to 5 candles.

다음 세 구간은 시간에 따라 변하지 않고 그대로 남아 있습니다:
- 매시간 1분 (10:01, 11:01 등)
- 매시간 31분 (10:31, 11:31)
- 매시간 51분 (10:51, 11:51)

1분차트는 너무 짧아 아이디어로 퍼블리쉬할 수 없어 편의상 15분 차트에 적용했으나 실제로는 1분 차트에 적용해 보시기 바랍니다.

//@version=2
study("Sladkaya Bulochka", overlay=true)
is_newbar(res) =>
t = time(res)
change(t) != 0 ? 1 : 0
t1=is_newbar("60")


//study(shorttitle="BB", title="Bollinger Bands", overlay=true)
length = input(20, minval=1)
src = input(close, title="Source")
mult = input(2.0, minval=0.001, maxval=50)
basis = sma(src, length)
dev = mult * stdev(src, length)
upper = basis + dev
lower = basis - dev
b1=basis
plot(basis, color=red)
p11 = plot(upper, color=aqua)
p22 = plot(lower, color=aqua)
fill(p11, p22)

//plotshape

plotshape(t1 and close > b1, color=red, size=size.small, style=shape.triangledown, transp=0, location=location.abovebar)
plotshape(t1 and close > b1, color=red, size=size.small, style=shape.triangledown, transp=0, location=location.abovebar)
plotshape(t1 and close > b1, color=red, size=size.small, style=shape.triangledown, transp=0, location=location.abovebar)
plotshape(t1 and close < b1, color=lime, size=size.small, style=shape.triangleup, transp=0, location=location.belowbar)
plotshape(t1 and close < b1, color=lime, size=size.small, style=shape.triangleup, transp=0, location=location.belowbar)
plotshape(t1 and close < b1, color=lime, size=size.small, style=shape.triangleup, transp=0, location=location.belowbar)

HaeRim Lee
TradingView Korea Service Manager (kr.tradingview.com)
MultiCharts Korea Service Provider (www.investware.net)
TView: ehaerim
Skype: ehaerim
Kakao: ehaerim
Mobile: +82-10-4035-2873

Idées en relation

Clause de non-responsabilité

Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.