Accurate Multi-Timeframe Squeeze TrendMulti Time-Frame Trend indicator.
This indicator will review the Squeeze momentum indicator and create a table that shows the trend based on that value on the 5 min, 15 min and 1 hour timeframe.
Indicators and strategies
MACD Bullish Crossover Signal//@version=5
indicator("MACD Bullish Crossover Signal", overlay=true)
// MACD Calculation
fastLength = 12
slowLength = 26
signalSmoothing = 9
= ta.macd(close, fastLength, slowLength, signalSmoothing)
// Detect Bullish Crossover
bullishCross = ta.crossover(macdLine, signalLine)
// Plot signal on chart
plotshape(bullishCross, title="MACD Bullish Crossover", location=location.belowbar, color=color.green, style=shape.labelup, text="MACD+", textcolor=color.white, size=size.small)
// Create alert condition
alertcondition(bullishCross, title="Alert: MACD Bullish Crossover", message="MACD Bullish Crossover on {{ticker}} at {{close}}")
PnF ChartPoint and Figure (P&F) charts are a time-independent technical analysis tool that focuses purely on price movements, filtering out noise like minor price fluctuations and time. Unlike candlestick or bar charts, P&F charts ignore time and only record significant price changes based on predefined rules.
Key Characteristics of P&F Charts
No Time Axis
Only price movements matter; time is irrelevant.
Columns form based on reversals, not fixed time periods.
Uses X's and O's
X = Rising prices (demand in control)
O = Falling prices (supply in control)
Box Size (Price Increment)
Defines the minimum price change required to plot a new X or O.
Example: If the box size is **1∗∗,astockmustmoveatleast1∗∗,astockmustmoveatleast1 to record a new X or O.
Reversal Amount
Determines how much the price must reverse to switch from X's to O's (or vice versa).
Common reversal settings: 3-box reversal (price must reverse by 3x the box size).
How P&F Charts Work
1. Rising Prices (X-Columns)
A new X is added if the price rises by the box size.
If the price reverses down by the reversal amount, a new O-column starts.
2. Falling Prices (O-Columns)
A new O is added if the price falls by the box size.
If the price reverses up by the reversal amount, a new X-column starts.
Example of a P&F Chart
Suppose:
Box Size = $1
Reversal Amount = 3-box (i.e., $3)
Price Movement Chart Update
Stock rises from 10→10→11 X at $11
Rises to $12 X at $12
Drops to 9(9(12 → 9=9=3 drop) New O-column starts at 11,11,10, $9
Rises again to 12(12(9 → 12=12=3 rise) New X-column at 10,10,11, $12
About the Script:This Script uses columns instead of traditional X and O boxes.Column Printing (Red vs Green)
This Point and Figure chart alternates between two states:
X columns (green): Represent upward price movements
O columns (red): Represent downward price movements
When Green Columns (X) Are Printed:
A green column is printed when:
The script is in "X mode" (is_x is true)
A new column is created (new_column_created is true)
This happens after the price has reversed upward by at least the "reversal boxes" threshold from a previous O column
When Red Columns (O) Are Printed:
A red column is printed when:
The script is in "O mode" (is_x is false)
A new column is created (new_column_created is true)
This happens after the price has reversed downward by at least the "reversal boxes" threshold from a previous X column
How Trendlines Are Created
The script can draw two types of trendlines when the show_trendlines option is enabled:
Green Trendlines (Uptrend):
A green trendline is created when:
There's a transition from O to X columns (cond2 is true but wasn't true on the previous bar)
This represents the beginning of a potential uptrend
The trendline is solid and extends to the right
Red Trendlines (Downtrend):
A red trendline is created when:
There's a transition from X to O columns (cond1 is true but wasn't true on the previous bar)
This represents the beginning of a potential downtrend
The trendline is dashed and extends to the right
The script maintains two trendline objects - current_trendline and previous_trendline - and deletes the oldest one when a new trendline is created to prevent cluttering the chart.
In summary, this Point and Figure chart tracks price movements in discrete boxes and changes column types (and creates trendlines) when price reverses by a significant amount (defined by the reversal_boxes parameter). The chart also generates alerts when these trend changes occur, helping traders identify potential trend reversals.
Smart Volume Spike Helperhis indicator is designed to help confirm FU (liquidity sweep) candles and other smart money setups by highlighting volume spikes with directional bias.
🔍 Key Features:
Shows raw volume bars.
Plots a customizable volume moving average.
Highlights volume spikes based on a user-defined threshold (e.g., 1.5x average).
Color-coded for directional context:
🟢 Green = High volume bullish candle
🔴 Red = High volume bearish candle
⚪ Gray = Low/normal volume (no spike)
📈 Use this tool to:
Confirm FU candles or stop hunts with high volume
Filter out weak traps with low conviction
Spot institutional interest during London and NY Killzones
Complement smart money tools like Order Blocks, FVGs, and PDH/PDL sweeps
🔧 Inputs:
Volume MA Length (default: 20 bars)
Spike Threshold (default: 1.5× average volume)
💡 Best used in combination with price action or liquidity-based indicators. Works well on 15m to 1H timeframes.
当前币种差价百分比 (Bitstamp USD vs Binance USDT)A script for calculating the premium between BITSTAMP and Binance
CVD Divergenz System – modular with Exchange + LabelsA smart volume-based strategy tool using CVD divergence, ATR-based risk management, and Open Interest filters — now with visual chart labels and exchange switching.
Designed for crypto traders who want precise entry signals, volume insight, and a clean UI.
🔍 Key Features:
✅ CVD Divergence Detection
Automatically detects bullish or bearish divergences between price and cumulative delta (CVD)
✅ Open Interest Logic (Simulated)
Signals are only valid when OI is rising – otherwise a warning is issued
✅ ATR-Based Entry, Stop & Target Zones
Auto-calculated based on your chosen R multiple (e.g., 1.5R), plotted in the chart
✅ Visual Dashboard Panel (table)
Compact panel with CVD, OI change, ATR, signal status, and selected exchange — always visible in top-right
✅ Exchange Selector + Fallback to Binance
Choose between Binance, Bybit, Bitget, or Coinbase — if data is unavailable, Binance is used automatically
✅ Modular Chart Labels
Optionally display 📈 LONG, 📉 SHORT or ⚠️ WARNING labels directly on the chart with a toggle
✅ Alerts Built-In
Get notified instantly when a setup triggers (long, short, or warning) — works with app, popup, or webhook
✅ Fully Modular Controls
Enable or disable the dashboard, trade zones, and labels via simple checkboxes
⚠️ Technical Notes:
CVD is calculated from delta volume (volume * sign(close - open)) — not true order flow
Open Interest is simulated using volume as a placeholder (due to Pine Script limitations)
Best suited for 5–30min timeframes on crypto futures pairs like BTCUSDT, ETHUSDT, etc.
💡 Pro Tips:
Use near key support/resistance zones or liquidity levels
Combine with price action and higher timeframe confluence
Alerts work best with "Once Per Bar Close" trigger setting
📈 Built to support faster decisions, cleaner setups, and institutional-level insights — all in one tool.
EMA 34/72 CrossoverThese are two trend-following averages based on Fibonacci retracements.
They can be used on any timeframe, but the best fractals are the daily and weekly charts.
HOMath Day Close & LinesThe indicator I share here is for intraday traders. The previous day's closing value is the gray line in the middle. Closing above the yellow line above the previous day's closing value can be considered as a precursor for a Long position. Closing below the yellow line below the previous day's closing value can be considered as a precursor for a Short position. Good trades.
Pivot Points with Adjustable Dynamic LabelsPivot Points with Adjustable Dynamic Labels.
Happy Trading!!!
KING Supper Screener🔧 Inputs
Symbols:
sm1 to sm6: Preset to BTCUSDT, ETHUSDT, XRPUSDT, HOOKUSDT, SOLUSDT, TRUMPUSDT from Binance.
Allows users to change the symbols by settings
Table Size: Allows users to change text size in the table.
Indicators Parameters: RSI length, MA type (e.g., SMA, EMA), ALMA parameters, Bollinger Band multiplier, etc.
📊 Indicators Used
RSI (Relative Strength Index)
Custom calculated RSI based on ohlc4 (average of OHLC).
Optional smoothing applied via selected moving average (e.g., SMA, EMA, RMA).
MA (Moving Average)
ALMA (Arnaud Legoux Moving Average) is used as a trend confirmation.
Compared against its previous value to decide direction.
MACD
Standard MACD line comparison (fast vs slow) to assess momentum.
🔍 Logic for Decision (per symbol per timeframe)
A function btc() returns a tuple of boolean values:
rs: RSI > smoothed RSI → interpreted as bullish.
M: ALMA increasing → upward trend.
F: MACD fast line > slow line → positive momentum.
These are evaluated on different timeframes using request.security():
1 Minute
5 Minutes
15 Minutes
1 Hour
🧾 Table Visualization
A large table is drawn with:
Rows = different indicators (RSI, MA, MACD)
Columns = each symbol
Cell text = "Buy" or "Sell"
Cell color:
✅ Green for "Buy"
❌ Red for "Sell"
Each section (1M, 5M, 15M, 1H) is grouped and labeled clearly in the table.
🧠 What This Script Does for Traders
Provides a quick overview of market sentiment across several major and minor altcoins.
Offers multi-timeframe confirmation, useful for day traders or scalpers.
Uses three diverse indicators to give a more balanced view (oscillator, trend, momentum).
alademy-target-stoploss اسم المؤشر: الأديمي – Al-Ademy Indicator
الوصف العام:
مؤشر "الأديمي" هو أداة تحليل فني تعتمد على مزيج من مستويات الدعم والمقاومة الديناميكية، باستخدام منطق مستمد من حركة السعر الحقيقية، ومبني على خصائص شموع Heikin Ashi ومؤشر ATR.
يُستخدم المؤشر لتحديد مناطق الانعكاس المحتملة ، من خلال رسم مستويات صعود وهبوط تتفاعل مباشرة مع تغيرات السوق.
يتميز المؤشر بكونه:
- ✅ يعمل بشكل **تلقائي بالكامل** في رسم خطوط المقاومة وخطوط الدعم
- ✅ مُصمَّم ليعمل بكفاءة أعلى عند استخدام **شموع Heikin Ashi** (لا يُنصح باستخدام الشموع العادية).
- ✅ يناسب جميع الفريمات والزمنيات (من الدقيقة حتى الشهري).
---
### 🔍 **طريقة عمل المؤشر:**
- يرسم المؤشر:
- **6 خطوط مقاومة صعودية** (تظهر بالوان مختلفة فوق الشموع تدريجيًا).
- **6 خطوط دعم للهبوط (تظهر بالوان مختلفة تحت الشموع أو حسب الإعدادات).
- يعتمد على تحليل سلوك ** الانعكاس المحتمل** وإعادة رسم الخطوط عند حدوث الانعكاس
---
**آلية العمل :**
✅ احتمالية الصعود
- انتظر إفتح شمعة صعوديه خضراء Heikin Ashi واضحه فوق الخط الأول الذي باللون الاصفر** من خطوط المقاومة الأول
- يعتبر ذلك إشارة صعود محتملة
#### خطوط المقاومة
1. الخط الثاني الازرق = هو خط المقاومة الثاني
2. الخط الثالث الاحمر = هو خط المقاومة الثالث
3. الخط الرابع (أخضر غامق) = وعتبر هو خط المقاومة الرابع والاقوى والاحتمال ان يرتد منه السعر
4. الخط السادس = "منطقة التشبع"، احذر من الانعكاس.
#### ❌ للهبوط:
- احتمال الهبوط وهو عند **فتح شمعة حمراء واضحة Heikin Ashi تحت خط الاصفر للدعم الأول**.
وهاكذا مع بقية خطوط الدعم
- يتم اعتبار كل خط لاحق كمنطقة دعم واحتمال انعكاس إلى الأعلى
الخط الاخير يعتبر بمثابة تشبع بيعي وخليك مستعد لاحتمالية العوده والصعود
---
### ⚙️ **مميزات المؤشر:**
- يرسم الخطوط تلقائيًا حسب حركة الشموع والانكاسات.
- قابل للتخصيص:
- تغيير الألوان.
- تعريض الخطوط.
- تحريك الخطوط يمينًا ويسارًا.
- 🔔 يدعم التنبيهات
- 🟢 يظهر **أسهم خضراء** عند اختراقات صاعدة، و🔴 **أسهم حمراء** عند الاختراقات الهابطة.
### ✨ ملاحظة:
> المؤشر لا يقدم إشارات مضمونة 100%، لكن يعتمد على منطق فني. ننصح باستخدام أدوات تحليل إضافية لتعزيز القرار.
---
**Indicator Name: Al-Ademy Indicator
**General Description:**
The **Al-Ademy Indicator** is a technical analysis tool that combines dynamic support and resistance levels based on true price action logic. It is built using the characteristics of **Heikin Ashi candles** and the **ATR (Average True Range)** indicator.
This indicator is designed to identify **potential reversal zones** by plotting dynamic upward and downward levels that adapt in real-time to market changes.
Key Features:
* ✅ Fully **automated** plotting of support and resistance lines.
* ✅ Optimized for use with **Heikin Ashi candles** (not recommended with regular candles).
* ✅ Works on **all timeframes**, from 1-minute to monthly charts.
---
### 🔍 **How It Works:**
The indicator plots:
* **6 ascending resistance lines** (displayed in different colors above the candles progressively).
* **6 descending support lines** (displayed in different colors below the candles or as per settings).
* It uses reversal behavior analysis to dynamically redraw the lines when a reversal occurs.
---
### **Logic Behind the Indicator:**
✅ **Bullish Signal:**
* Wait for a **clear green Heikin Ashi bullish candle** to open **above the first yellow resistance line**.
* This is considered a potential bullish signal.
#### Resistance Lines:
1. **Blue line** = Second resistance level.
2. **Red line** = Third resistance level.
3. **Dark green line** = Fourth resistance level (strongest, high chance of price rejection).
4. **Sixth line** = “Overbought zone” – watch out for a possible reversal.
❌ **Bearish Signal:**
* A **clear red Heikin Ashi bearish candle** opening **below the first yellow support line** is considered a potential bearish signal.
* Each subsequent support line is treated as a potential **reversal zone to the upside**.
* The final support level represents an **oversold zone**, signaling a possible bullish reversal.
---
### ⚙️ **Indicator Features:**
* Automatically draws lines based on candle behavior and reversals.
* **Customizable settings:**
* Change colors.
* Adjust line thickness.
* Move lines horizontally.
* 🔔 **Alert support** for breakout conditions.
* 🟢 **Green arrows** for bullish breakouts, 🔴 **Red arrows** for bearish breakouts.
---
### ✨ **Note:**
> This indicator does not provide guaranteed signals. It is based on technical logic and should be used alongside other analysis tools for best results.
Key Trading Session Times (UK) with DST Adjust//@version=5
indicator("Key Trading Session Times (UK) with DST Adjust", overlay=true)
// === Inputs ===
showAsia = input.bool(true, "Show Asia Session (12 AM – 6 AM UK)")
showLondon = input.bool(true, "Show London Open (6:30 AM – 9 AM UK)")
showNY = input.bool(true, "Show NY Open (1 PM – 3 PM UK)")
// === DST Adjustment Logic ===
// Define the start and end of daylight saving time (DST)
isDST = (month >= 3 and month <= 10) // DST from March to October
// === Time Ranges (Europe/London) with DST Adjustment ===
inSession(sessionStartHour, sessionStartMinute, sessionEndHour, sessionEndMinute) =>
t = time("1", "Europe/London")
sessionStart = timestamp("Europe/London", year(t), month(t), dayofmonth(t), sessionStartHour, sessionStartMinute)
sessionEnd = timestamp("Europe/London", year(t), month(t), dayofmonth(t), sessionEndHour, sessionEndMinute)
if isDST
sessionStart := sessionStart + 3600 // Add 1 hour during DST
sessionEnd := sessionEnd + 3600 // Add 1 hour during DST
time >= sessionStart and time <= sessionEnd
// === Define Sessions ===
asiaSession = inSession(0, 0, 6, 0)
londonSession = inSession(6, 30, 9, 0)
nySession = inSession(13, 0, 15, 0)
// === Background Highlights ===
bgcolor(showAsia and asiaSession ? color.new(color.blue, 85) : na, title="Asia Session")
bgcolor(showLondon and londonSession ? color.new(color.green, 85) : na, title="London Session")
bgcolor(showNY and nySession ? color.new(color.orange, 85) : na, title="New York Session")
ABC Trading ConceptThe ABC Trading Concept indicator analyzes the market through waves, impulses, and trends, helping identify key reversal and trend-change points. It automatically detects waves A, B, and C, along with stop-loss and take-profit levels. A reliable tool to enhance the accuracy and efficiency of your trading.
Key Features of the Indicator:
1. Wave and Trend Identification:
- Automatic detection of waves based on moving average (MA) crossings and ATR indicator values.
- Filtering out false signals by considering market movement ranges.
2. Trend Analysis:
- Determination of trend directions (uptrend or downtrend).
- Setting trend change points (g-points) and tracking their breakout to confirm trend reversals.
3. Impulses and Corrections:
- Automatic division of trend movements into impulses and corrections.
- Calculation of dynamic and fixed extremums for precise market structure tracking.
4. Reversal Points:
- Establishing the reversal point level within the range of a completed correction.
- Flexible settings to prevent the appearance of overly weak points.
5. Waves A, B, and C:
- Identification of wave A when the correction breaks the reversal point.
- Identification of wave B considering counter-trends or alternative parameters.
6. Correction Boost:
- Calculation of correction boosts to determine their significance.
- Automatic update of reversal points based on boosted corrections.
7. Vic Sperandeo’s Trendline:
- Construction of a trendline between the trend’s fixed extremum and the last correction’s extremum.
- Utilizing the Vic line as an additional condition for forming waves A and B.
8. Stop-Loss and Take-Profit Levels:
- Upon the appearance of a new trend, the indicator automatically plots potential stop-loss and take-profit levels.
- Levels are calculated based on the extremums of wave A or wave B (settable in the indicator’s input settings).
Advantages of Using the Indicator:
- Enhances the accuracy of market structure analysis.
- Reduces the impact of false signals by filtering market noise.
- Offers flexible parameter settings to adapt to your trading style.
- Clearly displays entry and exit points on the chart.
The ABC Trading Concept is ideal for both beginner and professional traders looking to improve their trading by leveraging clear market structures and key analysis points.
Additional Information:
For optimal performance, the indicator requires the user to input key parameters, including moving average lengths, ATR coefficient for wave identification, and levels for reversal points and correction boosts. All settings can be adjusted to fit your trading preferences.
VectorFusion Suite Enhanced — Trend Confluence Signal System🧭 Overview
VectorFusion Suite Enhanced is an original invite-only overlay indicator designed to help traders identify high-confidence trend continuation and reversal zones. It combines structural signals, momentum filters, and volatility gates to deliver meaningful insights across asset classes.
This is not a mashup of public tools. Every element serves a unique, logical function, and the system is engineered for signal confluence, not layering indicators for visual effect.
⚙️ How It Works
1. Macro Trend Bias
• Uses a Hull Moving Average (HMA) with ATR envelopes
• Detects meaningful price breaks from volatility thresholds
• Filters out low-momentum or sideways conditions
2. Micro Pulse Beacons (▲ / ▼)
• Separate micro HMA+ATR channel for short-term directional flips
• Triangles mark flips from bearish to bullish (▲) or vice versa (▼)
• Useful for pullback entry timing or early reversal alerts
3. Structural Pivots (T and B)
• Detects local pivot highs (T) and pivot lows (B) using swing structure
• Used in sequencing and Ideal Setup qualification
• Does not repaint — confirmed after lookback bars
4. Bullish / Bearish “X” Flips
• Require multi-layer filtering:
o Macro & Micro trend agreement
o RSI filter (static or dynamic)
o Volatility confirmation (ATR gate)
o Optional MACD confirmation
• Only plot when all conditions are met
5. Ideal Setup Logic: T → B → X
• Looks for a pivot top (T), then bottom (B), then a Bullish X within a defined window
• This sequence is tracked internally and marked as an Ideal Setup
• Strongest confluence structure in the suite
6. Risk Visualization
• ATR-based Stop Loss and Take Profit levels are shown at entry
• Optional Trailing Stop (also ATR-based) can be toggled
• Labels help guide manual execution and position management
7. Live Status Table
• On-chart table displays:
o Macro Trend
o Micro Trend
o Flip Status
o Volatility Gate
o MACD Bias
o Ideal Setup Tracker
🔒 Closed Source Justification
This script is invite-only and closed-source to protect proprietary logic, especially the Ideal Setup (T→B→X) detection and custom multi-filter gating.
Although it uses technical analysis elements like HMA, ATR, RSI, and MACD, the signal combinations and setup logic are fully original and independently written.
There is no reused code, and this is not derived from public domain mashups, open-source scripts, or vendor code. Logic is clearly documented here for moderator review per House Rules.
🧠 Use Cases
• Trend-following swing entries
• High-volatility pullback setups
• Filtering early reversals during consolidation
• Timing exits and stop adjustments via signal shifts
🖥️ Chart Publishing Guidelines
When showcasing this script on a chart:
• Use clean layouts with VectorFusion only
• Show at least one active signal (e.g., Bullish X or T→B→X combo)
• Status table must be visible
• SL/TP markers optional but encouraged
• Avoid overlays from other indicators unless justified
✅ Compliant with TradingView’s Script Publishing Rules
🛠 Built in Pine Script v6
📅 Maintained and updated by the original author
ChartJay Disparity IndexThe ChartJay Disparity Index is a complete and standalone indicator designed to visualize the percentage difference between price and its moving averages over three timeframes (short, mid, and long term).
This tool helps identify overbought or oversold conditions based on user-defined thresholds and includes alerts for all timeframes. Users can also choose between EMA or SMA for each moving average.
This is a finalized and production-ready version of the script intended for public use, not a test or draft. For best visibility, apply it on a clean chart with no overlapping indicators.
If you find it useful, feel free to leave feedback or suggestions. Thank you.
Session Highs and Lows (Individual)The "Session Highs and Lows (Individual)" indicator marks the highest and lowest price levels during a user-defined trading session (e.g., 14:00-22:00 CET) with horizontal lines. The session's start and end times, as well as the line end time, are fully customizable. The lines extend to a specified end time, which can be set to the next day (e.g., 3:00 CET the following day) if the session ends late. Users can also choose line colors, styles (solid, dashed, dotted), and whether to display only the current day's session. Ideal for traders analyzing specific session ranges.
BTC/ETH Lot Size for Dexin - V1.0
█ Overview - This tool is specifically tailored for Delta Exchange India’s users.
I use this interactive tool before taking a position in the BTC’s futures perpetual market . With only 3 mouse clicks, I see all the necessary information, whether a Long or Short position.
A visual of Liquidation Price Level, Stop Loss Price Level, Entry Price Level, Break-even Price Level, and Take Profit Price Level can be immediately seen.
On the top right corner of the chart, which Leverage is to be used, No. of Lots to be taken, expected Profit amount, Loss amount, Brokerage Fees, Risk to Reward Ratios, and Return on Investment are shown, excluding brokerage travel. To get the correct answer in the table that suits your account and risk-taking appetite, the user needs to enter the account balance and Risk per trade.
It also does live tracking of the position, and alerts can be configured too.
█ How to Use
Load the indicator on an active chart.
In the Trading View, ensure that the Magnets is enabled (on the left panel). This will precisely select the price levels you want to choose from OHLC for a candle.
When you first load the tool on the bottom of the chart, you will see a blue box with text in white color guiding you on what you need to do.
Before the first click, the box shall prompt “On the signal candle, set the entry level, where the position would be executed”.
Once the entry price level is selected, the next prompt in the blue box shall be “Set the stop loss level where the position would be exited”. Thus, you need to click the stop loss price level.
Now that the two clicks of Entry and Stop Loss are already done, the last remaining is for the take profit. The last prompt shall be “Set the profit level where the position would be exited”. Therefore, you need to select your take-profit level
Finally, when all three points are selected, the tool shall draw trade zones.
The tool automatically determines whether it is a Long Position or Short Position from the Stop loss and take-profit price levels concerning the entry price level
If the take profit level is above the entry price, the stop must be below, and vice versa; otherwise, an error occurs.
You can change levels by dragging the handles that appear when you select the indicator, or by entering new values in the settings.
Once the position tool is on a chart, it will appear at the same levels on all symbols you use.
If you select the position tool on your chart and delete it, this will also delete the indicator from the chart. You will need to re-add it if you want to draw another position tool. You can add multiple instances of the indicator if you need a position tool on more than one of your charts.
█ Features
Display
The tool displays the following information as graphical visuals
The Liquidation to Stop Loss, Stop Loss to Entry, Entry to Break-even, and Entry to Take Profit zones shall be initiated from the entry candle point.
If you want to be from the candle that crossed the level at a different time from the entry candle, you may go to the settings and adjust the time accordingly. Please note that the time interval is 15 minutes, so at times you may not be able to see the graphical display; however, once the 15-minute time interval is over, you will see the graphical display on the chart.
The tool displays the following information in a tabulated manner
The first row indicates the Leverage that is best suited. The leverage selection by default is greater than or equal to the risk distance.
The second row indicates the number of lots that is computed in relation to the account balance, Risk appetite, Entry price, and Stop Loss price.
The third row indicates estimated profit considering taker's fees and is computed in relation to the number of Lots, Entry price, and Take-Profit price.
The fourth row indicates estimated loss considering taker's fees and is computed in relation to the number of Lots, Entry price, and Stop Loss price.
The fifth row indicates the actual Risk to Reward Ratio, ignoring the travel that pertains to fees.
The sixth row indicates actual Return on Investment, ignoring the travel that pertains to fees.
The intent is to allow the user to make an informed decision prior to taking a position by seeing “$/Rs.” or “% of R O I” or “R : R”.
In case the user wants to know beforehand what the expected charges are that need to be borne before taking a position, that too is made available in the seventh and eighth rows. Both sides' charges are made available for ready reference, irrespective of the outcome of the trade, the user knows the consequences beforehand.
█ Settings
'Trade Sizing'
The tool's input menu is divided into various parts. The first part is 'Trade Sizing'. The user needs to key in the exact number that appears in the Delta Exchange India account against 'Account Balance ($)'. The second thing the user needs to do is key in the 'Risk per Trade'. By default,t it is set to 0.25 and has a default stop change of 0.25. Alternatively, the user can key in any number (Whole number or Rational number) within 100 if that suits their risk management criterion.
'Trade Levels'
Allows users to manually set the Entry, Time, Stop Loss, and Take Profit Price Levels.
'Aggressive Mode Selection'
As the Liquidation zone is shown on the chart, if the user feels that the liquidation price level is too far from the stop loss, this option of 'Use Aggressive Leverage?' allows to increase the leverage, thus reducing the investment amount and in return increasing the Return on Investment %.
The second option in this category is 'Compute Lots based on invested Margin?' itself is self-explanatory, and thus the tabulated data shall be populating the data based on the number entered by the user against 'Margin to be invested ($)'. It is for the user to ensure that the estimated outcomes are within their risk management criterion.
'Conversion & Charges'
If the user wants to see the Profit, Loss, and Fees amount in 'Rs.', all that needs to be done is simply enable the 'Show P&L in Rs.?' The conversion shall take place considering 1 USD = 85 Rs. Same as that carried out by Delta Exchange India.
If the user wants to see the Brokerage Fees, all that needs to be done is simply enable the 'Show Brokerage Fees?'. On enabling this, the table shall show Profitable Trade's (PT) Fees and Lost Trade's (LT) Fees irrespective of the outcome of the trade. The intent is to allow the user to make informed decisions to avoid regrets or surprises at the end of the trade.
'Table'
The division of the input section is related to table position, font size and colors for text and background.
█ Alerts
Alerts can be configured by clicking 'More' (the three dots that appear when you place the cursor on the indicator title that appears on the top left corner of the chart). Alternatively, one can configure alerts by right-clicking on either of the two price levels - Stop Loss price level or Take Profit Price level. Upon right clicking, a window shall appear and the topmost line on that window shall display 'Add alert on ……….' The user can thus put alerts on either of the key levels, such as Stop Loss, Take Profit, and Break Even, or on all of them one by one.
🗻K²|🅰️bsolute LimitIndicator analyze the price of BTC and get its incline which make possible to pridict its price in the future.
Smart Buy/Sell Signal – ChartJayThis script identifies smart entry points by detecting real buy-side pressure and avoiding false breakouts.
Key Features:
• Buy Signal
- Bullish candle
- Close near the high
- Volume spike (above average × threshold)
- Occurs near a user-defined resistance level
• Entry Signal
- Appears if price breaks above the high of the previous Buy signal
- Must occur within a confirmation window
- Volume and bullish price structure must persist
• Strong Entry Signal
- Two consecutive Entry signals
- Second candle must have higher volume than the first
- Designed to confirm sustained institutional buying
• Sell Signal
- Strong bearish candle with volume spike
• TP/SL Overlay
- Take Profit and Stop Loss levels are auto-calculated from the Entry bar
- Configurable reward-to-risk ratios
• Alerts
- Includes alertconditions for all key signals (Buy, Entry, Strong Entry, Sell)
Best used on 15min–1hr timeframes to detect pre-breakout setups and confirm continuation strength.
Developed and published by ChartJay.
VIsthis is to make it easy to identify volume imbalances and flat candles.
these are STRONG magnets that will attract price and you should be aware of them when trading
🗻K²|🅰️bsolute (UP)Analize of price limit of BTC.
Indicator calculate price of BTC to get its progression over time and get its incline. According to incline we can predict price of BTC in the future.
Quantum Breakout SurgeDescription
Quantum Breakout Surge
Author: Mr. Chetaan V. Khairmode
The Quantum Breakout Surge Indicator is designed to capture explosive price movements during breakout conditions. By focusing on key price levels and momentum shifts, it identifies high-probability entry points for traders. The indicator aims to capitalize on sudden surges in price, offering a disciplined approach to trading with effective risk management. Perfect for traders looking to seize trending opportunities early, it provides a clear framework for entering and managing breakout trades.
Trade with clarity, surge with confidence."
⚠️ Disclaimer
The Quantum Breakout Surge Indicator is intended for educational and research purposes. It does not constitute investment advice or guarantee any trading results. Trading involves substantial risk and past performance is not indicative of future results. Always perform your own research and consult with a qualified financial advisor before making trading decisions. Use at your own risk
Avg Candle Size in Ticks (with Thresholds)This indicator measures and displays the average size of candles in ticks over a user-defined number of recent bars. It works by calculating the difference between the high and low of each candle, converting that into ticks based on a specified tick size, and then averaging those values over the chosen period. The result is shown in a floating table on the chart, rounded to one decimal place for clarity.
To help traders assess market volatility at a glance, the background color of the table changes dynamically based on two thresholds: a caution threshold and a danger threshold. If the average tick size drops below the danger level, the background turns red. If it’s between the caution and danger thresholds, it turns orange. Otherwise, it stays a neutral color. All three states use customizable colors, making the indicator flexible for different visual preferences.
Update 16-5-2025:
Updated with rounded Tick-sizes: xx.x
Also updated with another treshold that detects
21/50 EMA Breakout StrategyDuring the new york session, if the candle closes more than 2 points above a down facing 21 ema and if the 50 ema is also down, then you will get a sell signal and vice versa.