Pivot Point CE/PE StrategyPivot Point CE/PE Strategy Overview
This Pine Script strategy identifies potential Call Entry (CE) and Put Entry (PE) opportunities using a combination of:
Pivot Points & Central Pivot Range (CPR)
Fibonacci Levels
VWAP (Volume Weighted Average Price) & MVWAP (Customizable)
RSI (Relative Strength Index)
SMA & EMA (Simple and Exponential Moving Averages)
Volume Analysis
Key Components of the Strategy
Candle Identification
Chart patterns
Smart Money Concept (SMC) Indicator✅ Fair Value Gaps (FVGs) & Liquidity Zones
✅ Order Blocks & Breaker Blocks
✅ Equilibrium (0.5 levels) & High-Timeframe Supply/Demand Zones
Daily High/Low by Enes🔥 Features:
✅ Daily high & low as continuous lines extending to the right
✅ Automatic daily updates
✅ Labels ("Daily High" & "Daily Low") directly on the chart
GRID EXTENSIONGRID EXTENSION
Overview
The GRID EXTENSION is a simple grid-based indicator for TradingView, built with Pine Script v6. It plots horizontal price levels starting from a user-defined anchor price, with spacing set by a tick increment. Use it to identify key support, resistance, or price zones on charts for Crypto, Forex, or Futures.
Key Features
Custom Grid Levels: Plot up to 22 levels (e.g., 0, 0.25, 1.25, -2.50) with options to show/hide, set values, and choose colors.
Market-Specific Tick Increments: Select your asset type (Crypto, Forex, Futures) and choose from a range of tick increments tailored for each market:
Crypto: 1 to 5000 ticks (e.g., 100 ticks = $0.001 on ADA/USD, 5000 ticks = $50 on BTC/USD).
Forex: 5 to 5000 ticks (e.g., 100 ticks = 1 pip on EUR/USD, 5000 ticks = 50 pips).
Futures: 1 to 2500 ticks (e.g., 25 ticks = 6.25 points on E-mini S&P 500, $312.50 per contract).
Visual Options:
Extend lines to the right.
Show price and level labels (as values or percentages).
Place labels on the left or right.
Adjust background transparency for filled areas between levels.
How to Use
Set Asset Type: Choose "Crypto," "Forex," or "Futures" to match your chart.
Set Anchor Price: Enter a starting price for the grid.
Pick Tick Increment: Select a tick increment from the dropdown, following the guidance for your asset type (see Key Features).
Customize Levels: Turn levels on/off, set values, and pick colors.
Add to Chart: Apply the indicator to see the grid on your chart.
Tips
Use levels to mark support/resistance zones for entries or exits.
Extend lines to project future price zones.
Choose smaller increments (e.g., 5 ticks) for scalping, or larger ones (e.g., 1000 ticks) for swing trading.
Combine with indicators like moving averages for better signals.
Settings
Asset Type: Select "Crypto," "Forex," or "Futures" (default: "Crypto").
Anchor Price: Starting price for the grid (default: 0.0).
Tick Increment: Space between levels (options: 1, 5, 10, 25, 50, 100, 250, 500, 1000, 2500, 5000). Choose based on asset type.
Extend Right: Extend lines to the right (default: true).
Show Prices: Show price labels (default: true).
Show Levels: Show level values or percentages (default: true).
Format: Display levels as "Values" or "Percent" (default: "Values").
Labels Position: Place labels on "Left" or "Right" (default: "Left").
Background Transparency: Set transparency for filled areas (default: 100, range 0-100).
Level Options: Enable/disable levels, set values, and choose colors.
Notes
Set the anchor price to a key level (like a recent high or low) for best results.
Check the tick increment tooltip to ensure the spacing suits your market type.
Works on any chart, best for clear price trends or ranges.
Acknowledgments
Made with Pine Script v6 for TradingView. This is v1.0—feedback welcome for future updates!
Candle Coloration by MA with Oscillator Signals//@version=5
indicator("Candle Coloration by MA with Oscillator Signals", overlay=true)
// Definindo as médias móveis de 20 e 200 períodos
MM20 = ta.sma(close, 20) // Média Móvel de 20
MM200 = ta.sma(close, 200) // Média Móvel de 200
// Condições para a cor das médias móveis
cor_MA20 = MM20 > MM20 ? color.green : color.red // Cor da MM20 (verde se for crescente, vermelho se for decrescente)
cor_MA200 = MM200 > MM200 ? color.green : color.red // Cor da MM200 (verde se for crescente, vermelho se for decrescente)
// Definindo as condições para a coloração dos candles
compra = MM20 > MM200 and close > MM20 // Condição de compra (candle verde)
venda = MM20 < MM200 and close < MM20 // Condição de venda (candle vermelho)
transicao = MM20 > MM200 and close < MM20 or MM20 < MM200 and close > MM20 // Condição de transição (candle azul)
// Estratégia MACD
fastLength = input(12, title="Fast Length")
slowLength = input(26, title="Slow Length")
MACDLength = input(9, title="MACD Length")
// Cálculos do MACD
MACD = ta.ema(close, fastLength) - ta.ema(close, slowLength)
aMACD = ta.ema(MACD, MACDLength)
delta = MACD - aMACD
// Condições para os sinais de compra e venda do MACD
macdCompra = ta.crossover(delta, 0) // Sinal de compra do MACD (quando o MACD cruza para cima)
macdVenda = ta.crossunder(delta, 0) // Sinal de venda do MACD (quando o MACD cruza para baixo)
// Coloração dos candles com base nas condições
barcolor(compra ? color.green : venda ? color.red : transicao ? color.blue : na)
// Plotando as médias móveis com a cor dinâmica
plot(MM20, color=cor_MA20, linewidth=2, title="Média Móvel 20")
plot(MM200, color=cor_MA200, linewidth=2, title="Média Móvel 200")
// Exibindo o fundo com base nos sinais de compra e venda
bgcolor(compra ? color.new(color.green, 90) : venda ? color.new(color.red, 90) : na)
// Plotando os sinais de compra e venda com o oscilador
plotshape(macdCompra, style=shape.labelup, location=location.belowbar, color=color.green, text="BUY", size=size.small, textcolor=color.white)
plotshape(macdVenda, style=shape.labeldown, location=location.abovebar, color=color.red, text="SELL", size=size.small, textcolor=color.white)
Inverse FVG with Quadrants [Modified]# Inverse FVG with Quadrants
*Modified version of original indicator by **tradeforopp**
## Overview
This advanced Fair Value Gap (FVG) indicator identifies both regular and inverse fair value gaps with precision, displaying them in a visually intuitive quadrant-based system. The enhanced version now features automatic timeframe selection that aligns higher timeframe FVGs with your current chart period for multi-timeframe analysis.
## Key Features
### 🔹 Fair Value Gap Detection
- **Regular FVGs**: Identifies traditional bullish and bearish fair value gaps
- **Inverse FVGs**: Automatically detects and displays inverse fair value gaps when price closes through a regular FVG
- **Quadrant Display**: Shows only the relevant half of each FVG for cleaner visual analysis (upper quadrant for bullish patterns, lower quadrant for bearish)
### 🔹 Smart Timeframe Management
- **Auto Timeframe Selection**: Automatically selects the appropriate higher timeframe based on your current chart:
- 1min → 15min
- 3min → 30min
- 5min → 1h
- 15min → 4h
- 1h → Daily
- 4h → Weekly
- **Manual Override**: Optional manual timeframe selection still available
### 🔹 Visual Customization
- Adjustable colors for both regular and inverse FVGs
- Optional box extension
- Customizable display limits to prevent chart clutter
- Session filtering capabilities
### 🔹 Trading Signals
- FVGs provide potential support/resistance zones and price targets
- Inverse FVGs offer confirmation of trend continuation or reversal
- Alert conditions for new FVG creation, regular FVG, and inverse FVG events
## How to Use
1. Apply the indicator to your chart
2. Enable "Auto Timeframe Selection" for multi-timeframe analysis (recommended)
3. Adjust displacement settings to filter for more significant FVGs
4. Use regular FVGs as potential zones where price may return to fill the gap
5. Watch for inverse FVGs as confirmation signals when price breaks through regular FVGs
This refined indicator combines powerful FVG analysis with automatic timeframe alignment to provide traders with clear, actionable insights across multiple timeframes. Perfect for both intraday traders and swing traders looking for high-probability entry and exit points.
Credits to @tradeforopp for creating the original version of this indicator. This is a modified version with enhanced features while preserving the core functionality.
## Tips
- Blue boxes (FVG+) indicate bullish fair value gaps (potential support)
- Red boxes (FVG-) indicate bearish fair value gaps (potential resistance)
- When price closes through an FVG, watch for the inverse FVG as a confirmation signal
- Use the dashed centerline as a potential target within each FVG
PPR & Pin Bar finderPPR & Pin Bar Indicator is a powerful tool designed for traders who want to identify key reversal patterns with trend confirmation. This indicator detects PPR (Pivot Point Reversal) and Pin Bar candlestick patterns while also displaying a colored moving average (MA) trend line to help traders make informed decisions.
diamondpattern.Diamond Pattern (Elmas Formasyonu) İndikatörü
Bu indikatör, fiyat hareketlerinde Elmas Formasyonu (Diamond Pattern) tespit etmek için geliştirilmiştir. Elmas formasyonu genellikle trend dönüş sinyali olarak kabul edilir ve güçlü fiyat hareketleriyle sonuçlanabilir.
Özellikler:
✅ Otomatik Algılama – Grafik üzerinde Elmas Formasyonu oluştuğunda tespit eder.
✅ Trend Dönüş Sinyalleri – Formasyon tamamlandığında olası yön değişimlerini gösterir.
✅ Uyumlu Zaman Dilimleri – Tüm zaman dilimlerinde kullanılabilir.
✅ Kullanıcı Dostu – Karmaşık ayarlara gerek kalmadan kolayca kullanılır.
Nasıl Kullanılır?
1. İndikatörü grafiğe ekleyin.
2. Elmas Formasyonu belirdiğinde takip edin.
3. Formasyonun kırılım yönüne göre işlem stratejinizi belirleyin.
Not: Formasyon tespiti tek başına alım-satım sinyali değildir. Diğer teknik analiz araçlarıyla birlikte değerlendirilmelidir.
One Time FramingMarks green arrows above candles that made or maintain one time framing up, blue circles above balance candles, and red arrows below candles that made or maintain one time framing down.
Example Scenario & Expected Behavior
Candle Action New State
1 High Break Balance (Circle)
2 High Break OTFU (Up Arrow)
3 Low Break Balance (Circle)
4 No High or Low Break (Inside Day) Still Balance
5 Low Break OTFD (Down Arrow)
6 Inside Day Still OTFD
7 Outside Day (Breaks High First) Balance (Circle)
8 Outside Day (Breaks Low First) OTFD (Down Arrow)
9 No High or Low Break (Inside Day) Still OTFD
Essa - Yearly High, Low & MidYearly High, Low & Midpoint Indicator
This TradingView indicator helps traders track key yearly price levels by plotting the high, low, and midpoint values for each year within a user-specified range.
Features & Functionality:
Automatic Yearly Calculation: Determines the highest and lowest price for each year and computes the midpoint as their average.
Clear & Customisable Visuals:
The Yearly High is plotted as a solid green line.
The Yearly Low appears as a solid red line.
The Midpoint is displayed as a blue dashed line for easy distinction
Detailed Labels:
Each level is labeled at the far right of the chart, showing the year, level type (High, Low, or Mid), and price (e.g., 2016 High - 1.20000).
Labels are right-aligned in white, ensuring clear visibility against any background.
This indicator is perfect for traders who rely on long-term technical analysis, providing a quick and structured way to visualise significant yearly price levels.
Title of Chart [Unitah]Title of Chart
A simple yet effective TradingView indicator designed to enhance your charting experience by displaying essential information directly on your charts.
Key Features:
✅ Customizable Title & Subtitle – Add a personalized title and subtitle to your chart. Customize text, color, size, and alignment to match your preferences.
✅ Date, Symbol & Timeframe Display – Easily view the current trading symbol, timeframe, and date directly on your chart. Customize the position, color, and text size for clear visibility.
✅ Flexible Positioning – Adjust the placement of the title, subtitle, and symbol information anywhere on the chart (top, middle, bottom, left, center, or right).
This indicator is particularly useful for traders who frequently save or share their charts, ensuring that every chart includes clear and professional-looking labels.
Liquidity Sweep + ATR, Bollinger Bands & Fair Value Gaps AlertsUse on 4hr/Daily time frame
Enter on the 15 min time frame
Set your SL below the liquidity sweep
Bullish & Bearish Engulfingbuying and selling signal for bullish engufing and bearish engufing by prudent fx
Cash Data (NeoWave)NeoWave: Cash Data: @MikhePool channel
The NeoWave Chart - cash data: indicator is a technical analysis tool designed to visualize significant price movements by drawing dynamic lines between key highs and lows on the chart. Using a user-defined resolution, the indicator identifies new bars and connects the highest high and lowest low within each segment, updating the lines in real-time as new data becomes available. All lines are rendered in black, providing a clean and consistent visual representation of price action without color-coded directional bias. This tool is particularly useful for traders and analysts employing NeoWave theory or similar methodologies, as it helps identify structural patterns and trends in the market.
Dominancia TOP KryptoDominancia KrypT0, permite observar como van variando la capitalizacion de mercado de las criptos y su dominancia en el mercado general.
Renko Buy & Sell StrategyMy ETH Contract Strategy
Hello everyone! I’ve designed a contract trading strategy specifically for ETH. The goal is to capture market volatility!
Strategy Objectives
Capture both long and short opportunities in ETH.
Use the closing price as the basis for opening and closing trades to reduce noise and avoid frequent intraday triggers.
Core Tool
Renko Chart
Core Concept
Generate buy and sell signals using the crossover of the Renko chart’s opening and closing prices, combined with dynamic adjustments based on ATR (Average True Range).
Risk Management
Position Sizing: Risk only 1 contract of the account balance per trade (adjustable).
Stop Loss
None. Close the position and open a new one when a reversal signal appears.
Take Profit
None. Close the position and open a new one when a reversal signal appears.
Why Use This Strategy?
Simple and Effective: Combines fast signals with trend filtering to avoid blind trading.
Usage Recommendations
Best suited for ETH, with optimal performance on 15-minute and 30-minute charts (also works for BTC). Not suitable for other coins. My tests started with $1,000, and the returns have been promising.
Luna's IB Auction Boxes v2Luna’s IB Boxes: Because your chart deserves a VIP zone. It squares away the first hour of London & NY—no drama, all boxes.
Woodie Pivot Points - Panel (Rechts) - Mehr AbstandBeschreibung des Scripts:
Dieses Script berechnet automatisch die Pivot-Punkte (PP), Unterstützungsniveaus (S1, S2, S3) und Widerstandsniveaus (R1, R2, R3) basierend auf den Hoch-, Tief- und Schlusskursen des Vortages. Die berechneten Werte werden farblich codiert (z. B. grün für Widerstand, rot für Unterstützung, gelb für den Pivot-Punkt) und rechts neben dem Chart übersichtlich angezeigt.
Das Script hilft Tradern, wichtige Preisniveaus zu identifizieren, die als potenzielle Umkehr- oder Breakout-Zonen dienen können. Es eignet sich ideal für Intraday-Trading und technische Analysen, um präzise Entscheidungen zu treffen.
EUR - Intrinsic value🔹 Introduction
The EUR - Intrinsic Value indicator is a unique tool that reconstructs the intrinsic value of the euro by aggregating the main Forex pairs associated with the EUR. This indicator provides a clearer view of the overall trend of the euro , independently of any specific currency pair.
It allows traders to better anticipate movements in EURUSD , especially when combined with the U.S. Dollar Index (DXY) . By analyzing both, traders can identify moments of strong momentum and optimize their trade entries.
🔹 How to Use the Indicator?
1️⃣ Add the Indicator to a Chart: The indicator plots candles representing the intrinsic value of the EUR (see Technical information below).
2️⃣ Analyze the DXY Trend:
🔵 If DXY is rising → Bearish momentum likely for EURUSD and other USD pairs.
🔴 If DXY is falling → Bullish momentum likely for EURUSD and other USD pairs.
⚫ If DXY is ranging → Consolidation likely, be cautious of false breakouts .
3️⃣ Confirm with EUR:
🔥 DXY falling + EUR rising → EURUSD likely to surge with strong momentum 📈
❄️ DXY rising + EUR falling → EURUSD likely to drop with strong momentum 📉
4️⃣ Adjust Strategy Based on Context: Wait for confirmations at key support/resistance levels and use other tools to validate trade entries.
🔹 What Value Does This Indicator Provide ?
The EUR - Intrinsic Value indicator offers multiple advantages for trading EURUSD and other EUR-related pairs:
✅ Trend Identification: Determine if the euro is in an uptrend, downtrend, or consolidation phase , regardless of individual currency fluctuations.
✅ Better Trade Timing: Combining this indicator with the Dollar Index (DXY) helps detect setups where EURUSD is likely to experience strong momentum .
✅ A Complementary Tool for Price Action : Use this indicator alongside other technical tools to confirm optimal trade entry/exit points.
🔹 Visual Examples
Shift in market structure in DXY and in EUR in the same time , giving a trend and strong momentum on EURUSD :
This indicator works on any timeframe (even sub 1m)
Note : I use Watermark° script from toodegrees , to show the currency and the timeframe on the top right of charts.
🔹 How Does the Indicator Work?
The indicator is based on a weighted average of the euro’s movements against seven major currencies:
📌 Currencies Included in the Calculation:
EURUSD (Euro vs U.S. Dollar)
EURCAD (Euro vs Canadian Dollar)
EURGBP (Euro vs British Pound)
EURCHF (Euro vs Swiss Franc)
EURAUD (Euro vs Australian Dollar)
EURNZD (Euro vs New Zealand Dollar)
EURJPY (Euro vs Japanese Yen)
The indicator extracts opening, closing, high, and low prices from each pair and create an independent value of the EUR , displayed as a custom candle chart.
🔹 Why Is This Indicator Unique?
Unlike traditional indicators that rely on a single pair, this tool artificially recreates an index for the euro by combining multiple currency pairs. This gives a broader perspective and helps traders to better time entry/exit points .
Rather than relying on a simple average , it accounts for the dynamic changes in EUR across multiple markets simultaneously .
🔹 Technical Information
📊 Display: Custom candles representing the intrinsic value of the EUR.
⏳ Supported Timeframes: Compatible with all timeframes.
⚠️ Limitations:
This indicator does not provide direct buy/sell signals but serves as a contextual tool to improve EUR trading decisions.
This is an indicator, it means you can't use other indicators on it .
You can draw on it, but your draws will not be able to stay magnet to the EUR indicator
Follow this three simple steps below to use this indicator on TradingView :
Select any forex pair on your chart (important to get a correct chart)
Hide it by clicking the 3 dots and then "Hide"
Add the "EUR - Intrisic value" indicator to your chart and set it as Full screen
🔹 Conclusion
The EUR - Intrinsic Value indicator is a powerful tool for traders looking to anticipate euro movements in the Forex market. By combining it with DXY and other technical analysis tools, it provides a clearer understanding of trading opportunities , reducing false signals and improving decision-making.
🚀 Use this indicator to refine your trade entries and capitalize on the best market opportunities! 🔥
⚠️ Terms and Conditions ⚠️
This financial tool is for educational purposes only and not financial advice. Users assume responsability for decisions made based on the tool's information.
Past performance doesn't guarantee future results.
By using this tool, users agree to these terms.