Tiga EMAS + BOLLINGER BAND + PIVOT
INDIKATOR 1: Tiga EMAS (PERATAN PEMALUAN EXPONENSIAL) Dengan indikator ini Anda dapat memvisualisasikan rata-rata harga dengan bobot yang lebih besar terhadap data terbaru. Tiga rata-rata bergerak eksponensial dihitung dan ditarik: 4, 20 dan 200 lilin terakhir. - EMA cepat 1 = 8 - Rata-rata EMA2 = 20 - EMA lambat 3 = 200
Indikator 2: BOLLINGER BONDS Dengan indikator ini Anda dapat melihat kekuatan dan tren pasar, yaitu, diukur dengan volatilitas harga aset. Jika harga naik di atas band atas, aset itu overbought. Jika harga naik di atas band bawah, aset itu oversold. Panjang tren - BASE = 20, langkah = 1 Penyimpangan Standar - Pengganda = 2, langkah = 0,2
Indikator 3: PIVOT
Indikator ini menandai titik-titik di mana harga adalah minimum dan maksimum, dalam rentang lilin yang ditentukan dalam parameter
Tiga indikator ini digunakan untuk semua jenis aset: FOREX, CRYPT, CFD, ETC.
backtest
/*backtest start: 2022-04-07 00:00:00 end: 2022-05-06 23:59:00 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © JCMR76 //@version=4 study("3EMA + Boullinger + PIVOT", overlay=true) // TRES EMAS - THREE EMA´s periodo1 = input(8, title="Periodo 1, Length 1=", step =1, minval=1, maxval=300) periodo2 = input(20, title="Periodo 2, Length 2=", step =1, minval=1, maxval=300) periodo3 = input(200, title="Periodo 3, Length 3=", step =1, minval=1, maxval=1000) plot(ema(close,periodo1), color=color.gray, linewidth=1) plot(ema(close,periodo2), color=color.green, linewidth=1) plot(ema(close,periodo3), color=color.purple, linewidth=3) //BANDA BOLLINGER - BANDS BOLLINGER longitudbb = input(20,title = "longitudBB, LenghtBB=", type = input.integer, step = 1, minval=1, maxval=50) multbb = input(2.0, title = "Multiplicadorbb, EstDesv = ", type= input.float, step = 0.2, minval=0.2, maxval=20) fuente = input(close, title="fuente", type=input.source) [mm,banda_sup, banda_inf] = bb(fuente, longitudbb,multbb) ps=plot(banda_sup, color=color.new(color.gray, 90)) pi=plot(banda_inf, color=color.new(color.gray, 90)) //fill(ps,pi,color=color.new(color.gray,80)) //PIVOT - PIVOTE dist = input(6, title ="distancia para el pivote/ distance to pivot ", type = input.integer, step = 1) pl = pivotlow(low, dist, dist) if not na(pl) strategy.entry("Enter Long", strategy.long) ph = pivothigh(high, dist, dist) if not na(ph) strategy.entry("Enter Short", strategy.short) //PIVOT - PIVOTE