我如何在 stocastik rsi 中显示 2 个不同奇偶校验的 k 值

how can i show the k value of 2 different parities in stocastik rsi

如何在 stocastik rsi 中显示 2 个不同奇偶校验的 k 值。如果你有例子,你能帮忙吗?比如我想在ethusdt parity中看到btcusdt parity的k值,但是无论我看什么parity,btcusdt都是恒定的,我必须不断地看到它。

您可以使用request.security()函数来请求来自不同对的数据。

以下是您可以如何做到这一点:

//@version=5
indicator("My script")
smoothK = input.int(3, "K", minval=1)
smoothD = input.int(3, "D", minval=1)
lengthRSI = input.int(14, "RSI Length", minval=1)
lengthStoch = input.int(14, "Stochastic Length", minval=1)
src = input(close, title="RSI Source")
_rsi = ta.rsi(src, lengthRSI)

rsi1 = request.security("BINANCE:BTCUSDT", timeframe.period, _rsi)

k = ta.sma(ta.stoch(rsi1, rsi1, rsi1, lengthStoch), smoothK)
d = ta.sma(k, smoothD)
plot(k)