RSI NYA (heiken ashi 11 dan 4) (border 0 sampai 6 = putih) (93 sampai 100=putih)
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © ChartPrime // @version= 5 indicator ( "RSI Primed [ChartPrime]" ) import lastguru/DominantCycle/2 as d double_exponential_moving_average ( source ) => var float ema1 = 0.0 var float ema2 = 0.0 var int count = 0 if close == close count := nz ( count [ 1 ]) + 1 ema1 := ( 1.0 - 2.0 / ( count + 1.0 )) * nz ( ema1 [ 1 ]) + 2.0 / ( count + 1.0 ) * source ema2 := ( 1.0 - 2.0 / ( count + 1.0 )) * nz ( ema2 [ 1 ]) + 2.0 / ( count + 1.0 ) * ema1 2 * ema1 - ema2 patterns ( Open , High , Low , Close , OHLC4 , ma ) => c_down_trend = OHLC4 < ma c_up_trend = OHLC4 > ma rsi_low = High < 40 rs...