Pine Script - Slow Stochastic
Slow Stochastic // Slow Stochastic 설정 slowStochKLength = input(7, "Slow Stochastic %K Length") slowStochDLength = input(6, "Slow Stochastic %D Length") stochUpper = input(70, "Upper Level") stochLower = input(30, "Lower Level") // Slow Stochastic 계산 slowStochK = ta.sma(ta.stoch(close, high, low, slowStochKLength), slowStochDLength) slowStochD = ta.sma(slowStochK, slowStochDLength) Description Sl..
2023.12.07