ND Egitim - AI Oto FibonacciAutomatic Fibonacci & HH/LL Trend Analysis
This indicator automatically determines the optimal lookback bar count based on market conditions and the specific symbol, then identifies the most recent “Higher High” (HH) and “Lower Low” (LL) points on your chart. It draws a Fibonacci system between these two points, allowing you to instantly visualize potential retracement and extension levels that may act as key support and resistance zones. Additionally, the indicator provides a quick overview of the overall market trend and volatility.
What does it do?
• Fibonacci Levels: Classic Fibonacci levels such as 0%, 23.6%, 38.2%, 50%, 61.8%, 78.6%, and 100% are drawn automatically on the chart. Additional extension and negative levels are also displayed as needed.
• Trend Direction: The general market trend (bullish, bearish, or sideways) is visualized based on the relative positioning of HH/LL points and the structure of moving averages.
• Alert Conditions: Built-in alerts notify you when the price breaks key Fibonacci levels.
Forecasting
Indicador Strong Buy + VolumeBaseado em indicadores de forte entrada associados a um alto volume. GODINHO
Мой скрипт//@version=5
indicator("VIRTUAL Short Entry Alert", overlay=true)
// Объём и среднее по объёму
vol = volume
vol_ma = ta.sma(vol, 20)
// Свечной паттерн: медвежье поглощение
bearish_engulfing = close > open and open > close and close < open and open >= close
// Условие: объём выше среднего
high_volume = vol > vol_ma
// Условие: цена в зоне входа
in_zone = close >= 1.40 and close <= 1.43
// Все условия совпали
short_signal = bearish_engulfing and high_volume and in_zone
// Метка на графике
plotshape(short_signal, location=location.abovebar, style=shape.labeldown, color=color.red, size=size.small, text="SHORT")
// Алерт
alertcondition(short_signal, title="Short Signal", message="VIRTUAL: Сигнал на шорт — свеча поглощение + объём + зона 1.40–1.43")
Session Highs and Lows KL (Last Day) Time AdjustableThis Pinescript Indicator will allow you to visualize the forex trading sessions during the last day. The sessions have time filters to customize to your time zone, and to count for daylight savings time. The lines are also customizable. Works on any timeframe. Simple and effective.
Fib-SMAs + 38↘23 Signal🧠 Fibonacci Time-Ribbon — the 32.8↗23.6 Bearish Reversion Signal (30min)
This indicator plots a dynamic ribbon of Simple Moving Averages (SMAs) derived from key Fibonacci and Golden Spiral ratios applied to time — not price.
It features five SMAs, calculated as Fibonacci-based percentages of a customizable base length (default: 100 candles):
% of base Color Rhythm
23.6% Fuchsia Very fast
32.8% Aqua Fast
50.0% White Neutral
61.8% Yellow Slow
78.6% Orange Very slow
🔍 These SMAs behave like a time-based Fibonacci retracement ladder, dynamically responding to market rhythm and structure.
⚠️ What to Watch For — The “32↗23” Signal
Through repeated intraday testing on BTC, ETH, and high-beta altcoins, we’ve found that:
When the 32.8% SMA crosses above the 23.6% SMA on the 30-minute chart,
price often experiences a short-term correction within the next 4–5 candles (2–2.5 hours).
⏱️ Typical Sequence:
Appears after strong intraday pumps or short-squeeze extensions.
Marks the exhaustion of local upside momentum.
Price often reverts back toward the 50% or 61.8% SMAs (mean).
📉 Historical Outcomes
In back-tested environments:
70–80% of these crosses were followed by pullbacks ranging –3% to –9.8% and sometimes -15~18%.
The moves typically played out within 2–3 hours, making them ideal for scalpers and short-term swing traders.
🛠 Features & Customization
🟨 32↗23 diamond marker appears on every confirmed signal.
📣 Includes alertcondition() so you can automate alerts or trigger bots.
⚙️ Inputs:
Adjustable base period (default 100)
Toggle visibility of the 32↗23 signal
🧵 Full Fibonacci ribbon context (5 SMAs) for trend direction and dynamic support/resistance structure.
✅ How to Use It
Add to a 30-minute chart.
When the 32.8 SMA (aqua) crosses above the 23.6 SMA (fuchsia):
Consider securing profits if long.
Avoid chasing long entries.
Look for reversion or fade entries aligned with broader context (e.g., VWAP, resistance zones, AVWAP anchor points).
Use confluence with Multi-Timeframe AVWAP, structure, or momentum indicators for higher-confidence plays.
🧠 Why 32.8%?
32.8% is the inverse complement of the Golden Ratio (1 – 0.618 = 0.382, and 0.328 is just below that).
While 38.2% is common in swing trading, the 32.8% level reacts more sensitively in faster intraday charts, helping to spot momentum shifts early.
⚠️ Disclaimer
This tool is for educational purposes only.
Historical patterns do not guarantee future performance.
Use in combination with risk management and your own trading system.
$龍霆$最強均線扣抵指標(optimized version)5、10、20、60、12、240 moving average deduction optimized version
aka money printerrrrrr
Mera Mera - Ying Yang & Inside, OutsideMera Mera
It is a structure that traps the previous candle formed in the same direction.
When the structure is in the Buy direction, a blue dot is formed below it, when it is in the Sell direction, a red dot is formed above it.
Sell Mera Mera, Buy Mera Mera alerts are available.
Ying Yang
It is a structure that traps the next candle formed in the same process.
When the structure is in Buy transactions, a blue triangle is formed below it, when it is in Sell transactions, a red triangle is formed below it.
Ying Yang Sell, Ying Yang Buy alerts are available.
The calculation of inner bar and outer bar values is different.
After this formation, the candle fractal formations are followed and the transaction is searched.
The necessary visuals are in x
- Sorry if I have any mistakes
x.com
Copyright © 2025 @SimbiyotikTrader ;)
Gold Mini Strategy: EMA | RSI | MACD | VWAP | BB | PAGood Script to view all the important indicator into one
Shade ET Sessions: 1–3 AM & 9–10:30 AMTo identify XAUUSD trading sessions where the London open preceded a by NY extension.
Supertrend Strategy v.1.0 (Nikko)This is the well-known Supertrend indicator, adapted for use as a strategy and updated to be compatible with Pine Script v6.
While I am not the original author of this indicator, I was curious to assess its real-world performance. The Supertrend is widely promoted by trading influencers, and I assumed many traders rely on it in their decision-making.
My goal was to stress-test the Supertrend by converting it into a strategy, to evaluate whether it could be a reliable tool to follow.
After testing it across various timeframes and assets, I found that it generally delivers poor results in terms of profitable trades. It performs somewhat better when the number of trades is kept low, but once trade frequency increases, the strategy tends to lose significantly due to its low win rate. This is an important caveat for those considering its use—be cautious, especially in high-frequency setups.
The source code is open for anyone who wants to improve or investigate further. If you identify any optimizations or bugs, feel free to share them with the community so we can all benefit.
------------------------------------------------------
How the Supertrend Indicator Works
The Supertrend indicator is a trend-following tool designed to identify whether the market is in a bullish or bearish phase. It's often used to signal potential entry and exit points for trades.
It is built on the Average True Range (ATR), a measure of volatility, and a user-defined multiplier. These inputs are used to calculate dynamic support and resistance bands:
When the price is above the Supertrend line, the trend is considered bullish.
When the price is below the Supertrend line, the trend is considered bearish.
These trend shifts can offer visual cues for trade direction, but as seen in strategy testing, the effectiveness may vary widely depending on market conditions and timeframes.
M2 Liquidity Divergence ModelM2 Liquidity Divergence Model
The M2 Liquidity Divergence Model is a macro-aware visualization tool designed to compare shifts in global liquidity (M2) against the performance of a benchmark asset (default: Bitcoin). This script captures liquidity flows across major global economies and highlights whether price action is aligned ("Agreement") or diverging ("Divergence") from macro trends.
🔍 Core Features
M2 Global Liquidity Index (GLI):
Aggregates M2 money supply from major global economies, FX-adjusted, including extended contributors like India, Brazil, and South Africa. The slope of this composite is used to infer macro liquidity trends.
Lag Offset Control:
Allows the M2 signal to lead benchmark asset price by a configurable number of days (Lag Offset), useful for modeling the forward-looking nature of macro flows.
Gradient Macro Context (Background):
Displays a color-gradient background—aqua for expansionary liquidity, fuchsia for contraction—based on the slope and volatility of M2. This contextual backdrop helps users visually anchor price action within macro shifts.
Divergence Histogram (Optional):
Plots a histogram showing dynamic correlation or divergence between the liquidity index and the selected benchmark.
Agreement Mode: M2 and asset are moving together.
Divergence Mode: Highlights break in expected macro-asset alignment.
Adaptive Transparency Scaling:
Histogram and background gradients scale their visual intensity based on statistical deviation to emphasize stronger signals.
Toggle Options:
Show/hide the M2 Liquidity Index line.
Show/hide divergence histogram.
Enable/disable visual offset of M2 to benchmark.
🧠 Suggested Usage
Macro Positioning: Use the background context to align directional trades with macro liquidity flows.
Disagreement as Signal: Use divergence plots to identify when price moves against macro expectations—potential reversal or exhaustion zones.
Time-Based Alignment: Adjust Lag Offset to synchronize M2 signals with asset price behavior across different market conditions.
⚠️ Disclaimer
This indicator is designed for educational and analytical purposes only. It does not constitute financial advice or an investment recommendation. Always conduct your own research and consult a licensed financial advisor before making trading decisions.
ORBIT🚀 Sndey ORBIT Strategy
(ORB Intraday Tactic for Indian Markets — 5-min Compatible)
by @sndey
🔹 Overview
Sndey ORBIT is a 5-minute Opening Range Breakout (ORB) intraday strategy tailored for the Indian stock market (NSE/BSE). It captures early market momentum with synced Stoploss, Profit Target, and optional Trailing Stoploss, making it ideal for disciplined intraday traders.
🔹 Why “ORBIT”?
ORBIT stands for:
Opening
Range
Breakout
Intraday
Tactic
Like a rocket breaking past gravity, this strategy aims to catch strong price moves that escape the morning consolidation range.
🔹 How It Works
Timeframe: Optimized for 5-minute charts
ORB Range: 9:15–9:30 AM IST (first 15 mins of Indian market)
Entry:
🔼 Buy: Breakout above ORB High
🔽 Sell: Breakdown below ORB Low
Exit:
On hitting Stoploss, Target, or Trailing SL
Fully automated trade reset logic
🔹 Features
✅ Auto-calculated SL & TP based on user-defined Risk %
✅ Optional Trailing Stoploss
✅ Smart daily reset
✅ Visual plots for ORB High/Low, SL, TP
✅ Clear Buy/Sell/Exit signals
✅ Alert-ready for automation or manual execution
🔹 Notes
Designed for Indian traders (works best on NSE/BSE equities and indices like NIFTY, BANKNIFTY)
Use with liquid instruments for reliable breakout behavior
Meant for intraday use only
📌 Important
Test thoroughly using TradingView’s strategy tester and paper trading before deploying with real capital. Adjust Risk % according to your personal risk profile.
Built with precision. Traded with discipline.
Happy Trading!
– @sndey
MNQ/NQ Risk Management ToolThis tool helps MNQ and NQ futures traders automatically calculate position size based on either a fixed dollar risk or a percentage of account balance.
Simply enter your stop loss level and choose whether to risk a set dollar amount or a percentage of your account. The script will display how many contracts to trade based on your setup.
Features:
Calculates contracts based on stop loss and risk size
Toggle between dollar-based or percent-of-account risk
Works with both MNQ ($2/point) and NQ ($20/point)
Automatically updates based on current price and direction (long or short)
Displays a clean info box on your chart with risk, contracts, and settings
This tool is ideal for intraday or swing traders who want to stay consistent with risk management across trades.
Bitcoin Power Law Clock [LuxAlgo]The Bitcoin Power Law Clock is a unique representation of Bitcoin prices proposed by famous Bitcoin analyst and modeler Giovanni Santostasi.
It displays a clock-like figure with the Bitcoin price and average lines as spirals, as well as the 12, 3, 6, and 9 hour marks as key points in the cycle.
🔶 USAGE
Giovanni Santostasi, Ph.D., is the creator and discoverer of the Bitcoin Power Law Theory. He is passionate about Bitcoin and has 12 years of experience analyzing it and creating price models.
As we can see in the above chart, the tool is super intuitive. It displays a clock-like figure with the current Bitcoin price at 10:20 on a 12-hour scale.
This tool only works on the 1D INDEX:BTCUSD chart. The ticker and timeframe must be exact to ensure proper functionality.
According to the Bitcoin Power Law Theory, the key cycle points are marked at the extremes of the clock: 12, 3, 6, and 9 hours. According to the theory, the current Bitcoin prices are in a frenzied bull market on their way to the top of the cycle.
🔹 Enable/Disable Elements
All of the elements on the clock can be disabled. If you disable them all, only an empty space will remain.
The different charts above show various combinations. Traders can customize the tool to their needs.
🔹 Auto scale
The clock has an auto-scale feature that is enabled by default. Traders can adjust the size of the clock by disabling this feature and setting the size in the settings panel.
The image above shows different configurations of this feature.
🔶 SETTINGS
🔹 Price
Price: Enable/disable price spiral, select color, and enable/disable curved mode
Average: Enable/disable average spiral, select color, and enable/disable curved mode
🔹 Style
Auto scale: Enable/disable automatic scaling or set manual fixed scaling for the spirals
Lines width: Width of each spiral line
Text Size: Select text size for date tags and price scales
Prices: Enable/disable price scales on the x-axis
Handle: Enable/disable clock handle
Halvings: Enable/disable Halvings
Hours: Enable/disable hours and key cycle points
🔹 Time & Price Dashboard
Show Time & Price: Enable/disable time & price dashboard
Location: Dashboard location
Size: Dashboard size
candle open, current time [flasi]Displays the current time and candle open time on the chart in a customizable table.
Supports timezone and DST adjustments
Layout (stacked or side-by-side)
Personalized colors, labels, and text sizes
reupload
Opening Range Breakout - India Market [UkutaLabs]█ OVERVIEW
** This script was designed to work specifically with the India Markets
The Opening Range Breakout is a powerful trading tool that indicates a strong range based on the high and low of the first fifteen or thirty minutes after market open. This range serves as a potential area of Support or Resistance that traders should be aware of during their trading. Because of this, the Opening Range Breakout is a versatile trading tool that can be included in a wide variety of trading strategies.
The aim of this script is to simplify the trading experience of users by automatically identifying and displaying price levels that they should be aware of.
█ USAGE
When the India Market opens each day, the script will automatically identify and label the opening range in real time. The user can control whether the script measures the first 15 or 30 minutes of each trading day to fit each trader’s trading style.
Because there tends to be a spike in volume during this period, the range that is identified can serve as a powerful indication of overall market strength. Once the price breaks out of this range, it then can be used as an area of support or resistance depending on the direction of the breakout.
█ SETTINGS
Configuration
• Display Mode: Determines the number of days the script should load.
• Apply DST: Adjusts the opening to Daylight Savings Time.
Label Settings
• Show Labels: Determines whether labels are drawn within the range.
• Label Size: Determines the size of font for the labels.
• Label Alignment: Determines the font alignment for the labels.
Line Settings
• Line Width: Determines the thickness of the lines.
• Label Style: Determines the style to draw the lines.
Range Settings
• 15 Minute: Determines whether or not the 15 minute range is drawn.
• 15 Minute Color: Determines the color of the 15 minute range and labels.
• 30 Minute: Determines whether or not the 30 minute range is drawn.
• 30 Minute Color: Determines the color of the 30 minute range and labels.
Niveles operativosniveles operativos para marcar zonas a partir de una zona base separadas tantos puntos como desee, el intervalo de niveles separa hacia arriba o abajo segun necesites si aumentas los niveles aumentaras la distancia los niveles marcados seran los mismos, solamente separas la distancia, recomendacion empezar con nivel bajo de 20 para entender la separacion.
Operating levels to mark zones from a base zone separated by as many points as you want, the level interval separates up or down as needed. If you increase the levels you will increase the distance. The marked levels will be the same, you only separate the distance. Recommendation: start with a low level of 20 to understand the separation.
YesmypageProfessional daily pivot point calculator using previous day's High, Low, and Close data. Displays 7 horizontal levels: R3/R2/R1 (green resistance), PP (blue pivot), S1/S2/S3 (red support) with exact price labels. Updates automatically each trading day. Perfect for Indian markets with clean visual design, customizable settings and summary table for quick reference.
Singh Divergence SignalsThis indicator detects potential trend reversals by combining candle strength and volume momentum. It signals when candle value and Price Volume Trend (PVT) oscillator diverge, marking bullish and bearish reversal points directly on the price chart with arrows. Alerts notify you of these key divergence signals to help improve trade timing.
M2 Growth Rate vs Borrowing RateHave you ever wondered how fast M2 is actually growing? Have you ever wanted to compare its percentage growth rate to the actual cost of borrowing? Are you also, like me, a giant nerd with too much time on your hands?
M2 Growth Rate vs Borrowing Rate
This Pine Script indicator analyzes the annualized growth rate of M2 money supply and compares it to key borrowing rates, providing insights into the relationship between money supply expansion and borrowing costs. Users can select between US M2 or a combined M2 (aggregating US, EU, China, Japan, and UK money supplies, adjusted for currency exchange rates). The M2 growth period is customizable, offering options from 1 month to 5 years for flexible analysis over different time horizons. The indicator fetches monthly data for US M2, EU M2, China M2, Japan M2, UK M2, and exchange rates (EURUSD, CNYUSD, JPYUSD, GBPUSD) to compute the combined M2 in USD terms.
It plots the annualized M2 growth rate alongside borrowing rates, including US 2-year and 10-year Treasury yields, corporate bond effective yield, high-yield bond effective yield, and 30-year US mortgage rates. Borrowing rates are color-coded for clarity: red if the rate exceeds the selected M2 growth rate, and green if below, highlighting relative dynamics. Displayed on a separate pane with a zero line for reference, the indicator includes labeled plots for easy identification.
This tool is designed for informational purposes, offering a visual framework to explore economic trends without providing trading signals or financial advice.