// Keterangan Gambar // B (Hijau) - Indikator Buy dari GC MA5 & MA20 // B (Kuning) - Indikator Buy dari Bollinger Band // Logo ✪ - Volume Spike (Buy/Sell)
//version=4 study("Cross SMA (5,20) - BB", "", true, overlay=true)
if xUp // Trigger the alert the first time a cross occurs during the real-time bar. alert("SMA20 (" + tostring(close) + ") cruzou SMA5 (" + tostring(SMA20) + ").", alert.freq_once_per_bar)
// Fibo Fibs = input("Plot Fibs based on Lookback", options = ["Plot Fibs based on Lookback", "Plot Fibs based on Price Input"], title = "Fibonacci Plot Type")
FIBS = Fibs == "Plot Fibs based on Lookback"?1:Fibs == "Plot Fibs based on Price Input"?2:na
Foption = input(defval = "1. Candles" , title = "Fibonacci Plot Lookback Type", options=["2. Days", "1. Candles"]) FP = input(defval = 100 , title = "Days/Candles to Lookback") Reverse = input(defval = false , title = "Reverse Fibonacci Levels?") ExtraFibs = input(false, "Show 0.886 and 1.113 Fibs")
Note = input(true, "â•â•â•â• ð—™ð—¶ð—¯ð˜€ ð—¯ð—®ð˜€ð—²ð—± ð—¼ð—» ð—£ð—¿ð—¶ð—°ð—² ð—œð—»ð—½ð˜‚ð˜ â•â•â•â•") High = input(0., minval = 0, title = "High - Enter Value") Low = input(-1., minval = -1, title = "Low - Enter Value")
Note2 = input(true, "â•â•â•â•â•â• ð—™ð—¶ð—¯ ð—Ÿð—¶ð—»ð—²/ð—Ÿð—®ð—¯ð—²ð—¹ ð—¦ð˜ð˜†ð—¹ð—² â•â•â•â•â•â•") Bull_Color = input(#008000, type=input.color, title = "Support Fibs Color") Bear_Color = input(#ff0000, type=input.color, title = "Resistance Fibs Color") CurrentFib = input(false, "Show Fib Level of Current Price") Current_Color = input(color.orange, type=input.color, title = "Current Fib Label Color") LineStyle = input("Dotted", options = ["Dotted", "Solid"], title = "Fib Line Style") LineWidth = input(1, minval=1, maxval=3,title = "Fib Line Width") Ext = input(false, "Extend Lines Left")
لا يُقصد بالمعلومات والمنشورات أن تكون، أو تشكل، أي نصيحة مالية أو استثمارية أو تجارية أو أنواع أخرى من النصائح أو التوصيات المقدمة أو المعتمدة من TradingView. اقرأ المزيد في شروط الاستخدام.