Williams Percent Range (RSI-like Scale)Williams Percent Range plotted on RSI-like Scale. Williams %R ranges from −100 (oversold) to 0 (overbought). Adding 100 shifts the range from 0 to 100.
Educational
Brokerir Market Sessions IndicatorOverview
The Brokerir Market Sessions Indicator is a powerful tool designed to help traders track global market sessions in a highly customizable and visually distinct manner. It supports four market sessions by default: Tokyo, London, New York, and Sydney, but you can fully customize session times, names, and colors to fit your trading needs.
This indicator offers four different visualization modes:
✔ Boxes – Clear session boundaries with customizable colors.
✔ Timeline – A minimalistic session tracker along the bottom of the chart.
✔ Zones – Highlights price action during specific sessions.
✔ Colored Candles – Colors candlesticks based on active sessions.
Additionally, it includes useful tools such as session High/Low tracking, Open/Close percentage change, pip movement, session equilibrium level, overlapping session merging, and weekend filtering.
Key Features
✅ Fully Customizable Sessions – Adjust names, colors, and times.
✅ Four Display Modes – Choose between Boxes, Timelines, Zones, or Candles.
✅ Automatic Timezone Detection – Works across all time zones, no manual adjustments needed.
✅ Session High/Low & Open/Close Tracking – View price movement during each session in pips or percentage.
✅ Overlap Merging – Ensures cleaner charts by merging overlapping sessions.
✅ Equilibrium Levels & Open/Close Lines – Gain insights into session strength and direction.
✅ Weekend Filtering – Avoid plotting sessions when the market is closed.
Customization Options
📌 Sessions Settings
You can modify each session independently:
• Tokyo Session – Set time, color, and name.
• London Session – Set time, color, and name.
• New York Session – Set time, color, and name.
• Sydney Session – Set time, color, and name.
💡 You can also create and track your own custom sessions!
📌 Additional Tools
1️⃣ Pips & Percentage Change Labels – Shows the distance between session high/low or open/close.
2️⃣ Session Overlap Merging – Makes charts cleaner by merging overlapping sessions.
3️⃣ Weekend Filter – Removes unnecessary session tracking when markets are closed.
4️⃣ Open/Close Line – Draws a trend line between session open and close for easy direction tracking.
5️⃣ 0.5 Equilibrium Level – Identifies the middle of a session range to spot price balance points.
6️⃣ Session Candle Coloring – Assigns unique colors to candles based on session activity.
7️⃣ Lookback Period – Customize how far back the indicator displays past session data.
8️⃣ Input Timezone Adjustments – Manually override time zones if needed.
Why Choose Brokerir Market Sessions Indicator?
🔹 Complete Customization – Define sessions exactly as you need them.
🔹 Multiple Visualizations – Switch between zones, boxes, timelines, or candle coloring.
🔹 Accurate Time Adjustments – Works regardless of your TradingView time zone settings.
🔹 Professional Trading Tool – Ideal for scalpers, day traders, and institutional analysis.
🔹 Future Updates & Enhancements – Brokerir will continue improving this indicator with new features and functionalities.
💡 Follow Brokerir for updates and improvements to this essential trading tool!
brokerir.com
Swing Catcher DayThe "Swing Catcher" indicator identifies swing points on a daily time frame by combining Simple Moving Averages (SMA) for trend direction, Momentum to gauge price strength, and Average True Range (ATR) to confirm volatility. It marks potential swing highs and lows, validates them using trend and momentum alignment, and filters out noise with ATR-based volatility checks. This makes it an effective tool for spotting and trading significant price movements.
RSI LabelThis is my first indicator. Its normal RSI, but little beat of tweak. It is is in label form displayed at right below the bar.
RSI Oversold & Golden Cross//@version=5
indicator("RSI Oversold & Golden Cross", overlay=true)
// Input settings
rsiLength = input.int(14, title="RSI Length")
rsiOversold = input.int(30, title="RSI Oversold Level")
shortEmaLength = input.int(50, title="Short EMA Length")
longEmaLength = input.int(200, title="Long EMA Length")
// Calculate RSI
rsi = ta.rsi(close, rsiLength)
// Calculate EMAs
shortEma = ta.ema(close, shortEmaLength)
longEma = ta.ema(close, longEmaLength)
// Golden Cross condition
goldenCross = ta.crossover(shortEma, longEma)
// RSI Oversold condition
rsiOversoldCondition = rsi < rsiOversold
// Combined condition
signal = goldenCross and rsiOversoldCondition
// Plot EMA lines
plot(shortEma, color=color.blue, title="Short EMA")
plot(longEma, color=color.orange, title="Long EMA")
// Plot buy signals
plotshape(series=signal, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal", text="BUY")
// Background color for RSI Oversold
bgcolor(rsiOversoldCondition ? color.new(color.green, 90) : na, title="RSI Oversold Background")
// Alert conditions
alertcondition(signal, title="Golden Cross + RSI Oversold", message="Golden Cross + RSI Oversold detected!")
FT TrendFT Trend
Overview
The FT Trend is a modern and highly customizable indicator designed for traders seeking to simplify and enhance their trend analysis. Based on the concept of the original Exponential Moving Average (EMA), this script introduces unique enhancements tailored for real-time adaptability and user-friendly customization, setting it apart from traditional EMA indicators.
Key Features
Enhanced EMA Visualization:
Smooth and accurate trendline plotting to provide clearer insights into price movement.
Customizable settings, including period length, line offset, and color, to suit individual trading styles.
Compact and Clean Design:
Removes unnecessary complexity by offering a straightforward focus on trend tracking.
Refined dropdown menu options to limit redundant styles, ensuring simplicity and clarity.
Offset Customization:
Allows traders to shift the EMA line forward or backward on the chart for advanced analysis and prediction.
Optimized Performance:
Built from scratch using Pine Script v6 for improved efficiency and reliability.
Streamlined code structure ensures minimal resource usage on TradingView.
How This Script Differs from Standard EMA Indicators
This script draws its inspiration from the traditional EMA indicator but introduces significant improvements to elevate its usability and functionality:
Custom Offset Adjustment: Unlike standard EMA scripts, FT Trend includes offset customization, allowing traders to anticipate or backtest trends visually.
Simplified User Interface: Unnecessary dropdown options have been removed to provide a cleaner, distraction-free experience.
Enhanced Aesthetic Design: Unique, vivid color schemes and customizable line styles make it more appealing and readable on the chart.
How It Works
Tracks price movement using an Exponential Moving Average formula with user-defined parameters.
Plots the EMA directly on the chart, offering a clear visual representation of market trends.
Offset functionality enables precise analysis of price action relative to the trendline.
Practical Applications
Trend Confirmation: Use the EMA to identify and confirm the current market trend.
Support and Resistance Levels: The EMA often acts as dynamic support or resistance during trending markets.
Entry and Exit Signals: Combine the EMA with other indicators to fine-tune trading signals.
Important Notes
The FT Trend is optimized for all timeframes, making it a versatile tool for intraday, swing, or long-term traders.
While based on the classic EMA concept, this script offers unique flexibility and adaptability not found in standard EMA indicators.
Credits
This indicator is inspired by the original EMA methodology but has been extensively customized and reimagined for modern trading strategies. Full credit is given to the creators of the EMA for their foundational work, which serves as the core idea behind this tool.
Disclaimer
This script is for informational and educational purposes only. Always test on a demo account before applying it to live markets. Proper risk management is crucial when trading.
Box BreakoutAn indicator that involves "breaking boxes" could refer to a box breakout strategy, often used to identify price consolidations and subsequent breakouts. Here's how it works:
Box Breakout Indicator
What is it? A box breakout strategy involves identifying a range-bound price movement (a consolidation phase) that forms a "box" on the chart. The price moves within a defined high and low range for a period of time, creating the top and bottom edges of the box.
EMA RSI Strategy krit test1This script implements strategy with the specified conditions. Key features include:
EMA Crossover Signals:
Buy signal: EMA (6) crosses above EMA (82).
Sell signal: EMA (6) crosses below EMA (82).
RSI Conditions:
Buy signals are restricted when RSI > 70 (overbought zone).
Sell signals are restricted when RSI < 22 (oversold zone).
Candle Conditions:
Buy signal: Current candle closes at a higher high.
Sell signal: Current candle closes at a lower low.
200 EMA Breakout & Retest Strategy200 EMA Breakout & Retest Strategy
This script is designed for traders who rely on the 200 EMA as a key indicator for trend direction and trade setups. The strategy identifies potential buy and sell opportunities based on breakouts and subsequent retests of the 200 EMA.
How It Works
EMA Breakout Detection:
The script monitors when the price crosses and closes above or below the 200 EMA.
No signal is generated immediately upon the breakout.
Retest Confirmation:
After the breakout, the price must retrace to touch the 200 EMA.
A valid signal occurs only when the price touches the EMA and the candle closes above (for buy) or below (for sell).
Trade Signal Generation:
Once the retest is confirmed:
A Buy Signal is generated if the price closes above the 200 EMA after the retest.
A Sell Signal is generated if the price closes below the 200 EMA after the retest.
The script calculates:
Stop Loss: Placed at the low of the candle for a buy signal and at the high of the candle for a sell signal.
Take Profit: Based on a customizable Risk-Reward Ratio (default is 1:2).
Visual Indicators:
The 200 EMA is plotted on the chart for reference.
Buy/Sell signals are displayed as labels on the chart.
Stop loss and take profit levels are drawn using dotted lines.
Customization Options
EMA Length: Adjustable (default is 200).
Risk-Reward Ratio: Customizable to suit different trading styles.
Who Is This For?
This strategy is ideal for traders who:
Prefer trading with the trend using EMA-based strategies.
Look for precise entry points with confirmation from retests.
Require automated calculation of risk-reward levels.
Futuristic Indicator v3 - Enhanced Glow & Strength MetersTo ensure candles are display by script go to trading view settings and uncheck default Candle, Body and Wick to prevent them from plotting over your modified candles.
Futuristic Indicator v3 - Enhanced Glow & Strength Meters: Detailed Breakdown
This Modern styled Pine Script indicator is designed to enhance technical analysis by providing a visually striking OLED-style dashboard with multiple market insights. It integrates trend detection, momentum analysis, volatility tracking, and strength meters into a single, streamlined interface for traders.
1️⃣ Customizable Features for Flexibility
The indicator offers multiple user-configurable settings, allowing traders to adjust the display based on their trading strategy and preferences. Users can toggle elements such as strength meters, volatility indicators, trend arrows, moving averages, and buy/sell alerts. Additionally, background and candle colors can be customized for better readability.
🔹 Why is this useful?
Traders can customize their charts to focus on the data they care about.
Reduces chart clutter by allowing users to toggle features on or off.
2️⃣ Trend Detection Using EMAs
This indicator detects market trends using two Exponential Moving Averages (EMA):
A "Fast" EMA (shorter period) for quick trend shifts.
A "Slow" EMA (longer period) to confirm trends.
Comparison of the two EMAs determines if the trend is bullish (uptrend) or bearish (downtrend).
The indicator colors the trend lines accordingly and adds a trend arrow 📈📉 for quick visual cues.
🔹 Why is this useful?
EMA crossovers are widely used to identify trend reversals.
Provides clear visual cues for traders to confirm entry & exit points.
3️⃣ RSI-Based Momentum Analysis
The indicator integrates the Relative Strength Index (RSI) to gauge market momentum. The momentum value changes color dynamically based on whether it's in bullish (>50) or bearish (<50) territory.
🔹 Why is this useful?
RSI helps identify overbought and oversold conditions.
Detects trend strength by measuring the speed of price movements.
4️⃣ Bullish & Bearish Strength Meters
The indicator quantifies bullish and bearish market strength based on RSI and converts it into a percentage-based meter:
Bullish Strength (Long Strength)
Bearish Strength (Short Strength)
Strength meters are displayed using OLED-styled bars, dynamically changing in real-time.
🔹 Why is this useful?
Allows traders to visually gauge market sentiment at a glance.
Helps confirm if a trend has strong momentum or is losing strength.
5️⃣ Market Volatility Indicator (ATR-Based)
The indicator includes a volatility tracker using the Average True Range (ATR):
ATR is scaled up to provide easier readability.
Higher ATR values indicate higher market volatility.
🔹 Why is this useful?
Helps traders identify potential breakout or consolidation phases.
Allows better risk management by understanding price fluctuations.
6️⃣ Trend Strength Calculation
The indicator calculates trend strength based on the difference between the EMAs:
A higher trend strength value suggests a stronger directional trend.
Displayed as a percentage for better clarity.
🔹 Why is this useful?
Helps traders differentiate between strong and weak trends.
Reduces the likelihood of entering weak or choppy markets.
7️⃣ OLED-Style Dashboard for Market Data
A futuristic OLED-styled table is used to display critical market data in a visually appealing way:
Trend direction (Bullish/Bearish with an arrow 📈📉).
Current price.
Momentum value.
Strength meters (Bullish/Bearish).
Trend strength percentage.
Volatility Meter
The dashboard uses high-contrast colors and neon glow effects, making it easier to read against dark backgrounds.
🔹 Why is this useful?
Provides a centralized view of key trading metrics.
Eliminates the need to manually calculate trend strength.
8️⃣ Modern Style Neon Glow Effects
To enhance visibility, the indicator applies glowing effects to:
Moving Averages (EMAs): Highlighted with layered glow effects.
Candlesticks: Borders and wicks dynamically change color based on trend direction.
🔹 Why is this useful?
Improves readability in low-contrast or dark-mode charts.
Helps traders spot trends faster without reading numerical data.
9️⃣ Automated Buy & Sell Alerts
The script triggers alerts when momentum crosses key levels:
Above 55 → Potential Long Setup
Below 45 → Potential Short Setup.
🔹 Why is this useful?
Alerts help traders react quickly without constantly monitoring the chart.
Reduces the risk of missing critical trade opportunities.
🔹 Final Summary: Why is This Indicator Useful?
This futuristic cyberpunk-styled trading tool enhances traditional market analysis by combining technical indicators with high-visibility visuals.
🔹 Key Benefits:
✅ Customizable Display – Toggle elements based on trading needs.
✅ Trend Detection – EMAs highlight uptrends & downtrends.
✅ Momentum Tracking – RSI-based momentum gauge identifies strong moves.
✅ Strength Meters – Bullish/Bearish power is clearly visualized.
✅ Volatility Insights – ATR-based metric highlights market turbulence.
✅ Trend Strength Analysis – Quantifies trend intensity.
✅ Dashboard – Provides a centralized, easy-to-read data panel.
✅ Cyberpunk Neon Glow – Enhances clarity with stylish aesthetics.
✅ Real-Time Alerts – Helps traders react to key opportunities.
This indicator is designed to be both functional and visually appealing, making market analysis more intuitive and efficient. 🚀
Scalping Entry with TP/SL (1:2 R:R) [v6]
Entry Conditions:
A Buy entry is triggered when the price crosses above the EMA (trend confirmation).
A Sell entry is triggered when the price crosses below the EMA.
Stop Loss (SL):
Calculated using ATR (Average True Range) multiplied by a factor you can adjust (atrMultiplier).
Take Profit (TP):
Calculated using a fixed Risk-to-Reward ratio (riskRewardRatio), defaulted to 1:2.
Visualization:
Entry lines (solid green for Buy, red for Sell).
TP lines (blue dotted) and SL lines (red or green dotted).
Labels for entry points (BUY/SELL).
RSI Overbought/Oversold Strategy - Haisreeit should be work 4hrs 100% this 80 over bought and 20 over sold straregy.
Custom RSI + OBV Scalping Indicator 8080A custom indicator combining RSI (Relative Strength Index) and OBV (On-Balance Volume) can be helpful for scalping by merging momentum and volume signals.
Lukhi EMA Crossover_TWL strategy### Description of the Script
This Pine Script implements the **Lukhi EMA Crossover_TWL Strategy** for use on TradingView. It is designed to generate buy and sell signals based on an Exponential Moving Average (EMA) crossover combined with Relative Strength Index (RSI) confirmation. The strategy also incorporates capital management features such as stop-loss and take-profit levels, along with detailed entry labels and failure indications. Here's a detailed breakdown:
---
### **Features**
1. **Customizable Parameters**:
- **Capital**: Define the total trading capital (`₹15,000` by default).
- **Risk per Trade**: Set the maximum amount you are willing to risk per trade (`₹1,000` by default).
- **Target Profit per Trade**: Define the desired profit per trade (`₹5,000` by default).
- **Lot Size**: Specify the number of contracts/lots for the trade (`75` by default for Nifty).
- **Stop-Loss Distance**: Use a fixed point-based stop-loss (`20` points by default).
2. **Indicators**:
- **Exponential Moving Averages (EMAs)**:
- Short EMA (`9-period`) and Long EMA (`21-period`).
- Used to identify trend direction and crossover signals.
- **Relative Strength Index (RSI)**:
- Configurable `14-period` RSI.
- RSI levels help confirm overbought/oversold conditions.
3. **Entry Signals**:
- **Buy Signal**: Triggered when the short EMA crosses above the long EMA and RSI is above 50.
- **Sell Signal**: Triggered when the short EMA crosses below the long EMA and RSI is below 50.
4. **Exit Logic**:
- Stop-loss and take-profit levels are dynamically calculated based on the risk per trade and position size.
- The script automatically exits the trade when either the stop-loss or take-profit levels are reached.
5. **Visual Elements on Chart**:
- **EMA Lines**:
- Plots the short EMA (blue) and long EMA (orange) on the chart for easy visualization.
- **Buy and Sell Labels**:
- Buy and sell signals are marked on the chart with labels showing:
- Entry price
- Target price
- Stop-loss price
- **Failure Indicators**:
- Displays a red cross on the chart if a stop-loss is hit (indicating a failed trade).
---
### **How It Works**
1. **Setup**:
- The script calculates the short and long EMAs using the closing prices of the selected asset.
- RSI is calculated for additional confirmation of trade signals.
2. **Signals**:
- A **Buy Signal** is generated when:
- Short EMA crosses above the long EMA.
- RSI is above 50 (indicating bullish momentum).
- A **Sell Signal** is generated when:
- Short EMA crosses below the long EMA.
- RSI is below 50 (indicating bearish momentum).
3. **Risk Management**:
- Position size is determined dynamically using the stop-loss distance and risk per trade.
- Stop-loss and take-profit levels are calculated for both long and short trades.
4. **Trade Execution**:
- The script automatically places orders based on buy/sell signals and exits them when stop-loss or take-profit levels are reached.
5. **Visual Feedback**:
- The chart displays the calculated entry, stop-loss, and target prices for each signal.
- Failed trades (where stop-loss is hit) are marked with a red cross.
---
### **Applications**
- Suitable for trading Nifty and other similar instruments with defined lot sizes.
- Ideal for traders who follow systematic EMA crossover strategies combined with RSI for confirmation.
- Helps in automating entry and exit signals while incorporating robust risk management.
---
### **Usage**
1. Copy the script into TradingView’s Pine Editor.
2. Adjust the input parameters (capital, risk, lot size, stop-loss, etc.) according to your trading requirements.
3. Apply the strategy to your desired chart and timeframe.
4. Monitor the buy/sell labels and review stop-loss or target levels before placing trades.
---
### **Notes**
- This script is configured for educational purposes and should be tested on a demo account before live trading.
- Proper risk management and backtesting are recommended to adapt the strategy to different market conditions.
Lukhi EMA Crossover_TWL StrategyParameter Breakdown:
Capital: ₹15,000.
Risk Per Trade: ₹1,000.
This determines the amount you're willing to lose per trade.
Take Profit Per Trade: ₹5,000.
Your target profit level.
Stop Loss Distance: Adjusted to match practical scenarios (default: 20 points).
How It Works:
Buy Signal:
A trade is entered when the shorter EMA crosses above the longer EMA, and RSI is above 50.
Stop-loss is set at 20 points below the entry price.
Take-profit is calculated to match the risk-reward ratio based on your input.
Sell Signal:
A trade is entered when the shorter EMA crosses below the longer EMA, and RSI is below 50.
Stop-loss is set at 20 points above the entry price.
Take-profit is calculated similarly.
Failure Detection:
Red cross signals on the chart indicate when a trade fails (stop-loss is hit).
VWAP, Bollinger Bands, RSI, 5 & 20 EMA, MACDThis script combines the power of multiple key indicators to help you spot the best breakout opportunities and increase your chances of making profitable trades. By leveraging RSI, MACD, Bollinger Bands (BB), 5 & 20 EMAs, and VWAP, it provides a comprehensive approach to market analysis.
How to Use It:
Bullish Setup:
When the price closes above the VWAP.
RSI should be greater than 40, signaling strong market strength.
The 5 EMA acts as support, showing that the trend is likely to continue.
The MACD should show bullish momentum, confirming the buy signal.
Bollinger Bands (BB) should be contracted, indicating that a breakout is likely.
When all these conditions align, it's time to open a long position and aim for a high-reward trade—targeting at least a 1:6 reward-to-risk ratio.
Made by: Wasi Rao
Contact: Instagram - @wasi_rao_
Drawdown from 22-Day High (Daily Anchored)This Pine Script indicator, titled "Drawdown from 22-Day High (Daily Anchored)," is designed to plot various drawdown levels from the highest high over the past 22 days. This helps traders visualize the performance and potential risk of the security in terms of its recent high points.
Key Features:
Daily High Data:
Fetches daily high prices using the request.security function with a daily timeframe.
Highest High Calculation:
Calculates the highest high over the last 22 days using daily data. This represents the highest price the security has reached in this period.
Drawdown Levels:
Computes various drawdown levels from the highest high:
2% Drawdown
5% Drawdown
10% Drawdown
15% Drawdown
25% Drawdown
45% Drawdown
50% Drawdown
Dynamic Line Coloring:
The color of the 2% drawdown line changes dynamically based on the current closing price:
Green (#02ff0b) if the close is above the 2% drawdown level.
Red (#ff0000) if the close is below the 2% drawdown level.
Plotting Drawdown Levels:
Plots each drawdown level on the chart with specific colors and line widths for easy visual distinction:
2% Drawdown: Green or Red, depending on the closing price.
5% Drawdown: Orange.
10% Drawdown: Blue.
15% Drawdown: Maroon.
25% Drawdown: Purple.
45% Drawdown: Yellow.
50% Drawdown: Black.
Labels for Drawdown Levels:
Adds labels at the end of each drawdown line to indicate the percentage drawdown:
Labels display "2% WVF," "5% WVF," "10% WVF," "15% WVF," "25% WVF," "45% WVF," and "50% WVF" respectively.
The labels are positioned dynamically at the latest bar index to ensure they are always visible.
Explanation of Williams VIX Fix (WVF)
The Williams VIX Fix (WVF) is a volatility indicator designed to replicate the behavior of the VIX (Volatility Index) using price data instead of options prices. It helps traders identify market bottoms and volatility spikes.
Key Aspects of WVF:
Calculation:
The WVF measures the highest high over a specified period (typically 22 days) and compares it to the current closing price.
It is calculated as:
WVF
=
highest high over period
−
current close
highest high over period
×
100
This formula provides a percentage measure of how far the price has fallen from its recent high.
Interpretation:
High WVF Values: Indicate increased volatility and potential market bottoms, suggesting oversold conditions.
Low WVF Values: Suggest lower volatility and potentially overbought conditions.
Usage:
WVF can be used in conjunction with other indicators (e.g., moving averages, RSI) to confirm signals.
It is particularly useful for identifying periods of significant price declines and potential reversals.
In the script, the WVF concept is incorporated into the drawdown levels, providing a visual representation of how far the price has fallen from its 22-day high.
Example Use Cases:
Risk Management: Quickly identify significant drawdown levels to assess the risk of current positions.
Volatility Monitoring: Use the WVF-based drawdown levels to gauge market volatility.
Support Levels: Utilize drawdown levels as potential support levels where price might find buying interest.
This script offers traders and analysts an efficient way to visualize and track important drawdown levels from recent highs, helping in better risk management and decision-making. The dynamic color and label features enhance the readability and usability of the indicator.
Matrix Series and Vix Fix with VWAP CCI and QQE SignalsMatrix Series and Vix Fix with VWAP CCI and QQE Signals
Short Title: Advanced Matrix
Purpose
This Pine Script combines multiple technical analysis tools to create a comprehensive trading indicator. It incorporates elements like support/resistance zones, overbought/oversold conditions, Williams Vix Fix, QQE (Quantitative Qualitative Estimation) signals, VWAP CCI signals, and a 200-period SMA for trend filtering. The goal is to provide actionable buy and sell signals with enhanced visualization.
Key Features and Components
1. Matrix Series
Smoothing Input: Allows customization of EMA smoothing for the indicator (default: 5).
Support/Resistance Zones: Based on CCI (Commodity Channel Index) values.
Dynamic zones calculated with customizable parameters (SupResPeriod, SupResPercentage, PricePeriod).
Candlestick Visualization: Custom candlestick plots with colors indicating trends.
Dynamic levels for overbought/oversold conditions.
2. Overbought/Oversold Signals
Overbought and oversold levels are adjustable (ob and os).
Plots circles on the chart to highlight extreme conditions.
3. Williams Vix Fix
Identifies potential reversal points by analyzing volatility.
Uses Bollinger Bands and percentile thresholds to detect high-probability entries.
Includes two alert levels (alert1 and alert2) with customizable criteria for signal filtering.
4. QQE Signals
Based on the smoothed RSI and QQE methodology.
Detects trend changes using adaptive ATR bands (FastAtrRsiTL).
Plots long and short signals when specific conditions are met.
5. VWAP CCI Signals
Combines VWAP and CCI for additional trade signals.
Detects crossovers and crossunders of CCI levels (-200 and 200) to generate long and short signals.
6. 200 SMA
A 200-period simple moving average is plotted to act as a trend filter.
The script rules recommend buying only when the price is above the SMA200.
Customizable Inputs
General:
Smoothing, support/resistance periods, overbought/oversold levels.
Williams Vix Fix:
Lookback periods, Bollinger Band settings, percentile thresholds.
QQE:
RSI length, smoothing factor, QQE factor, and threshold values.
VWAP CCI:
Length for calculating deviations.
Visual Elements
Dynamic candlestick colors to indicate trend direction.
Overbought/oversold circles for extreme price levels.
Resistance and support lines.
Labels and shapes for buy/sell signals from Vix Fix, QQE, and VWAP CCI.
Alerts
Alerts are configured for the Matrix Series (e.g., "BUY MATRIX") and other components, ensuring traders are notified when significant conditions are met.
Intended Use
This indicator is designed for traders seeking a multi-faceted tool to analyze market trends, identify potential reversal points, and generate actionable trading signals. It combines traditional indicators with advanced techniques for comprehensive market analysis.
Repeating Vertical LinesThe "Repeating Vertical Lines" indicator visualizes recurring points in time on the chart by drawing background highlights based on user-defined conditions, including specific weekdays, times, or their combination. Users can customize the color and transparency of the lines for seamless chart integration.
Market Participation Ratio-MPR(TechnoBlooms)Market Participation Ratio (MPR) Indicator - Description
The Market Participation Ratio (MPR) is a custom indicator designed to assess market activity by analyzing price and volume relationships over a specified period. This indicator is useful for identifying trends, participation levels, and key thresholds in market behavior.
Key Features:
1. MPR Calculation:
o The indicator calculates a ratio of the current price and volume relative to their respective moving averages over a user-defined period (Length).
o This ratio is scaled to 100 for better visualization and comparison.
2. Smoothing:
o To reduce noise and make the trend clearer, the MPR is smoothed using an Exponential Moving Average (Smoothing Length), making it easier to interpret.
3. Zero Line & Threshold Levels:
o A zero line at 0 is plotted for baseline comparison.
o Horizontal reference lines at 100 (threshold for strong participation) and 50 (optional secondary level) help in evaluating market trends.
Usage:
• Traders can use the MPR to identify when market participation is increasing or decreasing, which may signal potential trend reversals or continuations.
• Values above 100 often suggest robust market activity, favorable for long positions.
• Values below 100 may indicate waning interest, potentially signaling pullbacks or bearish trends.
Customizable Inputs:
• Length: Adjusts the moving average period for price and volume calculations.
• Smoothing Length: Determines the degree of smoothing applied to the MPR.
Applications:
• Trend Analysis: Detect shifts in bullish or bearish momentum based on participation levels.
• Market Strength: Identify periods of increased or reduced market involvement by traders and investors.
• Entry/Exit Signals: Use levels around 100 as potential cues for positioning in the market.
This indicator is versatile for both short-term and long-term trading strategies and is a valuable addition for technical analysis enthusiasts seeking deeper insights into market dynamics.
[Helper] Trade Journal TableThis indicator serves as a starting point for creating a customized trade journal that meets individual requirements. It provides a basic structure for visualizing trade data in table form which can be adapt to specific needs. The trade data must be maintained directly within the script using the Pine Editor.
Basic Structure:
The example table consists of six columns: Date, Entry Price, Exit Price, Profit/Loss (color-coded), Strategy, and Notes. It is displayed centrally on the chart and dynamically adjusts to the number of recorded trades.
Example Data:
To demonstrate its functionality, the indicator includes predefined example trades, which should be replaced with actual trading data. Additional information, such as strategies and notes, can be added to improve trade documentation.
P T Supertrend CustomPT Supertrend Custom Indicator Description
The PT Supertrend Custom indicator is a dual Supertrend-based tool designed to help traders identify market trends and potential reversals with enhanced accuracy. This custom indicator plots two Supertrend lines with different ATR (Average True Range) lengths and multipliers, providing a broader perspective on price movements across varying market conditions.
Key Features:
1. Dual Supertrend Lines:
- The indicator calculates two separate Supertrend values using customizable ATR lengths (default: 7 and 21) and factors (default: 3.0 for both).
- This dual-layered approach helps identify both short-term and long-term trends for better decision-making.
2. Customizable Parameters:
- ATR Length (ATR Length & ATR Length2): Determines the lookback period for volatility calculation.
- Factor (Factor & Factor2): Defines the multiplier for the ATR, controlling the sensitivity of the Supertrend lines.
3. Visual Trend Representation:
- Green and red line plots represent uptrends and downtrends, respectively.
- The indicator overlays on the price chart, offering a clear visual representation of trend direction.
- Trend fill areas provide additional clarity, with green shading for uptrends and red shading for downtrends.
4. Dynamic Trend Shifts:
- The indicator adapts dynamically based on price action, switching from an uptrend to a downtrend and vice versa when conditions change.
- Two independent trend signals allow traders to compare short-term and long-term trend confirmations.
5. Overlay on Price Chart:
- The indicator is plotted directly on the price chart for easy visualization without cluttering the workspace.
How to Use:
- Trend Identification:
- A green Supertrend line below price indicates an uptrend.
- A red Supertrend line above price signals a downtrend.
- When both Supertrends align, it indicates a strong trend; divergence may signal potential reversals.
- Entry & Exit Signals:
- Consider long positions when both Supertrend lines turn green.
- Consider short positions when both Supertrend lines turn red.
- Use the shorter ATR period for quicker entries and exits, while the longer ATR period provides confirmation.
- Risk Management:
- The Supertrend lines can serve as dynamic support/resistance levels for placing stop-loss orders.
Best Used In:
- Trend-following strategies
- Swing trading and day trading
- Volatile markets where ATR-based signals are effective
This indicator provides a comprehensive view of market trends by combining short- and long-term trend filters, making it a valuable tool for traders seeking precision and clarity in their trading decisions.
Created by Prince Thomas