ciclo e velocita cicloCycle analisys made by MA builted usisng the difference between 2 MA , one with lenght double then the other one. Cycle speed indicator is the moment of the Cycle MA and give us the up or down of the Cycle MA
Cerca negli script per "Cycle"
Renko MACD v2.0 (TradingFrog)Renko MACD (TradingFrog) – Professional Description with Code Explanations
Description:
The Renko MACD v2.0 (TradingFrog) merges the clarity of Renko charting with the power of the MACD indicator. This script SIMULATES RENKO BRICKS using price movement within any timeframe and calculates the MACD on these pseudo-Renko closes, resulting in clearer, noise-reduced trend signals.
Key Features & Code Insights
1. Pseudo-Renko Brick Calculation
price_diff = src - renko_close
abs_diff = math.abs(price_diff)
bricks_needed = math.floor(abs_diff / box_size)
Explanation:
This section computes how far the current price (src) has moved from the last Renko close. If the movement exceeds the predefined brick size, one or more new bricks will be created. This logic helps simulate Renko charts on any timeframe.
2. Brick Update Logic
if bricks_needed >= 1
direction = price_diff > 0 ? 1 : -1
brick_movement = direction * bricks_needed * box_size
new_renko_close = renko_close + brick_movement
renko_open := renko_close
renko_close := new_renko_close
renko_trend := direction
Explanation:
When the price moves enough to warrant at least one new brick, the script determines the direction (up or down), calculates the new Renko close, and updates all relevant Renko variables. This enables the indicator to track trend changes and reversals.
3. MACD Calculation on Renko Data
renko_macd = ta.ema(renko_close, fast_length) - ta.ema(renko_close, slow_length)
renko_signal = ta.ema(renko_macd, signal_length)
renko_histogram = renko_macd - renko_signal
Explanation:
Instead of using standard price closes, the MACD is calculated on the simulated Renko close prices. This reduces market noise and provides earlier, more reliable trend signals.
4. Alerts and Visual Markers
macd_cross_up = ta.crossover(renko_macd, renko_signal)
macd_cross_down = ta.crossunder(renko_macd, renko_signal)
Explanation:
These lines detect when the Renko MACD line crosses above or below its signal line. The script uses these events to trigger on-chart markers and TradingView alerts, making it easy to spot trading opportunities.
5. Debug & Display Table (Optional)
table.cell(myTable, 0, 0, "Renko Close: " + str.tostring(renko_close))
table.cell(myTable, 1, 0, "MACD: " + str.tostring(renko_macd))
Explanation:
An optional debug table displays real-time Renko and MACD values directly on the chart, supporting transparency and strategy development.
Advantages
Noise Reduction: By using Renko logic, the indicator filters out insignificant price moves.
Clarity: Trends and reversals become much easier to identify.
Flexibility: Works on all markets and timeframes, with customizable brick size and MACD settings.
Note:
This indicator simulates Renko bricks within standard timeframe charts. While not identical to true Renko charts, it offers highly valuable trend and signal analysis for all types of traders.
Recommended Usage:
Best suited for traders seeking clear, reliable trend signals. Combine with other strategies for optimal results.
Happy Trading!
👽 TIME PERIODS👽 TIME PERIODS v1.15
Visualize key time divisions and session levels on any chart:
• Timezone‐aware session shading
– Highlight active NY session (configurable HHMM–HHMM and days)
– Adjustable background opacity
• Weekly & Monthly Separators
– Toggle on/off
– Custom color, style (solid/dashed/dotted) & width
• Day-of-Week Labels
– Diamonds at session start for M–S
– Toggle on/off
• Session Open Line
– Horizontal line at each session’s open
– Configurable color, width & “distanceRight” in bars
– Always shows current session
• Midpoint Vertical Line
– Plots halfway between session open & close
– Custom color, style & width
– Toggle on/off
▶ All elements grouped for easy parameter tweaking
▶ Fully timezone-configurable (default America/New_York)
▶ Version 1.15 — added distanceRight feature & current session support
Use this to see exactly where your chosen session, weekly/monthly boundaries, and intraday pivot points fall—across any timeframe.
GER40 Opening Range Breakout (Simple)✅ GER40 Opening Range Breakout Strategy — Trading Plan
🎯 Objective:
Capture early momentum after the Frankfurt open by trading breakouts of the initial 15-minute range.
📌 Rules Summary:
Instrument: GER40 (DAX40)
Timeframe: 5-minute or 15-minute chart
Session Focus: 08:00–10:00 CET
Opening Range: 08:00–08:15 CET
🛠 Entry Conditions:
Long entry: Price breaks above the 08:00–08:15 high with volume confirmation.
Short entry: Price breaks below the 08:00–08:15 low with volume confirmation.
Optional confirmation: RSI > 50 for long, RSI < 50 for short.
Market Up and Low VolatilityThis indicator identifies uptrends in the customizable index (e.g. SP500) together with a customizable volatility index (e.g. VIX) being below a threshold such as 20.
Multi-timeframe Spot ETH ETF flowsDescription of Multi-timeframe Spot ETH ETF Flows Pine Script
This Pine Script™ (version 6) creates a Multi-timeframe Spot ETH ETF Flows indicator to track and visualize net and cumulative capital flows for various Ethereum (ETH) Spot Exchange-Traded Funds (ETFs) listed on AMEX and NASDAQ. The script calculates up and down volume based on price movements in a lower timeframe, multiplies these by the average price (HLC3) for accuracy, and aggregates the data to display net and cumulative flows.
Key Features:
ETF List : Tracks nine ETH Spot ETFs (e.g., AMEX:ETHE, NASDAQ:ETHA, etc.).
Custom Timeframe Input : Allows users to override the default lower timeframe (automatically selected based on the chart’s timeframe) with a custom timeframe (default: 720 minutes). Higher timeframes provide more historical data but less precision.
Volume Analysis : Calculates positive (up) and negative (down) volume based on price movements (close vs. open or close vs. previous close) in the lower timeframe, weighted by the average price.
Net and Cumulative Flows :
Net flow is the sum of up and down volumes across all ETFs, displayed as colored columns (green for positive, red for negative, with transparency based on trend direction).
Cumulative flow is the running total of net flows since the ETFs' launch, plotted as a line. Visualization : Uses dynamic colors for net flow columns to indicate direction and strength, with a black line for cumulative flow.
Technical Details:
Data Retrieval : Uses request.security and request.security_lower_tf to fetch price and volume data from lower timeframes.
Array Processing : Sums up and down volume arrays to compute net flows for each ETF.
Auto Timeframe Switching : Selects an appropriate lower timeframe (e.g., 1-second for seconds-based charts, 5-minute for daily charts) unless a custom timeframe is specified.
Styling : Net flow is plotted as columns, with color intensity reflecting flow direction and trend continuity.
Purpose:
The indicator helps traders and investors monitor capital inflows and outflows for ETH Spot ETFs, providing insights into market sentiment and fund activity across multiple timeframes.
License : Mozilla Public License 2.0.
Period Separator with DatesSimple Period Separator script for multiple timeframes with dates and months for higher timeframes, and time if you are using lower time frames.
down up Oscillator (No Repaint)
It was integrated according to volume/movement. If it remains in the scissors, know that hard movements will develop.
VIKRANT ComboThank you for your interest in my custom TradingView script.
I've granted you access to my Invite-Only script, titled “VIKRANT COMBO” on TradingView. This script is designed to help you with more accurate entries and exits based on advanced trend de
BTC Correlation CoefficientThe BTCUSDT Correlation Coefficient indicator measures the strength and direction of the relationship between the selected asset (e.g., a stock or altcoin) and the price of BTCUSDT over a chosen time period. It uses a custom correlation function to calculate how closely the asset's price movements align with Bitcoin, returning a value between -1 and +1. A coefficient near +1 indicates strong positive correlation, while values near -1 indicate inverse correlation. This helps traders assess whether the asset tends to follow Bitcoin’s price trends or behave independently, enabling more informed decisions on portfolio diversification and market sentiment alignment.
EMA 200 & EMA 20EMA20\200 Golden & Death cross
you can use it for all time frame trading in market
it make more easy way to find the way for market if its going up or down
🧩Tawajoh +🧩Tawajoh + Indicator Explanation
The Tawajoh + indicator is a comprehensive technical analysis tool designed to provide a broad market perspective by combining several advanced analytical techniques into a single indicator.
Main Components:
Market Shift Logic:
This part uses the Hull Moving Average (HMA) to detect market shifts by comparing a fast HMA with a delayed one. When a crossover or crossunder happens, it defines a new "Shift Level" and displays labels showing volume or price data along with color-coded signals indicating the market direction.
Smoothed Heiken Ashi (SHA):
Applies smoothing on traditional Heiken Ashi candles using various moving averages (like LSMA, SMA, EMA, etc.) to provide clearer trend visualization with reduced noise and volatility.
HMA PLANz (Hull Moving Averages):
Plots two customizable moving averages (types include SMA, EMA, WMA, HMA) with user-defined source prices (close, high, low) and lengths, along with optional labels for easy identification.
High Liquidity Midline Logic:
Identifies the candle with the highest volume in a given period and plots a midpoint line (average of high and low) for that candle. The line color switches between green and red depending on the current close price position, and the high-volume candle is highlighted in yellow.
RSI 50 EMA Smoothed:
A refined RSI indicator smoothed using a custom EMA near the 50 level, offering precise signals with color changes based on price action and optional labels for clarity.
Volumatic Logic (Volume Dynamics):
Tracks volume trends using smoothed EMAs, plotting volume candles with dynamic colors and gradients that reflect uptrends or downtrends in volume strength, helping to confirm market momentum shifts.
How to Use Tawajoh + Indicator:
Detect Market Shifts: Watch the Market Shift levels and their labels for important turning points.
Read Overall Trend: Use the Smoothed Heiken Ashi candles and moving averages to identify the main trend with less noise.
Monitor Liquidity: The High Liquidity Midline helps spot potential support/resistance levels based on heavy trading activity.
Confirm with RSI & Volume: RSI signals around level 50 combined with volume dynamics give additional confirmation of trend strength or reversals.
Simple Market Kill-Zones + Open (UTC)What it does
This Pine v6 indicator highlights the “kill-zones” around the big session opens—Asian (23:00–03:00 UTC), London (07:00–09:00 UTC) and New York (13:30–15:30 UTC)—by reading each bar’s actual UTC timestamp. It also draws dashed vertical lines at exactly 23:00, 07:00 and 13:30 UTC, so you never miss the liquidity ramps. Because it uses raw UTC hours/minutes, it stays accurate even when exchanges pause (e.g. Nano-BTC’s daily halt) or your chart’s display timezone changes.
Key Inputs
Show Asia/London/NY Kill Zone – toggle each shaded band on/off
Zone Colors – pick your own semi-transparent hues
Show Session-Open Lines – enable dashed verticals at the exact open times
Line Colors – customize the line opacity and style
How to use
Apply on your favorite timeframe (15 min–1 h is a sweet spot).
Toggle the zones you care about and pick readable colors.
Use the dashed lines as entry triggers or as visual bookmarks.
In your own Pine strategies, wrap order logic with the zone booleans to only trade when liquidity’s alive.
Price Reaction Analysis by Day of WeekOverview
The "Price Reaction Analysis by Day of Week" indicator is a tool that enables traders to analyze historical price reaction patterns to technical indicator signals on a selected day of the week. It examines price behavior on a chosen candle (from 1 to 30) in the next day or subsequent days after a signal, depending on the timeframe, and provides success rate statistics to support data-driven trading decisions. The indicator is optimized for timeframes up to 1 day (e.g., 1D, 12H, 8H, 6H, 4H, 1H, 15M), as the analysis relies on day-of-week comparisons. Lower timeframes generate more signals due to the higher number of candles per day.
Key Features
1. Flexible Technical Indicator Selection
Users can choose one of four technical indicators: RSI, SMI, MA, or Bollinger Bands. Each indicator has configurable parameters, such as:
RSI length, oversold/overbought levels.
SMI length, %K and %D smoothing, signal levels.
MA length.
Bollinger Bands length and multiplier.
2. Day-of-Week Analysis
The indicator allows users to select a day of the week (Monday, Tuesday, Wednesday, Thursday, Friday) for generating signals. It analyzes price reactions on a selected candle (from 1 to 30) in the next day or subsequent days after the signal. Examples:
On a daily timeframe, a signal on Monday can be analyzed for the first, fourth, or later candle (up to 30) in subsequent days (e.g., Tuesday, Wednesday).
On timeframes lower than 1 day (e.g., 12H, 8H, 6H, 4H, 1H, 15M), the analysis targets the selected candle in the next day or subsequent days. For example, on a 4H timeframe, you can analyze the second Tuesday candle following a Monday signal. The maximum timeframe is 1 day to ensure consistent day-of-week analysis.
3. Visual Signals
Signals for the analysis period are marked with background highlights in real-time when the indicator’s conditions are met. The last highlighted candle of the selected day is always analyzed. Arrows are displayed on the chart at the candle specified by the “Candles to Compare” setting (e.g., the first candle if set to 1):
Green upward triangles (below the candle) for successful buy signals (the closing price of the selected candle is higher than the signal candle’s close).
Red downward triangles (above the candle) for successful sell signals (the closing price of the selected candle is lower than the signal candle’s close).
Gray “x” marks for unsuccessful signals (no price reversal in the expected direction). Arrow positions are intuitive: buy signals below the candle, sell signals above. Highlights and arrows do not require waiting for future signals but are essential for calculating statistics.
Note: The first candle of the next day may appear shifted on the chart due to timezone differences, which can affect the timing of signal appearance.
4. Signal Conditions (Highlights) for Each Indicator
RSI: The oscillator is in oversold (buy) or overbought (sell) zones.
SMI: SMI returns from oversold (buy) or overbought (sell) zones.
MA: Price crosses the MA (upward for buy, downward for sell).
Bollinger Bands: Price returns inside the bands (from below for buy, from above for sell).
5. Success Rate Statistics
A table in the top-right corner of the chart displays:
The number of buy and sell signals for the selected day of the week.
The percentage of cases where the price of the selected candle in the next day or subsequent days reversed as expected (e.g., rising after a buy signal). Statistics are based on comparing the closing price of the signal candle with the closing price of the selected candle (e.g., first, fourth) in the next day or subsequent days.
Important: Statistics do not account for price movements within the candle or after its close. The price on the selected candle (e.g., fourth) may be lower than earlier candles but still higher than the signal candle, counting as a positive buy signal, though it does not guarantee profit.
6. Date Range
Users can specify the analysis date range, enabling strategy testing on historical data from a chosen period. Ensure the start and end dates are set correctly.
Applications
The indicator is designed for traders who want to leverage historical patterns for position planning. Examples:
On a 4-hour timeframe: If a sell signal highlight appears on Monday and statistics show an 80% chance that the fourth Tuesday candle is bearish, traders may consider playing a correction at the open of that candle.
On a daily timeframe: If a highlight indicates market overheating, traders may consider entering a position at the open of the first candle after the signal (e.g., Tuesday), provided statistics suggest an edge. Users can analyze the signal on the first candle and check later candles to validate results, increasing confidence in consistent patterns.
Key Settings
Indicator Type: Choose between RSI, SMI, MA, or Bollinger Bands.
Selected Day: Monday, Tuesday, Wednesday, Thursday, or Friday.
Candles to Compare: The number of the candle in the next day or subsequent days (from 1 to 30).
Indicator Parameters: Lengths, levels (e.g., oversold/overbought for RSI).
Background Colors: Configurable highlights for buy and sell signals.
Notes
Timeframes: The indicator is optimized for timeframes up to 1 day (e.g., 1D, 12H, 8H, 6H, 4H, 1H, 15M), as the analysis relies on day-of-week patterns. Timeframes lower than 1 day generate more signals due to the higher number of candles per day.
Candle Shift: The first candle of the next day may appear shifted on the chart due to timezone differences, affecting the timing of signals across markets or platforms.
Statistical Limitations: Results are based on the closing prices of the selected candle, ignoring fluctuations in earlier candles, within the candle, or subsequent price movements. Traders must assess whether entering at the open or after the close of the selected candle is profitable.
Testing: Effectiveness depends on historical data and parameter settings. Testing different configurations across markets and timeframes is recommended.
Who Is It For?
Swing and position traders who base decisions on technical analysis and historical patterns.
Market analysts seeking patterns in price behavior by day of the week.
TradingView users of all experience levels, thanks to an intuitive interface and flexible settings.
ParthFintech MARKETSParthFintech MARKETS
Session Mapping & Real-Time Countdown Indicator
Overview
ParthFintech MARKETS is a lightweight, fully on-chart Pine Script indicator that:
Automatically detects your chart’s timezone
Shades each of the four major FX sessions (Tokyo, London, New York, Sydney) in muted background colors
Highlights the currently active session with a soft green overlay
Displays a live countdown label showing time remaining until the end of the current session—or, if markets are closed, until the next session opens
Whether you trade forex, indices or commodities, this tool gives you instant visual context around session openings and closings—so you can better plan entries, exits and high-volatility news events.
---
🚀 Key Features
Auto-Timezone: All session times (Tokyo 00:00–09:00, London 08:00–17:00, New York 13:00–22:00, Sydney 22:00–06:00) are calculated in your chart’s local timezone—no manual offsetting required.
Session Shading:
Tokyo: semi-transparent blue
London: semi-transparent orange
New York: semi-transparent purple
Sydney: semi-transparent yellow
Current-Session Highlight: A light green background indicates which session is now active.
Countdown Label:
When a session is open: “Session: ends in hh:mm”
When closed: “No session. Next in hh:mm”
Automatically updates on every new bar.
Flexible Timeframes: Works on any chart timeframe (1 m, 5 m, 15 m, 1 h, 4 h, daily, etc.).
---
📈 How to Use
1. Add to Chart: In TradingView’s Pine Editor, paste the ParthFintech MARKETS script and click Add to Chart.
2. Publish: When you publish, use the description above to let other traders know exactly what they’re getting.
3. Customization (Optional):
Open the script and modify the session start/end hours at the top if you have a different trading schedule.
Adjust the shading opacity or colors by editing the color.new() parameters.
------
> Note: This indicator is designed for informational and planning purposes. Always combine session-based insights with your own technical and fundamental analysis before placing trades.
Enjoy clearer session visibility and pinpoint timing on your charts—courtesy of ParthFintech MARKETS!
For more information, contact support@parth-fintech, Telegram: @ParthFintech
www.parth-fintech.com
RSI OB/OS TrackerRSI OB/OS Tracker – Find Overbought & Oversold Assets Easily!
Are you looking for trading opportunities in overbought (OB) or oversold (OS) zones? The RSI OB/OS Tracker indicator helps you monitor multiple assets simultaneously, identifying potential pullbacks or reversals based on RSI conditions!
🔍 Key Features:
✅ Track Multiple Asset Lists – Choose from 3 predefined lists (Forex, Crosses, Indices, Commodities).
✅ Custom OB/OS Levels – Adjust RSI thresholds (default: 70/30) to fit your strategy.
✅ Multi-Timeframe Analysis – Check RSI conditions on any timeframe, independent of your chart.
✅ Real-Time Alerts – Set up TradingView alerts for each asset list separately, even if the indicator is removed from your chart!
✅ Clean & Efficient Display – A simple table shows the current OB/OS status for all assets, with the list number (1, 2, or 3) visible for easy reference.
📊 How It Works:
The indicator scans all assets in the selected list.
If an asset enters OB (Overbought) or OS (Oversold), it highlights in the table.
You can set alerts to notify you when a new signal appears, helping you catch potential reversals early!
⚡ Perfect For:
Swing Traders looking for pullback opportunities.
Reversal Traders spotting extreme RSI conditions.
Multi-asset traders who need a quick overview of market conditions.
📌 Try it now and never miss an OB/OS opportunity again!
👉 Get the RSI OB/OS Tracker on TradingView today!
#TradingView #RSI #Overbought #Oversold #Pullback #Reversal #Forex #Stocks #Indices #TradingIndicator
Navy Seal Trading - EdgarTrader📌 Navy Seal Trading – Asia, London, and NY Sessions
This indicator clearly displays the ranges of the Asia, London, and New York sessions, featuring:
✅ Full range visualization for each session
✅ Asia session high, low, and midline, with extended projection lines for precise reaction analysis
✅ Clean, minimalistic, and professional colors to keep your chart focused
🔷 Designed for the Navy Seal Trading community, focused on precision, discipline, and professional execution in the markets.
Use it to:
✔️ Mark liquidity zones
✔️ Identify Asia manipulation ranges
✔️ Prepare executions in London and NY with clear context
💡 Remember: Clarity in your zones gives you the confidence and discipline to execute like a true Navy Seal Trader.
Advanced Day Separator with Future ProjectionsThe general indicator works on historical data, meaning they develop after the fact. The same is for indicators that show day separation. I was always forced to manually draw in vertical lines for the upcoming week. This indicator I built solves that issue by projecting vertical day separations for the upcoming week. Enjoy! :-)
SDR Dashboard: 结构距离与节奏How to trade with this "SDR Dashboard"
This indicator is not a mindless "arrow trading system", but a powerful filter and decision-making aid. Please strictly follow the following process:
Step 1: Look at the background color (set the rhythm)
Is the chart background blue? If so, your brain should switch to "only look for buying opportunities" mode. Ignore all red arrow signals.
Is the chart background red? If so, switch to "only look for selling opportunities" mode. Ignore all green arrow signals.
Is the background gray? Stay on the sidelines, or only trade in small positions.
Step 2: Wait for the oscillator to enter the area (measure the distance)
Under the blue background, patiently wait for the "Structural Distance Oscillator" main line to enter the green "support zone" below (below -80). This tells you that the price has fallen back to a favorable position in the structure.
Under the red background, wait for the main line to enter the red "resistance zone" above (above +80).
Step 3: Wait for the arrow to appear (find resonance)
This is the most critical step. When the oscillator main line has entered the favorable area, do not act immediately.
Wait patiently for a clear green (▲) or red (▼) arrow signal to appear. This arrow represents the final confirmation of "momentum" and is the resonance point of "time, place, and people".
Step 4: Confirm with the main chart (execute the transaction)
When the SDR dashboard sends a signal, return to your main chart for final confirmation.
Does this signal appear in the strong support/resistance area you marked with VPVR?
Use the **"Long and Short Positions" tool to measure whether the profit and loss ratio of this transaction is still cost-effective?
If everything is perfect, this is a high-probability transaction that is highly consistent with your trading system. Execute it and set the stop loss and take profit according to your trading plan.
This indicator condenses all our discussions - macro rhythm, structural distance, momentum confirmation - into a simple and powerful visual language. It can greatly help you filter out low-quality trading opportunities and force you to be patient and only take action when the chance of winning is the highest.
first 5 minutes NY session)I created this indicator myself to identify the first 5 minutes of the New York session, during which it automatically draws the lines. It's a strategy that has helped me a lot.