Postingan

Menampilkan postingan dari Juni, 2026

setting

 fisher  5 menit 2 -2 rsi prime 2/4 batas 0 sampai 6 white 92 sampai 100 white rsi taufik tf supertrend 5 menit ts rsi 1 menit panjang atr 10 faktor 3 panjang rsi 4 rsi smotinh 2

RSI Primed

  // 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   ...