squattter

Fisher Transform with Up/Down colours - squattter - V2

Colours change faster now using the white line as reference rather than the bars.
開源腳本

本著真正的TradingView精神,該腳本的作者將其開源發布,以便交易者可以理解和驗證它。為作者喝彩吧!您可以免費使用它,但在出版物中重複使用此代碼受網站規則的約束。 您可以收藏它以在圖表上使用。

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。

想在圖表上使用此腳本?
//Credit to HPotter for the colour code.
study(title="Fisher Transform with Up/Down colours - squattter")
len = input(34, minval=1, title="Length")
high_ = highest(hl2, len)
low_ = lowest(hl2, len)
round_(val) => val > .99 ? .999 : val < -.99 ? -.999 : val
value = round_(.66 * ((hl2 - low_) / max(high_ - low_, .001) - .5) + .67 * nz(value[1]))
fish1 = .5 * log((1 + value) / max(1 - value, .001)) + .5 * nz(fish1[1])
fish2 = fish1[1]

hline(0, color=white, linewidth=2)

fush = fish2
cClr = fish1 > fish1[1] ? aqua : blue
plot(fush, style=columns, linewidth=1, color=cClr)

plot(fish1, color=white, transp=0, linewidth=2, title="Fisher")