RicardoSantos

[RS]RSI Inverse Fisher Transform V0

RSI inverse fisher transform (fishy turbo) as described here:
autotradingstrategy....-turbo-with-lu-band/
forexsb.com/reposito...eview/63/fishy-turbo
오픈 소스 스크립트

이 스크립트의 오써는 참된 트레이딩뷰의 스피릿으로 이 스크립트를 오픈소스로 퍼블리쉬하여 트레이더들로 하여금 이해 및 검증할 수 있도록 하였습니다. 오써를 응원합니다! 스크립트를 무료로 쓸 수 있지만, 다른 퍼블리케이션에서 이 코드를 재사용하는 것은 하우스룰을 따릅니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.

차트에 이 스크립트를 사용하시겠습니까?
study(title='[RS]RSI Inverse Fisher Transform V0', shorttitle='iF', overlay=false)
src = input(title='Source', type=source, defval=close)
window01 = input(10)
window02 = input(5)
e = input(2.71)

f_fisher(_src, _window)=>
    _h = highest(_src, _window)
    _l = lowest(_src, _window)
    _value0 = .66 * ((_src - _l) / max(_h - _l, .001) - .5) + .67 * nz(_value0[1])
    _value1 = _value0 > .99 ? .999 : _value0 < -.99 ? -.999 : _value0
    _fisher = .5 * log((1 + _value1) / max(1 - _value1, .001)) + .5 * nz(_fisher[1])

f_inverse_fisher(_src, _e) => (pow(_e, 2*_src) - 1)/( pow(_e, 2*_src) + 1)

rsi = (ema(rsi(src, window01), window02) - 50) * 0.1
fish1 = f_inverse_fisher(rsi, e)

hline(1, color=black)
hline(0.5, color=color(maroon, 0))
hline(0, color=black)
hline(-0.5, color=color(green, 0))
hline(-1, color=black)

plot(series=fish1, title='F', style=area, color=color(black, 50))