QuantitativeExhaustion

Fisher Transform MTF

This is a simple code that allows a user to use Fisher Transform Indicator for multiple time frames.
開源腳本

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

免責聲明

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

想在圖表上使用此腳本?
study(title="Fisher Transform MTF", shorttitle="MTF Fisher" )
resCustom = input(title="Timeframe", type=resolution, defval="60" )
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]))
fish = .5 * log((1 + value) / max(1 - value, .001)) + .5 * nz(fish[1])
fish1 = security(tickerid, resCustom,fish)
plot(fish1, color=blue, title="Fisher",style=histogram)
hline(0, color=orange)