Reintegration OPR zone 9h30📝 Indicator Description (for TradingView):
Name: Reintegration OPR Zone – 9:30 AM EST (UTC-4)
Purpose:
This indicator is designed for US indices like NAS100, US30, or SPX500. It helps identify potential false breakouts or retests by tracking when the price re-enters the Opening Price Range (OPR) after an initial breakout.
🔍 How it works:
At 9:30 AM New York time (UTC-4), the script captures the high and low of the first 15-minute candle (which is key for the US session open).
It then draws a horizontal box (rectangle) from the high to the low of that candle.
The box extends horizontally for 7 hours (28 candles on a 15-minute chart).
The script tracks if price:
Breaks above or below the OPR zone
Then re-enters the zone (a potential "fakeout" or "retest" signal)
No label or text is displayed on the chart (you requested it to be hidden).
🕒 Timeframe:
Designed for the 15-minute chart (M15)
Assumes New York session open at 9:30 AM EST (UTC-4)
Chart patterns
ORB 15 min w/ PDHL + bands = $$$This indicator was created for the 15 min Opening Range Breakout Strategy. The goal was to incorporate Previous Day High and Low levels (PDHL).
For visual ease, the bands can be filled in and you can easily fill in an overlay color when the ORB intersects the PDHL.
Dragon Harmonic Pattern [TradingFinder] Dragon Detector// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org
// © TFlab
//@version=6
indicator('Dragon Harmonic Pattern Dragon Detector', 'Dragon Pattern TFlab', overlay = true, max_bars_back = 5000, max_lines_count = 500, max_labels_count = 500)
// Import Library
import TFlab/Harmonic_Chart_Pattern_Library_TradingFinder/3 as HP
import TFlab/AlertSenderLibrary_TradingFinder/1 as AlertSender
import TFlab/Dark_Light_Theme_TradingFinder_Switching_Colors_Library/1 as Color
// Logical Input
PP = input.int(3, 'ZigZag Pivot Period', group = 'Logical Setting')
ShVF = input.bool(false, 'Show Valid Format', group = 'Logical Setting')
FLPC = input.bool(false, 'Show Formation Last Pivot Confirm', group = 'Logical Setting')
FLPCPeriod = input.int(2, 'Period of Formation Last Pivot', group = 'Logical Setting')
// Display Input
ShowBull = input.bool(true, 'Show Bullish Pattern', group = 'Display Setting')
ShowBear = input.bool(true, 'Show Bearish Pattern', group = 'Display Setting')
ColorBull = input.color(#0609bb, 'Color Bullish Pattern', group = 'Display Setting')
ColorBear = input.color(#0609bb, 'Color Bearish Pattern', group = 'Display Setting')
LineWidth = input.int(1, 'Width Line', group = 'Display Setting')
LabelSize = input.string(size.small, 'Label size', options = , group = 'Display Setting')
Mode = input.string('Light', 'Switching Colors Theme Mode', options = , group = 'Display Setting')
= Color.SwitchingColorMode(ColorBull, Mode)
= Color.SwitchingColorMode(ColorBear, Mode)
// Alert Input
Alert = input.string('On', 'Alert', , 'If you turn on the Alert, you can receive alerts and notifications after setting the "Alert".', group = 'Alert')
AlertName = input.string('Dragon Harmonic Pattern ', 'Alert Name', group = 'Alert')
Frequncy = input.string('Once Per Bar', 'Message Frequency', , 'The triggering frequency. Possible values are: All' + ' (all function calls trigger the alert), Once Per Bar (the first function call during the bar triggers the alert), ' + ' Per Bar Close (the function call triggers the alert only when it occurs during the last script iteration of the real-time bar,' + ' when it closes). The default is alert.freq_once_per_bar.)', group = 'Alert')
UTC = input.string('UTC', 'Show Alert time by Time Zone', group = 'Alert')
MessageBull = input.text_area('Long Signal Position Based on Dragon Harmonic Pattern', 'Long Position Message', group = 'Alert')
MessageBear = input.text_area('Short Signal Position Based on Dragon Harmonic Pattern', 'Short Position Message', group = 'Alert')
// Call Harmonic Pattern Function
= HP.XABCD('Bullish Dragon', 'Bearish', ShowBull, ColorBullish, #ff3030, #36b936, LineWidth, LabelSize, ShVF, FLPC, FLPCPeriod, PP, 0.38, 0.62, 0.8, 1.1, 0.4, 0.8, 0.2, 0.4)
= HP.XABCD('Bearish Dragon', 'Bullish', ShowBear, ColorBearish, #ff3030, #36b936, LineWidth, LabelSize, ShVF, FLPC, FLPCPeriod, PP, 0.38, 0.62, 0.8, 1.1, 0.4, 0.8, 0.2, 0.4)
// Call Alert Sender Function
AlertSender.AlertSender(BullAlert, Alert, AlertName, 'Analysis', '', 'Basic', 'Once Per Bar', 'UTC', 'Off', MessageBull, open, high, low, close, 0, 0, 0, 0, 0)
AlertSender.AlertSender(BearAlert, Alert, AlertName, 'Analysis', '', 'Basic', 'Once Per Bar', 'UTC', 'Off', MessageBear, open, high, low, close, 0, 0, 0, 0, 0)
// Candle Confirmation
plotshape(BearCandleConfirm, style = shape.arrowdown, color = color.red)
plotshape(BullCandleConfirm, style = shape.arrowup, color = color.green, location = location.belowbar)
BIZ: Multi Purpose Indicator V3Multi Purpose Indicator:
1. MTF Table for all Timeframes
2. Support Resistance Zones: Yesterday + Today
3. Trend colored background
4. 200 Ema + 50 Ema + 9 Ema
5. Doji + Hammer Candles Indentify
Support & Resistance Automatically draws the crucial support and resistance lines.
Todays High and Low in Red.
Yesterdays High and Low in Orange.
Timeframe StrategyThis is a multi-timeframe trading strategy inspired by Ross Cameron's style, optimized for scalping and trend-following across various timeframes (1m, 5m, 15m, 1h, and 1D). The strategy integrates a comprehensive set of technical indicators, dynamic risk management, and visual tools.
Core Features
Dynamic Take Profit, Stop Loss & Trailing Stop
> Separate settings per timeframe for:
-TP% (Take Profit)
-SL% (Stop Loss)
-Trailing Stop %
-Cooldown bars
> Configurable via UI inputs.
>Smart Entry Conditions
Bullish entry: EMA9 crossover EMA20 and EMA50 > EMA200
Bearish entry: EMA9 crossunder EMA20 and EMA50 < EMA200
>Additional confirmation filters:
-Volume Filter (enabled/disabled via UI)
-Time Filter (e.g., only between 15:00–20:00 UTC)
-Spike Filter: rejects high-volatility candles
-RSI Filter: above/below 50 for trend confirmation
-ADX Filter (only applied on 1m, e.g., ADX > 15)
-Micro-Volatility Filter: minimum range percentage (1m only)
-Trend Filter (1m only): price must be above/below EMA200
>Trailing Stop Logic
-Configurable for each timeframe.
- Optional via toggle (use_trailing).
>Trade Cooldown Logic
-Prevents consecutive trades within X bars, configurable per timeframe.
>Technical Indicators Used
-EMA 9 / 20 / 50 / 200
-VWAP
-RSI (14)
-ATR (14) for volatility-based spike filtering
-Custom-calculated ADX (14) (manually implemented)
>Visual Elements
🔼/🔽 Entry signals (long/short) plotted on the chart.
📉 Table in bottom-left:
Displays current values of EMA/VWAP/volume/ATR/ADX.
> Optional "Tab info" panel in top-right (toggleable):
-Timeframe & strategy settings
-Live status of filters (volume, time, cooldown, spike, RSI, ADX, range, trend)
-Uses emoji (✅ / ❌) for quick diagnostics.
>User Customization
-Inputs per timeframe for all key parameters.
-Toggle switches for:
-Trailing stop
-Volume filter
-Info table visibility
This strategy is designed for active traders seeking a balance between momentum entry, risk control, and adaptability across timeframes. It's ideal for backtesting quick reversals or breakout setups in fast markets, especially at lower timeframes like 1m or 5m.
Reversal Detector [Apicode]This indicator attempts to represent significant trend changes. While it's not perfect (none are), it does allow you to be prepared for the next trend change. Remember to combine it with other indicators.
Opening Range Breakout Cloud Indicator by TenAMTraderOpening Range Breakout Cloud Indicator – by TenAMTrader
This indicator visually maps out the Opening Range of the trading day — the price high and low between a configurable start and end time (default: 9:30 AM–10:00 AM EST). It helps traders identify breakout levels, key intraday zones, and price behavior relative to the early range.
🔹 What It Shows:
Opening High, Low, and Midpoint lines for each day.
Clouds between the midpoint and high/low for visual clarity.
Optional Second Range (e.g., 9:30–9:45 AM) for more aggressive early signals.
Historical Ranges are preserved, allowing you to view previous days' levels on the chart.
Custom Alerts when price crosses the Opening High, Low, or Midpoint.
Full customization: colors, range times, and display toggles.
🔔 Use It For:
Spotting breakouts or rejections at key levels.
Finding early support/resistance zones.
Planning trades using intraday structure.
⚠️ Use this tool as part of a broader trading strategy. No indicator guarantees results — always trade at your own discretion.
Profit Express Trading Reversal- Strateg Profit Express Trading Reversal $PXTR is based on the analysis of EURUSD market behavior and aims to trade opportunistically when a change in behavior is about to occur. This analysis involves the study of charts and key indicators which make it possible to effectively interpret the short-term transition from a market in range to a market on the verge of exploding upwards or downwards.
Size : 0,25 of capital
Stop loss : 5% equal to 18 Pips
Take profit : 100% equal to 3600 Pips
Withdraw : Each time capital graw up 10%
Hatim BAKZIZ
seekho roj kamao 3 **Seekho Roj Kamao** is a powerful trend continuation indicator designed to enhance your trading strategy with precise entry and exit signals. It combines the strength of RSI, CMO, and MACD to identify momentum shifts, while ATR-based trailing stops help manage risk effectively. The indicator dynamically plots buy/sell signals on the chart, along with clearly labeled take profit and stop loss levels. Whether you're a beginner or an experienced trader, this tool offers a structured and disciplined approach to trading trends. Seekho Roj Kamao empowers you to make informed decisions and aim for consistent profits in volatile market conditions.
Seekho roj kamao StrategyThe "Seekho Roj Kamao Strategy" is a powerful backtesting tool designed to identify high-probability trend continuation setups. It combines RSI, Chande Momentum Oscillator (CMO), and adaptive ATR-based trailing stop logic to detect precise entry points and manage risk through automated take profit (1R, 2R, 3R) and stop loss levels. This strategy dynamically evaluates trend direction shifts using price action and momentum divergence, enabling traders to test robust trading scenarios with clearly defined exits. Ideal for forex, crypto, and stock traders, it allows full customization of sensitivity and volatility filters, making it suitable for both intraday and swing trading approaches.
seekho roj kamao v 2 "Our Supply and Demand Zone Indicator is a powerful tool designed to pinpoint key institutional price levels with accuracy. It automatically detects and highlights significant supply (resistance) and demand (support) zones based on historical price action, helping traders identify potential reversal and breakout areas. The zones adapt dynamically to market structure, providing real-time visual cues for strategic entries, exits, and risk management. Whether you're trading forex, stocks, or crypto, this indicator helps you stay ahead of the market by revealing hidden price imbalances and enhancing your ability to make informed, confident trading decisions."
EMA Trend Dashboardthis just shows what position the user defined EMAs are on 4 different TFs. also the TF are user defined. and the TXT size is user defined. if you have trouble with bias maybe this is the script you need.
Weak Doji DetectorIndicators shows when a weak doji candle is formed. This is important for my strategy , after the break of a weak doji candle (the high the timeframe the stronger the break and continuation) near a support or resistance with enough range and time of volume, then we can see continuation of trend
Engulfing w/ Liquidity Sweep (Bullish & Bearish)This indicator shows both a “bullish” and Bearish engulfing bar close that has swept previous candles liquidity . This bar is a very important part of my trading strategy . After a liquidity sweep, followed by an engulfing candle, after a retracement ( usually no greater than 75% or trade will be invalid), then we can look to target the previous candles low, or further extend the trend
RSI Crosses SMA Buy/Sell Strategy-R-AlgoAIDisclaimer:
// This script is for educational and informational purposes only.
// It does not constitute financial or investment advice.
// Trading involves substantial risk and may not be suitable for all investors.
// Always do your own research or consult with a licensed financial advisor
// before making any trading or investment decisions.
// The author is not responsible for any losses incurred using this script
Key Changes:
Buy at High of the Signal Candle:
The strategy.entry("Buy", strategy.long, limit=high, comment="Buy at High of Signal Candle") line places a buy order at the high of the candle that triggered the signal (i.e., the candle where the RSI crosses above the SMA).
How it works:
When the RSI crosses above the SMA and the buy condition is true, the strategy will place a buy order at the high of that candle.
Exit:
The strategy will exit the position if the RSI crosses below the SMA as usual using strategy.close("Buy").
Example:
If the RSI crosses above the SMA at a specific candle, the strategy will enter a buy order at the high of that candle.
When the RSI crosses below the SMA, it will close the long position.
This should now execute a buy order at the high of the signal candle when the RSI crosses above the SMA, as requested.
RSI Crosses SMA Buy/Sell StrategyDisclaimer:
// This script is for educational and informational purposes only.
// It does not constitute financial or investment advice.
// Trading involves substantial risk and may not be suitable for all investors.
// Always do your own research or consult with a licensed financial advisor
// before making any trading or investment decisions.
// The author is not responsible for any losses incurred using this script
Key Changes:
Buy at High of the Signal Candle:
The strategy.entry("Buy", strategy.long, limit=high, comment="Buy at High of Signal Candle") line places a buy order at the high of the candle that triggered the signal (i.e., the candle where the RSI crosses above the SMA).
How it works:
When the RSI crosses above the SMA and the buy condition is true, the strategy will place a buy order at the high of that candle.
Exit:
The strategy will exit the position if the RSI crosses below the SMA as usual using strategy.close("Buy").
Example:
If the RSI crosses above the SMA at a specific candle, the strategy will enter a buy order at the high of that candle.
When the RSI crosses below the SMA, it will close the long position.
This should now execute a buy order at the high of the signal candle when the RSI crosses above the SMA, as requested.
Mayfair COT ToolCommitments of traders gives the positions of the professionals (default is Leveraged Traders) so you can see what the BIG boys are thinking.
Prototype 005This is a tool that will make it easy for you to trade by identifying the position of the buy and sell points of the order.
Middle Finger Trading StrategyStrategy Logic Summary:
Identify Huge Volume: Finds a bar ( - the previous bar) where volume is significantly higher (activeHugeVolMultiplier) than the recent average volume (avgVolume ). The average calculation excludes specific times (RTH edges, certain ETH).
Confirm Volume Drop: Checks if the current bar's ( ) volume is lower than the previous bar's huge volume (volume < volume ).
Determine Trend Before Spike: Looks at the close two bars ago (close ) relative to the SMA two bars ago (priceSma ) to determine the trend before the huge volume bar.
Entry Signal (Base):
Long: Bearish trend before spike + Huge Volume on prev bar + Volume drop on current bar.
Short: Bullish trend before spike + Huge Volume on prev bar + Volume drop on current bar.
Time Filter: Optionally filters out entries during the first/last 15 mins of RTH and always filters specific ETH/pre-market times.
Entry Execution:
If a Long signal occurs and no position is open, place a limit order to buy at the low of the huge volume bar (low ).
If a Short signal occurs and no position is open, place a limit order to sell at the high of the huge volume bar (high ).
Order Processing: process_orders_on_close=false means limit orders can potentially be filled intra-bar if the price touches the limit level during the bar's formation.
FVG [TakingProphets]🧠 Purpose
This indicator is built for traders applying Inner Circle Trader (ICT) methodology. It detects and manages Fair Value Gaps (FVGs) — price imbalances that often act as future reaction zones. It also highlights New Day Opening Gaps (NDOGs) and New Week Opening Gaps (NWOGs) that frequently play a role in early-session price behavior.
📚 What is a Fair Value Gap?
A Fair Value Gap forms when price moves rapidly, skipping over a portion of the chart between three candles — typically between the high of the first candle and the low of the third. These zones are considered inefficient, meaning institutions may return to them later to:
-Rebalance unfilled orders
-Enter or scale into positions
-Engineer liquidity with minimal slippage
In ICT methodology, FVGs are seen as both entry zones and targets, depending on market structure and context.
⚙️ How It Works
-This script automatically identifies and manages valid FVGs using the following logic:
-Bullish FVGs: When the low of the current candle is above the high from two candles ago
-Bearish FVGs: When the high of the current candle is below the body of two candles ago
-Minimum Gap Filter: Gaps must be larger than 0.05% of price
-Combine Consecutive Gaps (optional): Merges adjacent gaps of the same type
-Consequent Encroachment Line (optional): Plots the midpoint of each gap
-NDOG/NWOG Tracking: Labels gaps created during the 5–6 PM session transition
-Automatic Invalidation: Gaps are removed once price closes beyond their boundary
🎯 Practical Use
-Use unmitigated FVGs as potential entry points or targets
-Monitor NDOG and NWOG for context around daily or weekly opens
-Apply the midpoint (encroachment) line for precise execution decisions
-Let the script handle cleanup — only active, relevant zones remain visible
🎨 Customization
-Control colors for bullish, bearish, and opening gaps
-Toggle FVG borders and midpoint lines
-Enable or disable combining of consecutive gaps
-Fully automated zone management, no manual intervention required
✅ Summary
This tool offers a clear, rules-based approach to identifying price inefficiencies rooted in ICT methodology. Whether used for intraday or swing trading, it helps traders stay focused on valid, active Fair Value Gaps while filtering out noise and maintaining chart clarity.
No gaps candlescreate a script myself so I can take more control on the indicator. updated to version 6, keep the same logic from the creator. you can search the same title, he has like 1K use
True Day OpenThis script plots the True Day Open (TDO) — the 9:30 AM Eastern Time opening price of the New York session — which serves as a critical institutional reference point. Use it as a bias filter for intraday trading: price above TDO favors long setups; price below favors shorts. Works best when combined with VWAP, Fibonacci levels, and Initial Balance.