17 Ağustos 2026 – Aa (Pgsus hissesi) Teknik Analiz ve Yorumlar – Pegasus Hava Tasimaciligi Anonim Sirketi

(Pegasus Hava Tasimaciligi Anonim Sirketi)
PGSUS Teknik Analizi
Aşağıdaki Pegasus Hava Tasimaciligi Anonim Sirketi (PGSUS) teknik analizi tradingview`de cagdas387845 kullanıcı adı ile Ağustos 17, 2026 05:54 tarih ve saatinde paylaşılmış ve aşağıdaki not eklenmiştir.
//@version=6 indicator("BIST PRO - Destek Direnç / Giriş / Stop", overlay=true, max_lines_count=100, max_labels_count=100) //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // AYARLAR //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ groupTrend = "Trend Ayarları" ema20Len = input.int(20, "EMA 20", group=groupTrend) ema50Len = input.int(50, "EMA 50", group=groupTrend) ema200Len = input.int(200, "EMA 200", group=groupTrend) groupMomentum = "Momentum" rsiLen = input.int(14, "RSI Periyodu", group=groupMomentum) rsiBuy = input.int(50, "AL için RSI", group=groupMomentum) rsiSell = input.int(45, "SAT için RSI", group=groupMomentum) groupSR = "Destek / Direnç" pivotLen = input.int(5, "Pivot Uzunluğu", minval=2, group=groupSR) groupRisk = "Risk Yönetimi" atrLen = input.int(14, "ATR Periyodu", group=groupRisk) atrStop = input.float(1.5, "Stop ATR Katsayısı", step=0.1, group=groupRisk) tp1RR = input.float(1.5, "TP1 Risk/Getiri", step=0.1, group=groupRisk) tp2RR = input.float(2.5, "TP2 Risk/Getiri", step=0.1, group=groupRisk) groupVolume = "Hacim" volumeLen = input.int(20, "Hacim Ortalama", group=groupVolume) volumeMultiplier = input.float(1.2, "Hacim Teyit Katsayısı", step=0.1, group=groupVolume) //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // HESAPLAMALAR //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ema20 = ta.ema(close, ema20Len) ema50 = ta.ema(close, ema50Len) ema200 = ta.ema(close, ema200Len) rsi = ta.rsi(close, rsiLen) atr = ta.atr(atrLen) avgVolume = ta.sma(volume, volumeLen) volumeStrong = volume > avgVolume * volumeMultiplier //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // TREND //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ bullTrend = close > ema20 and ema20 > ema50 and ema50 > ema200 bearTrend = close < ema20 and ema20 < ema50 and ema50 < ema200 trendScore = bullTrend ? 40 : close > ema50 ? 25 : 10 //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // PIVOT DESTEK / DİRENÇ //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ pivotHigh = ta.pivothigh(high, pivotLen, pivotLen) pivotLow = ta.pivotlow(low, pivotLen, pivotLen) var float resistance = na var float support = na if not na(pivotHigh) resistance := pivotHigh if not na(pivotLow) support := pivotLow //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // RSI PUANI //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ rsiScore = rsi >= 60 ? 30 : rsi >= 50 ? 20 : rsi >= 45 ? 10 : 0 //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // HACİM PUANI //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ volumeScore = volumeStrong ? 20 : 0 //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // TOPLAM ALIM PUANI //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ buyScore = trendScore + rsiScore + volumeScore //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // GİRİŞ SİNYALİ //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ emaCross = ta.crossover(ema20, ema50) nearSupport = not na(support) and close <= support * 1.03 buyCondition = (emaCross or nearSupport) and close > ema20 and rsi >= rsiBuy and volumeStrong and buyScore >= 60 // Sadece ilk sinyalde AL buySignal = buyCondition and not buyCondition //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // SAT SİNYALİ //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ sellCondition = ta.crossunder(ema20, ema50) or (rsi < rsiSell and close < ema20) sellSignal = sellCondition and not sellCondition //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // STOP / HEDEF //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ var float entryPrice = na var float stopPrice = na var float tp1 = na var float tp2 = na if buySignal entryPrice := close stopPrice := close - atr * atrStop risk = entryPrice - stopPrice tp1 := entryPrice + risk * tp1RR tp2 := entryPrice + risk * tp2RR if sellSignal entryPrice := na stopPrice := na tp1 := na tp2 := na //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // EMA ÇİZGİLERİ //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ plot(ema20, "EMA 20", color=color.orange, linewidth=2) plot(ema50, "EMA 50", color=color.blue, linewidth=2) plot(ema200, "EMA 200", color=color.purple, linewidth=3) //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // DESTEK / DİRENÇ //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ plot(support, "Destek", color=color.green, linewidth=2, style=plot.style_stepline) plot(resistance, "Direnç", color=color.red, linewidth=2, style=plot.style_stepline) //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // AL / SAT ETİKETLERİ //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ plotshape( buySignal, title="AL", text="AL", style=shape.labelup, location=location.belowbar, color=color.green, textcolor=color.white, size=size.small ) plotshape( sellSignal, title="SAT", text="SAT", style=shape.labeldown, location=location.abovebar, color=color.red, textcolor=color.white, size=size.small ) //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // STOP / TP //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ plot(stopPrice, "STOP", color=color.red, linewidth=2, style=plot.style_linebr) plot(tp1, "TP1", color=color.yellow, linewidth=2, style=plot.style_linebr) plot(tp2, "TP2", color=color.green, linewidth=2, style=plot.style_linebr) //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // BİLGİ PANELİ //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ var table panel = table.new(position.top_right, 2, 7) if barstate.islast table.cell(panel, 0, 0, "BIST PRO") table.cell(panel, 1, 0, "ANALİZ") table.cell(panel, 0, 1, "RSI") table.cell(panel, 1, 1, str.tostring(rsi, "#.##")) table.cell(panel, 0, 2, "Trend") table.cell(panel, 1, 2, bullTrend ? "YÜKSELİŞ" : bearTrend ? "DÜŞÜŞ" : "NÖTR") table.cell(panel, 0, 3, "AL Puanı") table.cell(panel, 1, 3, str.tostring(buyScore) + "/100") table.cell(panel, 0, 4, "Destek") table.cell(panel, 1, 4, str.tostring(support, "#.##")) table.cell(panel, 0, 5, "Direnç") table.cell(panel, 1, 5, str.tostring(resistance, "#.##")) table.cell(panel, 0, 6, "Hacim") table.cell(panel, 1, 6, volumeStrong ? "GÜÇLÜ" : "NORMAL") //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ // ALARM //━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ alertcondition( buySignal, title="BIST PRO AL", message="BIST PRO AL SİNYALİ: {{ticker}} Fiyat: {{close}}" ) alertcondition( sellSignal, title="BIST PRO SAT", message="BIST PRO SAT SİNYALİ: {{ticker}} Fiyat: {{close}}" )
PGSUS Twitter
PGSUS Twitter yorumları ve görüşlerini 17/08/2026 tarihine göre aşağıya listeledik.
Bilgileri güncelliyoruz.
PGSUS Grafiği ve Pivotlar
Aşağıdaki grafikte PGSUS (PGSUS) ne iş yapar, faaliyet alanı, hızlı istatistikler, geçmiş bilanço ve bilanço tahminlerini bulabilirsiniz. Bunların yanında fiyata göre ve değişken periyotlarda tekniğin nereye geldiğini de görebilirsiniz. PGSUS hisse senedine yatırım yaptıysanız trendi grafiğe yerleştirdiğimiz MACD ve ağırlıklı hareketli ortalama(WMA) ile takip edebilirsiniz.
PGSUS Detay ve Temel Veriler
PGSUS detay ve hisse hakkında temel verileri görüntülemenizi sağlar. Pegasus Hava Tasimaciligi Anonim Sirketi şirketinin basit hisse senedi fiyatı bilgilerinden de öte gidişata dair yararlı bilgiler sunar.
PGSUS Temettü
PGSUS temettü tarihi, temettü verimi ve oranlarını buradaki tabloda görebilirsin. Ayrıca temettünün bedelli yada beelsiz olduğu bilgisi de bu tabloda mevcuttur.
| Tarih | Bedelli | Bedelsiz | Temettü | Oran |
| 14.05.2024 | 0 | 389 | 0.00 | 4.887600 |
PGSUS Kap Haberleri
Kamuoyunu Aydınlatma Platformu üzerinden PGSUS şirket bildirimlerini ve haberleri görmek için buraya tıklayın.
PGSUS ne olur, hedef fiyat nedir?
BorsaIQ olarak bir sanal zeka yazılımı ile PGSUS hissesi için hedef fiyatları araştırdık. pgsus hedef fiyat analizi için tıklayın
