TradingView
capissimo
28 มกรา 2019 เวลา 8 นาฬิกา 51 นาที

Detrended Bollinger Bands Oscillator, ver. 6 

Euro Fx/U.S. DollarFXCM

คำอธิบาย

Detrended Bollinger Bands Oscillator with entropy
ความคิดเห็น
Jittra
How do I add multi-timeframe function to this?
capissimo
@Jittra, in the inputs section the following lines:
X = input(close, title="Data source")
p = input(2, title="Lookback window")

with

data = input(close, title="Data source")
resCustom = input("03", title="Time frame", options=["01", "02", "03", "05", "07", "10", "15", "30", "45", "60"]) // custom tfs !!
X = security(tickerid, resCustom, data, barmerge.gaps_off, barmerge.lookahead_on) // use this to avoid repaints
p = input(2, title="Lookback window")
...
เพิ่มเติม