MA Crossover with RSI ConfirmationMA Crossover with RSI Confirmation
Bu gösterge, 9 periyotluk hareketli ortalama (MA) ve 21 periyotluk hareketli ortalama (MA) arasındaki kesişimlere dayanarak alım ve satım sinyalleri oluşturur. Alım sinyali, kısa vadeli MA'nın uzun vadeli MA'yı yukarıya doğru kesmesi ve RSI'nın 30'un altında olması durumunda oluşur (aşırı satım bölgesi). Satım sinyali ise, kısa vadeli MA'nın uzun vadeli MA'yı aşağıya doğru kesmesi ve RSI'nın 70'in üzerinde olması durumunda oluşur (aşırı alım bölgesi).
Alım sinyali: Kısa MA, uzun MA'yı yukarı kesiyor ve RSI 30'un altında.
Satım sinyali: Kısa MA, uzun MA'yı aşağı kesiyor ve RSI 70'in üzerinde.
Grafikte bu sinyaller yeşil "BUY" ve kırmızı "SELL" etiketleri ile işaretlenir. Ayrıca, RSI göstergesi ve aşırı alım/aşırı satım seviyeleri grafikte gösterilir.
Wskaźniki i strategie
My strategy//@version=5
strategy("Order Flow + VWM Strategy (Fixed)", overlay=true)
// 1. Order Flow Imbalance Calculation (Fixed)
// Added math.max() to prevent division by zero when high == low
imbalance = volume * (close - open) / math.max(high - low, 1)
buyImbalance = imbalance > 0.7 * ta.highest(imbalance, 20)
sellImbalance = imbalance < -0.7 * ta.lowest(imbalance, 20)
// 2. Volume-Weighted Momentum (VWM) - Fixed SMA Calculation
vwm = ta.sma(close * volume, 14) / ta.sma(volume, 14)
vwmMA = ta.sma(vwm, 5)
vwmUp = ta.crossover(vwm, vwmMA)
vwmDown = ta.crossunder(vwm, vwmMA)
// 3. Strategy Rules - Added "barstate.isconfirmed" to avoid repainting
if (buyImbalance and vwmUp and barstate.isconfirmed)
strategy.entry("Long", strategy.long)
if (sellImbalance and vwmDown and barstate.isconfirmed)
strategy.entry("Short", strategy.short)
// 4. Trailing Stop Fix - Use "trail_offset" instead of "trail_points"
// Convert ATR to price units (1.5x ATR distance from price)
trailOffset = ta.atr(14) * 1.5
strategy.exit("Long Exit", "Long", trail_offset=trailOffset)
strategy.exit("Short Exit", "Short", trail_offset=trailOffset)
EMA 8 & 21, VWAPThe script plots the 8-period and 21-period Exponential Moving Averages (EMA) along with the Volume-Weighted Average Price (VWAP) to help traders analyze trend direction and key price levels. The **8 EMA (yellow)** reacts quickly to price movements, while the **21 EMA (white)** provides a smoother trend signal. The **VWAP (green)** acts as a dynamic support and resistance level, commonly used by institutional traders to gauge fair value. This combination helps identify momentum shifts, trend strength, and potential trade opportunities.
EMA 9 & 20, SMA 20The script plots three moving averages on a price chart: the 9-period Exponential Moving Average (EMA) in blue, the 20-period Exponential Moving Average (EMA) in yellow, and the 20-period Simple Moving Average (SMA) in red with a dotted line style. These moving averages assist traders in identifying market trends and potential support/resistance levels.
SNETINThis is a EMA based indicator to show the buy and sell signals. When ema crossover buy and when ema crossunder sell.
Cash Flow YieldsCash Flow Yields Indicator
This indicator offers a straightforward way to visualize a company’s cash flow metrics—Free Cash Flow (FCF), Operating Cash Flow (OCF), and Capital Expenditures (CapEx)—as yields relative to its market capitalization. With the flexibility to switch between Trailing Twelve Months (TTM) and Quarterly data, it’s perfect for spotting financial efficiency trends at a glance. Values are plotted as dynamic lines with smart color coding and labeled for clarity.
Features:
TTM & Quarterly Data: Toggle between financial periods to suit your analysis.
Color-Coded Lines: Green for positive OCF, teal for positive FCF, and blue for CapEx. Red and maroon kick in when values turn negative.
Yield Perspective: See FCF, OCF, and CapEx as percentages of market cap, making it easy to compare cash flow strength across companies.
Clear Labels: The latest values pop up on the chart, positioned to the right of the last bar.
Simple & Intuitive: No clutter - just clean lines and numbers to help you focus on what matters.
To use it, add it to your chart and toggle between TTM or Quarterly to see trends. FCF should roughly equal OCF minus CapEx. Adjust your view to focus on companies with strong FCF yields for potential opportunities.
This indicator is freely available and open-source on TradingView for everyone to use. Enjoy!
Triangle Reversal IndicatorTriangle Reversal Indicator – A Visual Tool for Identifying Reversal Patterns
This indicator is designed to highlight potential trend reversal moments by comparing the current candle with the previous one. It offers a unique approach by focusing on distinct candle patterns rather than generic trend indicators, making it a valuable addition to your trading toolkit.
How It Works:
For a bullish signal, the indicator checks if:
The current candle is bullish (closing higher than it opens) while the previous candle was bearish.
The current candle’s low breaches the previous bearish candle’s low.
The current candle’s close is above the previous bearish candle’s close.
When these conditions are met, a tiny green triangle is plotted below the candle to signal a potential bullish reversal.
Conversely, for a bearish signal, it verifies if:
The current candle is bearish (closing lower than it opens) following a bullish candle.
The current candle’s high exceeds the previous bullish candle’s high.
The current candle’s close falls below the previous bullish candle’s close.
If all conditions are satisfied, a small red triangle appears above the candle to indicate a potential bearish reversal.
How to Use:
Simply apply the indicator on your chart and look for the tiny triangles that appear above or below the candles. These markers can serve as an additional visual cue when confirming entry or exit points, but it’s best used alongside your other analysis techniques.
Customization Options:
Users can further enhance the script by adding inputs for lookback periods, adjusting the triangle size, or modifying colors to match their chart themes.
HFT StrategyYour HFT Strategy identifies high-probability trades using Fibonacci levels, Break of Structure (BOS), and Fair Value Gaps (FVG). It follows a trend-based approach, entering long trades above the 50% Fibonacci level and short trades below it. Confirmation comes from BOS and FVG. The strategy focuses on momentum-driven entries.
Sai Ema CrossoverSimple ema crossover indicator can be used to scalp ( 1min to 5min timeframes ) and
swing(1hr to 1 day timeframes). tight stop loss and decent take profit target can help a lot instead of actually waiting for a sell signal
4 EMAs with Labels4 EMAs with Labels
This simple, clean indicator displays four Exponential Moving Averages (EMAs) with customizable periods, each accompanied by a clear label directly on the chart.
Features:
Four pre-configured EMAs (21, 50, 100, and 200 periods)
Fully customizable periods, colors, and labels
Clear on-chart labels that identify each EMA
Option to show/hide individual EMAs
Compact label formatting with adjustable position
Perfect for traders who want to track key moving averages without having to remember which color represents which period. The default configuration includes the most commonly used EMAs for trend identification and support/resistance analysis.
Easily customize this indicator to fit your personal trading strategy and visual preferences while maintaining a clean, uncluttered chart.
Advanced Long/Short Signal Analyzerarkadaşlar merhaba yeni indikatörümüz üzerinde testlerimiz devam etmektedir.
indikatörümüzün özellikleri;
-long ve short oranlarını ve rsı değerini bir bilgi kutusu içerisinde söyler.
-ani sinyal değişimleri yaşanmaz ancak hassas ve dinamiktir.
telegram iletişim=@efsaneborsasohbet
telegram iletişim-2=@efsaneborsaanaliz
not!
=tüm sorumluluk size aittir.işlemlerden oluşabilcek tüm zararlar size aittir.sorumluluk kabul edilmemektedir.yatırım tavsiyesi niteliğinde değildir.
Alerta de Spike en Boom 1000/500es un grafico en el cual te avisa auditivamente al momento que salta una spike en boom 1000 y boom 500
Market Trend Levels Detector With Signals [BigBeluga]Added signals version
Market Trend Levels Detector With Signals
Investor ToolSummary of the investor tool Indicator The 2-Year MA Multiplier is a long-term investment tool for Bitcoin, designed to identify optimal buying and selling periods.
How It Works:
Buying below the 2-Year MA has historically led to high returns. Selling above 2-Year MA × 4 has been effective for taking profits.
Key Levels SpacemanBTC Jiri PribylThis is the Spaceman BTC indicator at key levels with customized colors specifically for Jiří Přibyl.
Volume Delta Candles & Keltner Channel]"This is the code that I copied from LuxAlgo for the convenience of transactions. Thank you to the authors for making the source code open, allowing someone without programming expertise like me to use it. Sincerely grateful!"
RSI Signal with filters by S.Kodirov📌 English
RSI Signal with Multi-Timeframe Filters
This TradingView indicator generates RSI-based buy and sell signals on the 15-minute timeframe with additional filtering from other timeframes (5M, 30M, 1M).
🔹 Signal Types:
✅ 15/5B & 15/5S – RSI 15M filtered by 5M
✅ 15/30/1B & 15/30/1S – RSI 15M filtered by 30M & 1M
✅ 15B & 15S – RSI 15M without filters
🔹 How It Works:
Signals are displayed as colored triangles on the chart.
Labels indicate the type of signal (e.g., 15/5B, 15S).
Alerts notify users when a signal appears.
🚀 Best for short-term trading with RSI confirmation from multiple timeframes!
📌 Русский
Индикатор RSI с мульти-таймфрейм фильтрами
Этот индикатор для TradingView генерирует сигналы покупки и продажи на 15-минутном таймфрейме, используя фильтрацию с других таймфреймов (5M, 30M, 1M).
🔹 Типы сигналов:
✅ 15/5B & 15/5S – RSI 15M с фильтром 5M
✅ 15/30/1B & 15/30/1S – RSI 15M с фильтрами 30M и 1M
✅ 15B & 15S – RSI 15M без фильтров
🔹 Как это работает:
Сигналы отображаются как цветные треугольники на графике.
Подписи показывают тип сигнала (например, 15/5B, 15S).
Алерты уведомляют трейдера о появлении сигнала.
🚀 Идеально для краткосрочной торговли с подтверждением RSI на нескольких таймфреймах!
📌 O'zbekcha
Ko'p vaqt oralig‘idagi RSI signallari
Ushbu TradingView indikatori 15 daqiqalik vaqt oralig‘ida RSI asosida sotib olish va sotish signallarini yaratadi. Bundan tashqari, boshqa vaqt oralig‘idagi (5M, 30M, 1M) RSI filtrlarini ham hisobga oladi.
🔹 Signal turlari:
✅ 15/5B & 15/5S – 5M bilan filtrlangan RSI 15M
✅ 15/30/1B & 15/30/1S – 30M va 1M bilan filtrlangan RSI 15M
✅ 15B & 15S – Filtrsiz RSI 15M
🔹 Qanday ishlaydi?
Signallar rangli uchburchaklar shaklida ko‘rsatiladi.
Yozuvlar signal turini ko‘rsatadi (masalan, 15/5B, 15S).
Xabarnomalar yangi signal paydo bo‘lganda treyderni ogohlantiradi.
🚀 Ko‘p vaqt oralig‘ida RSI tasdig‘i bilan qisqa muddatli savdo uchun ideal!
HFT StrategyYour **HFT Strategy** identifies high-probability trades using Fibonacci levels, Break of Structure (BOS), and Fair Value Gaps (FVG). It follows a trend-based approach, entering **long trades** above the 50% Fibonacci level and **short trades** below it. Confirmation comes from BOS and FVG. The strategy focuses on momentum-driven entries.
Stochastic with Delta Indicator will give auto buy and sell signal based on stochastic( 14 period), cummulative volume delta
HL RegressionLinear Regression on two intervals. Analysis is on the high and low relative to an SMA for the specific number of minutes look back. Importantly the analysis is locked in no matter your visual timeframe. The number of minutes determines the analysis not the number of candles.
Arbitrage Futures Spot Spread by MoneyHasslerЭтот спред показывает разницу между ценой спотового актива (Spot Price) и ценой фьючерсного контракта (Futures Price).
ICT Kill ZonesIndicator Name: ICT Kill Zones (Historical Boxes + Labels)
Description:
ICT Kill Zones (Historical Boxes + Labels) is an advanced session indicator designed for traders who follow ICT concepts. This indicator visually marks key market sessions by drawing colored boxes for each trading day, complete with text labels inside each box.
Key Features:
Session Shading:
The indicator automatically creates session boxes for each trading day. It displays four main sessions—London, New York, London Close, and Asian—each drawn as a colored box that spans the entire vertical range of your chart.
Historical Data:
Session boxes are generated for every day in your chart’s history (subject to Pine Script’s object limits), allowing you to scroll back and analyze historical session activity.
Text Labels:
Each session box includes an embedded text label (with white text) displaying the session name.
Customizable Colors:
Easily customize the colors of each session’s box. In addition, you can adjust the background color of the labels so that they contrast perfectly with the session shading.
Works Across Timeframes:
The indicator uses your chart’s time zone and calculates session boundaries based on exact timestamps, ensuring perfect alignment on any timeframe—from 1-minute to 1-hour charts.
ICT Kill Zones (Historical Boxes + Labels) is ideal for traders using ICT strategies, as it clearly delineates high-probability trading sessions and helps you quickly identify key liquidity zones. Whether you’re analyzing intraday or higher timeframe charts, this indicator adapts to provide consistent, visually appealing session information.