Lot Size & Risk Calculator (All Pairs)this indicator is designed to simplify and optimize risk management. It automatically calculates the ideal lot size based on your account balance, risk percentage, and defined entry and exit levels. Additionally, it includes visual tools to represent stop-loss (SL) and take-profit (TP) levels, helping you trade with precision and consistency.
WHAT IS THIS INDICATOR FOR?
This indicator is essential for traders who want to:
Maintain consistent risk in their trades.
Quickly calculate lot sizes for Forex, XAUUSD, BTCUSD, and US100.
Visualize key levels (Entry, SL, and TP) on the chart.
Monitor potential losses and gains in real time.
COMPATIBLE ASSETS
The Lot Size Calculator works with the following assets:
Forex: Standard currency pairs.
XAUUSD: Gold versus the US dollar.
BTCUSD: Bitcoin versus the US dollar.
US100: Nasdaq 100 index.
Calculations adjust automatically based on the selected asset.
TAKE-PROFIT (TP) LEVELS
The indicator allows you to define up to three take-profit levels:
TP1
TP2
TP3
.
Each level is configurable based on your exit strategy.
DASHBOARD
The dashboard is a visual tool that consolidates key information about your trade:
Account balance: Total amount available in your account.
Lot size: Calculated based on your risk and parameters.
Potential loss (SL): Amount you could lose if the price hits your stop-loss.
Potential gain (TP): Expected profit if the take-profit level is reached.
SETTINGS
The indicator offers multiple configurable options to adapt to your trading style:
Levels
Entry: Initial trade price.
Stop-Loss (SL): Maximum allowed loss level.
Take-Profit (TP): Up to three configurable levels.
Risk Management
Account balance ($): Enter your total available balance.
Risk percentage: Define how much you're willing to risk per trade
.
Visual Options
Visualization style: Choose between simple lines or visual fills.
Colors: Customize the colors of lines and labels.
Dashboard Settings
Statistics: Enable or disable key data display.
Size and position: Adjust the dashboard's size and location on the chart.
HOW TO CHANGE AN ENTRY?
Open the indicator settings in TradingView and entering the new data manually
Removing and re-adding the indicator to the chart
Candlestick analysis
Eze Profit Advanced Trade FilterThe Eze Profit Advanced Trade Filter is a sophisticated trend-following indicator designed to help traders identify high-probability buy and sell opportunities by leveraging advanced range filtering techniques and dynamic trend analysis.
Key Features:
Dual Smooth Ranges:
Combines fast and slow range calculations for precise trend detection.
Filters out market noise to focus on meaningful price movements, making it easier to follow the overall trend.
Dynamic Visualization:
Displays high and low bands (optional) to visualize the range of price movements.
Highlights the primary trend filter line for clear insights into the market’s directional bias.
Actionable Trade Signals:
Generates "Long" (Buy) and "Short" (Sell) signals based on carefully defined conditions.
Alerts can be enabled for real-time notifications, ensuring you never miss a trading opportunity.
Trend Strength Indicators:
Tracks upward and downward momentum with built-in counters to show the strength of the current trend.
Customizable Settings:
Fully adjustable parameters for the fast and slow ranges, as well as multipliers, allowing users to adapt the indicator to different assets, timeframes, and trading strategies.
Visual Enhancements:
Background color highlights indicate bullish (green) and bearish (red) conditions, enhancing chart readability and decision-making.
Ideal For:
Day Traders: For identifying short-term trends and breakout opportunities.
Swing Traders: For spotting reversals and trend continuations over longer timeframes.
Long-Term Investors: For maintaining focus on overarching market trends.
How to Use:
Pair this indicator with other technical tools such as volume analysis or momentum oscillators to validate signals.
Use it to filter out noise and focus on significant trends, supporting disciplined trading decisions.
Notes:
The Eze Profit Advanced Trade Filter is an educational tool and should be used alongside other analysis techniques. It is not financial advice.
It is optimized for use across all asset classes and works seamlessly with TradingView's advanced charting platform.
Compatibility:
Built with the latest Pine Script™ v6, ensuring top performance and compatibility with TradingView's cutting-edge features.
Dynamic TestingInput Parameters
`lookbackPeriod` : Number of candles to check for determining the highest high (resistance) and lowest low (support) levels.
`atrPeriod` : The period for calculating the Average True Range (ATR), a measure of market volatility.
`atrMultiplierSL` : Multiplier to calculate the stop-loss distance relative to the ATR.
`atrMultiplierTP1` and `atrMultiplierTP2` : Multipliers to calculate two take-profit levels relative to ATR.
`rewardToRisk` : The ratio between reward (profit) and risk (stop loss) for trade management.
---
Core Calculations
ATR (Average True Range)
atr = ta.atr(atrPeriod)
ATR is computed using the specified period to gauge price volatility.
Volume SMA
volumeSMA = ta.sma(volume, atrPeriod)
The script calculates the simple moving average of volume over the same period as ATR. This is used as a threshold for validating high-volume scenarios.
---
Support and Resistance Levels
`support` : Lowest price over the last `lookbackPeriod` candles.
`resistance` : Highest price over the same period.
`supportBuffer` and `resistanceBuffer` : These are "buffered" zones around support and resistance, calculated using half of the ATR to prevent false breakouts.
---
Entry Scenarios
Bullish Entry (`isBullishEntry`)
The close is above the buffered support level.
The low of the current candle touches or breaks below the support level.
The trading volume is greater than the `volumeSMA`.
Bearish Entry (`isBearishEntry`)
The close is below the buffered resistance level.
The high of the current candle touches or exceeds the resistance level.
The trading volume is greater than the `volumeSMA`.
---
Box Visualization
Bullish and Bearish Boxes
Bullish Box (`bullishBox`):
- A green, semi-transparent rectangle around the support level to highlight the bullish entry zone.
- Dynamically updates based on recent price action.
Bearish Box (`bearishBox`):
- A red, semi-transparent rectangle around the resistance level to highlight the bearish entry zone.
- Adjusts similarly as price evolves.
---
Stop Loss and Take Profit Calculations
Bullish Trades
Stop Loss (`bullishSL`): Calculated as support - atrMultiplierSL * ATR .
Take Profit 1 (`bullishTP1`): support + rewardToRisk * atrMultiplierTP1 * ATR .
Take Profit 2 (`bullishTP2`): support + rewardToRisk * atrMultiplierTP2 * ATR .
Bearish Trades
Stop Loss (`bearishSL`): resistance + atrMultiplierSL * ATR .
Take Profit 1 (`bearishTP1`): resistance - rewardToRisk * atrMultiplierTP1 * ATR .
Take Profit 2 (`bearishTP2`): resistance - rewardToRisk * atrMultiplierTP2 * ATR .
---
Visualization for Key Levels
Bullish Scenario
Green lines represent `bullishTP1` and `bullishTP2` for profit targets.
A red line indicates the `bullishSL` .
Labels like "TP1," "TP2," and "SL" dynamically appear at respective levels to make the targets and risk visually clear.
Bearish Scenario
Red lines represent `bearishTP1` and `bearishTP2` .
A green line marks the `bearishSL` .
Similar dynamic labeling for `TP1` , `TP2` , and `SL` at corresponding bearish levels.
---
Dynamic Updates
Both the entry boxes and key level visualizations (lines and labels) adjust dynamically based on real-time price and volume data.
---
Purpose
Identify high-probability bullish and bearish trade setups.
Define clear entry zones (using boxes) and exit levels (TP1, TP2, SL).
Incorporate volatility (via ATR) and volume into decision-making.
---
Technical Summary
Dynamically visualize support/resistance levels.
Set risk-managed trades using ATR-based stop-loss and profit levels.
Automate visual trade zones for enhanced chart clarity.
---
Abnormal Candle DetectorAbnormal Candle Detector
The Abnormal Candle Detector identifies sudden and unusual price movements by comparing the current candle's size and volume to recent averages. It highlights candles that deviate significantly from normal market behavior, helping traders spot breakouts, reversals, or high-impact events.
Features:
1. Abnormal Size Detection: Flags candles where the range (high-low) exceeds a user-defined multiplier of the average range.
2. Volume Confirmation: Optionally ensures abnormal movements are backed by higher-than-average volume.
3. Visual Markers:
Green triangles for bullish abnormal candles.
Red triangles for bearish abnormal candles.
Background highlights for better visibility.
4. Alerts: Real-time notifications when abnormal candles are detected.
Why Use It?
Spot early breakouts or trend reversals.
Identify high-impact events driven by news or institutional activity.
Filter noise and focus on significant market movements.
Customizable for any market or timeframe, the Abnormal Candle Detector is perfect for traders who want to stay ahead of major price action.
Enhanced Future Trend Channel with EMA Signals TESTING ONLY Usage:
1. Look for BUY signals when price touches or breaks above the upper channel line.
2. Consider SELL signals when price touches or breaks below the lower channel line.
3. Confirm signals with EMA crossovers (green triangle for BUY, red triangle for SELL).
4. Stronger trends are indicated by solid channel lines and filled areas.
5. Weaker trends are shown with dashed channel lines and transparent areas.
Supply and Demand [tambangEA]Supply and Demand Indicator Overview
The Supply and Demand indicator on TradingView is a technical tool designed to help traders identify areas of significant buying and selling pressure in the market. By identifying zones where price is likely to react, it helps traders pinpoint key support and resistance levels based on the concepts of supply and demand. This indicator plots zones using four distinct types of market structures:
1. Rally-Base-Rally (RBR) : This structure represents a bullish continuation zone. It occurs when the price rallies (increases), forms a base (consolidates), and then rallies again. The base represents a period where buying interest builds up before the continuation of the upward movement. This zone can act as support, where buyers may step back in if the price revisits the area.
2. Drop-Base-Rally (DBR) : This structure marks a bullish reversal zone. It forms when the price drops, creates a base, and then rallies. The base indicates a potential exhaustion of selling pressure and a build-up of buying interest. When price revisits this zone, it may act as support, signaling a buying opportunity.
3. Rally-Base-Drop (RBD) : This structure signifies a bearish reversal zone. Here, the price rallies, consolidates into a base, and then drops. The base indicates a temporary balance before sellers overpower buyers. If price returns to this zone, it may act as resistance, with selling interest potentially re-emerging.
4. Drop-Base-Drop (DBD) : This structure is a bearish continuation zone. It occurs when the price drops, forms a base, and then continues dropping. This base reflects a pause before further downward movement. The zone may act as resistance, with sellers possibly stepping back in if the price revisits the area.
Features of Supply and Demand Indicator
Automatic Zone Detection : The indicator automatically identifies and plots RBR, DBR, RBD, and DBD zones on the chart, making it easier to see potential supply and demand areas.
Customizable Settings : Users can typically adjust the color and transparency of the zones, time frames for analysis, and zone persistence to suit different trading styles.
Visual Alerts : Many versions include alert functionalities, notifying users when price approaches a plotted supply or demand zone.
How to Use Supply and Demand in Trading
Identify High-Probability Reversal Zones : Look for DBR and RBD zones to identify potential areas where price may reverse direction.
Trade Continuations with RBR and DBD Zones : These zones can indicate strong trends, suggesting that price may continue in the same direction.
Combine with Other Indicators: Use it alongside trend indicators, volume analysis, or price action strategies to confirm potential trade entries and exits.
This indicator is particularly useful for swing and day traders who rely on price reaction zones for entering and exiting trades.
High Win-Rate RSI Divergence_KavuruIts all based on the RSI divergence.
Few times chart will not give proper signal for the sell side or buy side so by using the RSI divergence we can get some more confirmations about the candles.
Afaan_SMC_TRADING Smart Money Concepts (SMC) is a trading methodology that focuses on understanding and aligning with the actions of large institutional investors—often referred to as "smart money"—such as banks and hedge funds. The core idea is that these entities, due to their substantial capital and market influence, leave identifiable patterns or "footprints" on price charts. By recognizing and interpreting these patterns, traders aim to make more informed decisions.
Advanced Trading with Candlestick Patterns & Price PredictionAn advanced strategy combining important indicators to determine buy and sell orders as well as identify candles on the chart.
Volume Close High And RSI 1 Min And 5 MinFeatures and Explanation:
Columns:
Candle: Displays the label for the current or previous candles.
Volume: Displays the volume of the current and previous candles.
Volume Type: Classifies the volume into "Hundreds", "Thousands", or "Lakhs".
Close Price: Displays the closing price for each of the last 5 candles.
High Price: Displays the high price for each of the last 5 candles.
RSI - 1Min: Displays the RSI value for the 1-minute timeframe for each of the last 5 candles.
Momentum Trading Strategy (Long Only with Multi-MA)Cross MA and RSI momentum trading, (long only)
This is the trial script for trading.
You could use it as the strategy base on this sample.
Inside Bar Breakout/Breakdown (5m & 15m)//@version=5
indicator("Inside Bar Breakout/Breakdown (5m & 15m)", overlay=true)
// Helper function: Check if the current bar is an inside bar
is_inside_bar(high, low, prev_high, prev_low) =>
high < prev_high and low > prev_low
// Inputs
plot_15m = input.bool(true, title="Plot Inside Bar Breakouts on 15m")
plot_5m = input.bool(true, title="Plot Inside Bar Breakouts on 5m")
// Inside bar detection on 15m
= request.security(syminfo.tickerid, "15", )
is_inside_15m = is_inside_bar(high_15m, low_15m, high_15m , low_15m )
// Inside bar detection on 5m
= request.security(syminfo.tickerid, "5", )
is_inside_5m = is_inside_bar(high_5m, low_5m, high_5m , low_5m )
// Detect breakouts and breakdowns
breakout_15m = plot_15m and is_inside_15m and close > high_15m ? high_15m : na
breakdown_15m = plot_15m and is_inside_15m and close < low_15m ? low_15m : na
breakout_5m = plot_5m and is_inside_5m and close > high_5m ? high_5m : na
breakdown_5m = plot_5m and is_inside_5m and close < low_5m ? low_5m : na
// Plot breakout/breakdown levels
plot(breakout_15m, style=plot.style_circles, color=color.green, title="15m Breakout Level")
plot(breakdown_15m, style=plot.style_circles, color=color.red, title="15m Breakdown Level")
plot(breakout_5m, style=plot.style_circles, color=color.green, title="5m Breakout Level")
plot(breakdown_5m, style=plot.style_circles, color=color.red, title="5m Breakdown Level")
// Highlight inside bars
bgcolor(is_inside_15m ? color.new(color.yellow, 90) : na, title="15m Inside Bar Highlight")
bgcolor(is_inside_5m ? color.new(color.blue, 90) : na, title="5m Inside Bar Highlight")
relevant h&l | nevilThis indicator displays relevant highs and lows based on buying and selling activity.
After extensive backtesting with various signals, this indicator has proven to be highly profitable for trading!
Created by Nevil.
IFVG Setups by ErikIFVG Setups and Contract sizing with Alarms
Inverse within n amounts of candles till it reaches a threshold that you want to give it to
Eze Profit - VWAP + RSI (Improved)The Eze Profit - VWAP + RSI Combined indicator is a powerful tool that merges the reliability of Volume-Weighted Average Price (VWAP) with the flexibility of the RSI oscillator. This combination provides actionable signals for traders by aligning trend-following with momentum analysis.
Key Features:
VWAP for Trend Identification:
Utilizes VWAP as a key trend indicator, offering insights into whether the price is trading above or below the volume-weighted average.
Ensures trading decisions align with the prevailing market trend.
RSI Momentum Confirmation:
Integrates the Relative Strength Index (RSI) to confirm momentum conditions.
Helps identify overbought and oversold levels to refine entries and exits.
Clear Long and Short Signals:
Long Signal: Generated when the price is above VWAP and RSI momentum shifts into a bullish condition.
Short Signal: Triggered when the price is below VWAP and RSI momentum indicates bearishness.
Position State Tracking:
Keeps track of whether the trader is "in position" to prevent redundant signals and improve execution clarity.
Easy Visualization:
VWAP is plotted on the chart for quick reference, offering a visual representation of key trend zones.
Benefits:
Combines trend and momentum for enhanced accuracy.
Reduces false signals by aligning two trusted technical analysis tools.
Works across various timeframes and asset classes, making it versatile for day traders and swing traders.
Notes:
The Eze Profit - VWAP + RSI Combined indicator is optimized for educational purposes and should be used alongside other tools for best results.
Customize settings to suit different market conditions or trading strategies.
RSI ve MACD Tabanlı Sinyaller - McoderTaban ve Yüksek seviyeleri bularak kaldıraçlı işlemlerde etkilidir.
Candle Flip System - CFSCandle Flip System - CFS
The Candle Flip System checklist table is a tool designed for traders seeking a structured approach to decision-making. This indicator provides a visual checklist to validate critical conditions before entering a trade. It includes:
1. Previous D1 Candle Analysis:
Displays whether the previous daily candle closed bullish or bearish, indicated by intuitive markers.
2. 4-Hour Alignment Check:
Confirms if the bias of the previous 4-hour candle aligns with the previous daily candle's bias.
Outputs "YES" in green for alignment or "NO" in red for misalignment.
This indicator simplifies multi-timeframe analysis and ensures a systematic evaluation of key trading conditions, enabling traders to make more confident and disciplined decisions.
How to Use:
1. Apply the indicator to your chart.
2. Observe the table displayed in the top-right corner.
3. Use the information to validate your trading strategy before entering a trade.
Sessions ny vizScript Purpose
This indicator draws a colored background during the New York trading session. It's useful for traders who want to have a visual overview of when the American (NY) trading session is active.
Main Features
NY Session Visualization - draws a gray bar in the background of the chart during NY trading hours (15:00-19:00 CET)
Customization - allows users to:
Set custom session time range
Adjust background color and transparency
Limit display to only the last 24 hours
Input Parameters
sessionRange - session time range (default 15:00-19:00 CET)
sessionColour - background color (default gray with 90% transparency)
onlyLast24Hours - toggle for showing only the last 24 hours (default false)
Technical Details
Script is written in Pine Script version 5
Uses UNIX timestamp for time period calculations
Runs as an overlay indicator (overlay=true), meaning it displays directly on the price chart
Uses the bgcolor() function for background rendering
Contains logic to check if current time is within defined session
Usage
This indicator is useful for:
Monitoring active NY trading session hours
Planning trades during the most liquid hours of the US market
Visual orientation in the chart during different trading sessions
gun shipit is too hard to use it but it
از چند ایندیکاتور درست شده که ترکیب ستاپهای مختلف است قلق خاصی دارد به سختی متوجه می شوید بهتر است با یو تی بات هم تکمیل بشود تقریبا وین ریت 100 درصد دارد.
RTM Price Action Smart Money Strategy//@version=5
indicator("RTM Price Action Smart Money Strategy", overlay=true)
// Settings
length = input.int(14, title="Length")
src = input.source(close, title="Source")
// Simple Moving Averages (SMA)
sma = ta.sma(src, length)
ema200 = ta.ema(src, 200)
sma50 = ta.sma(src, 50)
// Supply and Demand Zones
demandZone = ta.lowest(src, length * 2) // Adjusted length
supplyZone = ta.highest(src, length * 2) // Adjusted length
// RSI and MACD
rsi = ta.rsi(src, 14)
rsiBuy = rsi < 30
rsiSell = rsi > 70
= ta.macd(src, 12, 26, 9)
macdBuy = ta.crossover(macdLine, signalLine)
macdSell = ta.crossunder(macdLine, signalLine)
// Candlestick Patterns
hammer = (open > close) and ((high - low) > 3 * (open - close)) and ((open - low) / (.001 + high - low) > 0.6) and ((close - low) / (.001 + high - low) > 0.6)
hangingMan = (close > open) and ((high - low) > 3 * (close - open)) and ((high - close) / (.001 + high - low) > 0.6) and ((high - open) / (.001 + high - low) > 0.6)
bullishEngulfing = (close > open) and (close < open ) and (open <= close ) and (close >= open )
bearishEngulfing = (open > close) and (open < close ) and (close <= open ) and (open >= close )
// Entry and Exit Points with RSI, MACD, and Candlestick Patterns
entryLong = src <= demandZone and src > ema200 and src > sma50 and rsiBuy and macdBuy and (hammer or bullishEngulfing)
exitLong = src >= supplyZone and rsiSell and macdSell and (hangingMan or bearishEngulfing)
entryShort = src >= supplyZone and src < ema200 and src < sma50 and rsiSell and macdSell and (hangingMan or bearishEngulfing)
exitShort = src <= demandZone and rsiBuy and macdBuy and (hammer or bullishEngulfing)
// Plot Entry and Exit Points with Flags
plotshape(series=entryLong, location=location.belowbar, color=color.green, style=shape.flag, title="Entry Long", text="Entry", offset=-1)
plotshape(series=exitLong, location=location.abovebar, color=color.red, style=shape.flag, title="Exit Long", text="Exit", offset=-1)
plotshape(series=entryShort, location=location.abovebar, color=color.red, style=shape.flag, title="Entry Short", text="Entry", offset=-1)
plotshape(series=exitShort, location=location.belowbar, color=color.green, style=shape.flag, title="Exit Short", text="Exit", offset=-1)
// Plot Supply and Demand Zones
plot(demandZone, color=color.green, title="Demand Zone")
plot(supplyZone, color=color.red, title="Supply Zone")
// Add a simple plot to meet the requirement
plot(src, title="Source Plot", color=color.gray)