Tomas' Financial Conditions Z Score"The indicator is a composite z-score comprised of the following four components (equally-weighted):
Credit spreads - ICE BofA High Yield Option Adjusted Spread (BAMLH0A0HYM2) and ICE BofA Corporate Index Option Adjusted Spread (BAMLC0A0CM)
Volatility indexes - VIX (S&P 500 implied volatility) and MOVE (US Treasury bond implied volatility)
I've got it set to a 160-day lookback period, which I think is roughly the best setting after some tinkering.
When the z-score is above zero, it throws a red signal - and when the z-score is below zero, it throws a green signal.
This indicator is a follow-on from the "traffic light financial conditions indicator" that I wrote a thread about a couple of months ago.
I moved on from that previous indicator because it is based on the Federal Reserve's NFCI, which is regularly revised, but I didn't take that into account at the time.
So not a great real-time indicator, if the signal can be subsequently revised in the opposite direction weeks later.
This new indicator is based on real-time market data, so there's no revisions, and it also updates daily, as opposed to weekly for the NFCI"
Indicatori e strategie
Custom EMA (v4) [MacroGlide]Custom EMA (v4) is an easy-to-use tool designed for traders who want a clear and reliable way to analyze market trends. By using multiple Exponential Moving Averages (EMAs), this indicator helps you visualize the market's direction and momentum in a straightforward way. Whether you're tracking short-term movements or looking for long-term patterns, Custom EMA makes it simple to spot trends and trading opportunities.
Key Features:
• Multi-EMA System: Plots up to four EMAs on the chart with customizable lengths and colors, providing flexibility to analyze trends over different timeframes.
• Dynamic Trend Cloud: A visually intuitive cloud is generated between the fastest and slowest EMA. The cloud changes color based on market trends:
• Green Cloud: Indicates a bullish trend when shorter EMAs are above longer EMAs.
• Red Cloud: Indicates a bearish trend when shorter EMAs are below longer EMAs.
• Highlighting Zones: Background shading helps distinguish bullish and bearish conditions, further clarifying the prevailing trend in the market.
How to Use:
• Add the Indicator: Load the indicator onto your chart and customize the EMA lengths to suit your trading style.
• Interpret the Cloud: Observe the color of the trend cloud to identify bullish (green) or bearish (red) market conditions.
• Combine with Highlighting Zones: Use the background shading in conjunction with the cloud to confirm trend strength and direction.
• Customize to Fit Your Strategy: Adjust the lengths and colors of the EMAs to align with your preferred analysis timeframe.
Methodology:
This indicator leverages a layered EMA approach, using up to four EMAs to calculate the trend cloud and define market conditions. By comparing the relative positions of the EMAs, it identifies bullish and bearish trends and visually represents them with a color-coded cloud. The inclusion of highlighting zones enhances the trader's ability to quickly grasp market sentiment.
Originality and Usefulness:
Custom EMA (v4) sets itself apart by integrating a trend cloud that adapts dynamically to EMA positions, providing traders with a clean and intuitive way to visualize market trends. The combination of multi-EMA plotting, background shading, and trend cloud offers comprehensive insight into both short-term and long-term market movements.
Charts:
The indicator plots four customizable EMAs alongside a trend cloud that visually captures market direction. Whether you're monitoring short-term price action or identifying long-term trends, the Custom EMA (v4) provides clarity and simplicity for traders at all levels.
Enjoy the game!
IndicatorsLibrary "Indicators"
cmf(lookback, n_to_smooth)
Calculates the Chaikin's Money Flow.
Parameters:
lookback (simple int)
n_to_smooth (simple int)
Returns: float The Money Flow value.
cmma(lookback, atr_length)
Calculates the CMMA (Close Minus Moving Average) indicator.
Parameters:
lookback (simple int)
atr_length (simple int)
Returns: float The CMMA value.
macd(fast_length, slow_length, n_to_smooth)
Calculates the normalized and scaled MACD.
Parameters:
fast_length (simple int)
slow_length (simple int)
n_to_smooth (simple int)
Returns: A tuple containing .
stochK(length, n_to_smooth)
Calculates a simplified Stochastic Oscillator.
Uses: 100 * ta.sma((close - lowest_low) / (highest_high - lowest_low), n_to_smooth)
Parameters:
length (simple int)
n_to_smooth (simple int)
Returns: float The Stochastic %K value.
williamsR(length)
Calculates the Williams %R using the stochK function.
Uses: -1 * (100 - stoch(length, 1))
Parameters:
length (simple int)
Returns: float The Williams %R value.
Standard Deviation of Returns: DivergencePurpose:
The "Standard Deviation of Returns: Divergence" indicator is designed to help traders identify potential trend reversals or continuation signals by analyzing divergences between price action and the statistical volatility of returns. Divergences can signal weakening momentum in the prevailing trend, offering insight into potential buying or selling opportunities.
Key Components
1. Returns Calculation:
* The indicator uses logarithmic returns (log(close / close )) to measure relative price changes in a normalized manner.
* Log returns are more effective than simple price differences when analyzing data across varying price levels, as they account for percentage-based changes.
2. Standard Deviation of Returns:
* The script computes the standard deviation of returns over a user-defined lookback period (ta.stdev(returns, lookback)).
* Standard deviation measures the dispersion of returns around their average, effectively quantifying market volatility.
* A higher standard deviation indicates increased volatility, while lower standard deviation reflects a calmer market.
3. Price Action:
* Detects higher highs (new peaks in price) and lower lows (new troughs in price) over the lookback period.
* Price trends are compared to the behavior of the standard deviation.
4. Divergence Detection:
A divergence occurs when price action (higher highs or lower lows) is not confirmed by a corresponding movement in standard deviation:
Bullish Divergence: Price makes a lower low, but the standard deviation does not, signaling potential upward momentum.
Bearish Divergence: Price makes a higher high, but the standard deviation does not, signaling potential downward momentum.
5. Visual Cues:
The script highlights divergence regions directly on the chart:
Green Background: Indicates a bullish divergence (potential buy signal).
Red Background: Indicates a bearish divergence (potential sell signal).
How It Works
Inputs:
* The user specifies the lookback period (lookback) for calculating the standard deviation and detecting divergences.
Calculation:
* Each bar’s returns are computed and used to calculate the standard deviation over the specified lookback period.
* The indicator evaluates price highs/lows and compares these with the highest and lowest values of the standard deviation within the same lookback period.
Highlight of Divergences:
When divergences are detected:
Bullish Divergence: The background of the chart is shaded green.
Bearish Divergence: The background of the chart is shaded red.
Trading Application
Bullish Divergence:
* Occurs when the market is oversold, or downward momentum is weakening.
* Suggests a potential reversal to an uptrend, signaling a buying opportunity.
Bearish Divergence:
* Occurs when the market is overbought, or upward momentum is weakening.
* Suggests a potential reversal to a downtrend, signaling a selling opportunity.
Contextual Use:
* Use this indicator in conjunction with other technical tools like RSI, MACD, or moving averages to confirm signals.
* Effective in volatile or ranging markets to help anticipate shifts in momentum.
Summary
The "Standard Deviation of Returns: Divergence" indicator is a robust tool for spotting divergences that can signal weakening market trends. It combines statistical volatility with price action analysis to highlight key areas of potential reversals. By integrating this tool into your trading strategy, you can gain additional confirmation for entries or exits while keeping a close watch on momentum shifts.
Disclaimer: This is not a financial advise; please consult your financial advisor for personalized advice.
squeeze candles with volume Function :
This indicator was designed to detect specific candles called “squeeze”. These candles are characterized by a relatively small body (the difference between the opening and closing price) and long shadows (the distance between the high and low prices), accompanied by significant volume. They often indicate a period of increased volatility or a potential trend reversal.
Use :
Visual detection:
Candles identified as "squeeze" are highlighted in red on the chart.
An “S” icon appears above each detected squeeze candle.
Alerts:
The indicator emits an audible and visual alert when a squeeze candle with high volume is detected (if alerts are enabled).
Market analysis:
This indicator is particularly useful for identifying trading opportunities during periods when the market is showing signs of compression or impending volatility.
Customizable settings:
Minimum volume: Defines the threshold at which the volume is considered high.
Maximum body/shadow ratio: Allows you to adjust the sensitivity to detect squeeze candles (the lower the ratio, the smaller the detected candles will have in relation to their shadows).
Benefits :
Provides accurate alerts on key market candles.
Helps anticipate large movements through analysis of volume and candle characteristics.
Adaptable to different strategies thanks to adjustable parameters.
Ideal for:
Traders who want to identify areas of potential volatility or reversal signals in the market, regardless of the asset or time frame used.
FXC NQ Opening Range Breakout Strategy V2.4Mechanical Strategy that trades breakouts on NQ futures on the 15min timeframe during the NYSE session. It's designed to manage Apex and Top Step accounts with the lowest risk possible.
Risk Disclaimer:
Past results as well as strategy tester reports do not indicate future performance. Guarantees do not exist in trading. By using this strategy you risk losing all your money.
Important:
It only trades on Monday, Wednesday and Friday and takes usually only 1 trade per trading day.
It works on the 15min timeframe only.
The settings are optimised already for NQ but feel free to change them.
How it works:
Every selected trading day it measures the range of the first 15min candle after the NYSE open. As soon as price closes above on the 15min timeframe, it will trade the breakout targeting a set risk to reward ratio. SL on the opposite side of the range. It will trail the SL after a set amount of points and uses a buffer of the set amount of points to trail it.
Settings:
Opening Range Time : This is the time of the day in hours and minutes when the strategy starts looking for trades. It's in the EST/ NY Timezone and set to 9:30-09:45 by default
because that's the NYSE open.
Session Time : This is the time of the day in hours and minutes until the strategy trades. It's in the EST/ NY Timezone and set to 09:45-14:45 by default.
because that's what gave the best results in backtesting. Open trades will get closed automatically once the end of the session is reached. No matter if win or loss. This is just to prevent holding positions over night.
Session Border This setting is to select the border color in which the session box will be plotted.
Opening Range Box This setting is to select the fill color of the opening range box.
Opening Range Border This setting is to select the border color of the session box.
Trade Timeframe This setting determines on which timeframe candle has to close outside the opening range box in order to take a trade. It's set to 15min by default because this is what worked by far the best in backtests and live trading.
Stop Loss Buffer in Points: This is simply the buffer in points that is added to the SL for safety reasons. If you have it on 0, the SL will be at the exact price of the opposite side of the range. By default it's set to 0 pips because this is what delivered the best results in backtests.
Profit Target Factor: This is simply the total SL size in points multiplied by x.
Example: If you put 2, you get a 1:2 Risk to Reward Ratio. By Default it's set to 4 because this gave the best results in backtests, because trades always get closed either by trailing SL or because the end of the session is reached.
Use Trailing Stop Loss: This setting is to enable/ disable the trailing stop loss. It's enabled by default because this is a fundamental part of the strategy.
Trailing Stop Buffer: This setting determines after how many points in profit the trailing SL will be activated.
Risk Type: You can chose either between Fixed USD Amount, Risk per Trade in % or Fixed Contract Size. By default it's set to fixed contract size.
Risk Amount (USD or Contracts): This setting is to set how many USD or how many contracts you want to risk per trade. Make sure to check which risk type you have selected before you chose the risk amount.
Use Limit Orders If enabled, the strategy will place a pending order x points from the current price, instead of a market order. Limit orders are enabled by default for a better performance. Important: It doesn't actually place a limit order. The strategy will just wait for a pullback and then enter with a market order. It's more like a hidden limit order.
Limit Order Distance (points): If you have limit orders enabled, this setting determines how many points from the current price the limit order will be placed.
Trading Days: These checkboxes are to select on which week days the strategy has to trade. Thursday is disabled by default because backtests have shown that Thursday is the least profitable day
Backtest Settings:
For the backtest the commissions ere set to 0.35 USD per mini contract which is the highest amount Tradeovate charges. Margin was not accounted for because typically on Apex accounts you can use way more contracts than you need for the extremely low max drawdown. Margin would be important on personal accounts but even there typically it's not an issue at all especially because this strategy runs on the 15min timeframe so it won't use a lot of contracts anyways.
What makes it unique:
This script is unique because it's designed to be used on Apex and Top Step accounts with extremely strict drawdown rules.
The strategy is optimised to be traded with a fixed contract size instead of using % risk. The reason for that is that the drawdown rules of these Futures Prop Accounts are very strict and the fact that the smallest trade-able contract size is 1.
Why the source code is hidden:
The source code is hidden because I invested a lot of time and money into developing this strategy and optimising it with paid 3rd party software. Also since I use it myself on my Apex accounts and prop firms don't allow copy trading I don't want it to be used by too many traders.
Multi TimelinesMulti Timeline Indicator
The Customizable Multi-Line Indicator is a versatile tool designed to help traders mark specific dates and times directly on their charts with visually distinct vertical lines. This indicator provides three fully customizable lines, each equipped with its own unique settings for visibility, color, style, and width. It is ideal for traders who want to highlight key events, track important price levels, or organize their charts around time-based triggers.
Features:
Three Customizable Lines:
Each line can be toggled on or off independently, allowing for a clutter-free chart.
Fully configurable settings for each line:
Date and Time: Specify the exact timestamp for the line placement.
Color: Choose any color to distinguish between the lines.
Line Width: Adjustable line thickness for better visibility.
Line Style: Options include solid, dashed, and dotted lines.
User-Friendly Inputs:
Intuitive input settings enable quick customization without needing to modify the script.
Simple checkboxes to control line visibility.
Clean and Efficient Design:
No labels or annotations clutter the chart.
The indicator ensures all lines are drawn precisely at the specified timestamps.
Lightweight and Optimized:
Designed to run efficiently without slowing down your chart, even with multiple lines.
Use Cases:
Mark Key Events: Highlight earnings dates, news events, or market open/close times.
Track Important Price Levels: Align lines with specific price action triggers for enhanced analysis.
Organize Trading Sessions: Define the start and end of trading sessions with visual markers.
Reminders for Strategy Execution: Use lines as visual reminders for executing trading strategies at predefined times.
How to Use:
Add the indicator to your chart.
Use the input panel to configure each line:
Toggle visibility with the checkbox.
Set the desired timestamp for each line.
Customize the color, style, and width.
Adjust your chart view to align with your analysis.
Compliance with TradingView Guidelines:
This indicator:
Does not include proprietary calculations or intellectual property from other indicators.
Avoids misleading titles or claims of guaranteed performance.
Does not use or reference any external data feeds or signals.
Focuses solely on providing charting tools for visual organization and analysis.
Disclaimer:
This tool is intended for informational purposes only and should not be considered financial advice. Always perform your due diligence and consult a financial advisor before making trading decisions.
US Recessions OverlayThe US Recessions Overlay indicator highlights the periods of US economic recessions directly on your TradingView chart. Using historical data from the Great Depression to the present, it provides a visual representation of recessions as transparent red backgrounds. This can help traders and analysts correlate market movements with historical economic downturns.
Features:
- Displays US recessions since the Great Depression (1929) as shaded areas.
- Automatically adjusts the background shading to match the date ranges of historical recessions.
- A simple and effective way to observe market behavior during recessionary periods.
- Fully customizable to include new recession periods or modify transparency levels.
How to Use:
Apply the indicator to any chart. Recession periods will appear as red-shaded backgrounds, providing a clear visual cue for market behavior during those times.
Use Case:
Ideal for traders, economists, and market historians who wish to study the impact of recessions on financial markets.
Multi Ticker Price TableTable showing the current price of up to 7 tickers
- Tickers are user choice
- Table background is customizable
- User has the choice to turn the Daily % column off
Relative PerformanceSimple relative performance of a token compared to BTC, with display of normalized performance velocity line.
skX_ALT_EMAs Enhanced [1H]An advanced EMA crossover system with dynamic ATR-based risk management, designed
for altcoin trading on the 1H timeframe. Combines trend following with momentum
and volume filters.
CORE COMPONENTS:
1. EMA System:
- 8 EMA (Fast): Primary signal line
- 21 EMA (Medium): Crossover reference
- 55 EMA (Slow): Trend filter
2. Multiple Filters:
- RSI (14): Prevents overbought/oversold entries
- Volume: Optional volume confirmation
- Trend Strength: EMA alignment check
3. Risk Management:
- Dynamic SL: Based on ATR (Average True Range)
- Dynamic TP: Risk:Reward based calculation
- Position entry markers
ENTRY CONDITIONS:
LONG:
- 8 EMA crosses above 21 EMA
- All EMAs aligned bullish (8 > 21 > 55)
- Price above 8 EMA
- RSI below 70 (not overbought)
- Optional: Volume > 1.5x average
SHORT:
- 8 EMA crosses below 21 EMA
- All EMAs aligned bearish (8 < 21 < 55)
- Price below 8 EMA
- RSI above 30 (not oversold)
- Optional: Volume > 1.5x average
RECOMMENDED SETTINGS:
- Timeframe: 1H
- ATR Period: 14
- ATR Multiplier: 1.5
- Risk:Reward: 2.0
- RSI Filter: ON
- Volume Filter: Optional (ON for low liquidity pairs)
VISUAL SIGNALS:
- Green Triangle: Long entry
- Red Triangle: Short entry
- Blue Line: Entry price
- Red Line: Stop Loss
- Green Line: Take Profit
- EMA Colors: Blue/Red for trend direction
EMA SCALPING SUITE v1.0 [1M-5M]EMA SCALPING SUITE v1.0
A scalping indicator designed for quick entries on lower timeframes, combining EMA
stacks with volume confirmation and automatic risk management levels.
CORE FEATURES:
1. EMA Stack System:
- 50 EMA (Blue): Fastest trend
- 100 EMA (Yellow): Entry trigger line
- 150 EMA (Orange): Stop loss reference
- 200 EMA (Red): Base trend
2. Entry System:
- LONG: When price dips to 100 EMA during bullish fan
- SHORT: When price rises to 100 EMA during bearish fan
- Signals shown as triangles at entry points
3. Risk Management:
- Auto Stop Loss: 150 EMA (red line)
- Auto Take Profit: Based on RR ratio (green line)
- Entry Price Marker: Current close (blue line)
4. Volume Confirmation:
- High volume dots (>1.5x average)
- Filters out weak signals
- Adjustable sensitivity
HOW IT WORKS:
1. Wait for EMAs to fan out (trend alignment)
2. Look for price to touch 100 EMA
3. Check for volume confirmation
4. Enter when signal appears
5. Use auto-generated SL and TP levels
BEST TIMEFRAMES:
- Primary: 1 minute
- Secondary: 3-5 minutes
- Not recommended: >15 minutes
RECOMMENDED SETTINGS:
- Volume Filter: ON
- Volume Multiplier: 1.5
- Risk:Reward: 1.5
SIM Trend Strength OscillatorTrend Strength Oscillator
The UNIQUE Trend Strength Oscillator is a non-overlayed indicator designed to help traders identify the strength and direction of market trends. This indicator uses Average True Range (ATR) bands to determine trend conditions and provides a visual representation of trend strength through a smoothed oscillator line.
Add the indicator to favorites for easy access
Key Features:
ATR Bands: Utilizes ATR bands to define trend conditions, with options to use either EMA or SMA for smoothing.
Trend Conditions: Identifies moderate and strong uptrends and downtrends, as well as sideways movements.
Trend Strength Calculation: Assigns normalized trend strength values based on the identified trend conditions.
Smoothing: Smoothes the trend strength values over a specified number of confirmation candles to provide a clearer trend signal.
Visualization: Displays the trend strength as a colored oscillator line and background, making it easy to interpret trend strength and direction at a glance.
Inputs:
Use EMA for ATR: Toggle to use EMA instead of SMA for ATR bands.
ATR Period: Period for ATR calculation.
ATR Mean Length: Length for the SMA of ATR.
Trend Confirmation Candles: Number of candles for trend confirmation.
Usage:
Trend Identification: Use the oscillator to identify the strength and direction of the current trend.
Trend Confirmation: Ensure that the trend condition has been true for the specified number of confirmation candles for more reliable signals.
Visual Cues: The colored oscillator line and background provide quick visual cues for trend strength and direction.
The Trend Strength Oscillator is a valuable tool for traders looking to gain insights into market trends and make more informed trading decisions.
Buy me a Coffee (ETH): 0x34539E9D183B427DC14376158C8Fa9f619B03eEa
Stochastic Oscillator-Time & Frequency StatsThe Stochastic Oscillator Time & Frequency Statistics indicator is a tool designed to enhance your trading decisions by combining the traditional Stochastic Oscillator with additional metrics and visual aids. Although the Stochastic Oscillator is typically used to indicate trend direction and overbought/oversold conditions, the %K and %D lines can cross over and under multiple times while in the critical zones. The statistics added to this indicator allow traders to assess the probability of multiple crossover signals occurring on an asset or within various time frames. Signal levels and definitions of critical zones can be adjusted while the statistics are automatically updated to the relevant ticker, time frame and thresholds. Visual preferences such as colors and signal shapes can also be customized.
The Stochastic Oscillator is a commonly used momentum indicator developed by George Lane. It measures the position of the current closing price relative to the asset's recent high-low range over a set period. This advanced version calculates various probability and frequency statistics to better understand the oscillator’s behaviour and guide our strategies and risk management. Some key questions that this indicator intends to address are:
How long does the average momentum last in a trend?; How long does the oscillator remain in the critical zones?; How many times could one expect crossovers/unders' to occur in critical zones before momentum changes?; And, at what price does the candle need to close for the k & d lines to cross and signal a momentum shift?
Statistics & Probabilities:
The indicator calculates important time and frequency-based metrics that provide deeper insight into the behavior of the Stochastic Oscillator. These are displayed in a text box on the indicator panel, including:
Avg Long: The average number of bars between the last long signal before exiting the critical oversold zone and the next short signal in the overbought critical zone, including the standard deviation and the sample size within the relevant time frame.
Avg Short: The average number of bars between the last short signal in the overbought critical zone and the next long signal in the oversold critical zone, including the standard deviation and the sample size within the relevant time frame.
Time in Oversold: The average time (in bars/candle sticks) that the Stochastic Oscillator's %K & %D lines both spend in the oversold region (below the buy signal level) after entering and before departing the oversold region, along with the standard deviation.
Time in Overbought: The average time (in bars/candle sticks) that the Stochastic Oscillator's %K & %D lines both spend in the overbought region (above the sell signal level), after entering and before departing the overbought region, along with the standard deviation.
Signal Frequency: It calculates the percentage of long or short signals that occur consecutively within the critical zone before the opposing signal occurs (e.g., 1Long: 40.54%, 2 Long: 28.55%, 3Long: 17.4%, >3 Long: 13.51%, 1Short: 36.15%, 2Short: 30.41%, 3Short: 17.57%, >3Short: 15.88%). This is calculated for 1 through 6 consecutive occurrences and summarised for more than 6 consecutive signals
Key Features:
Oversold: Typically When the Stochastic Oscillator is below 20, it indicates that the asset may be oversold, potentially signalling a buying opportunity. The threshold for "overbought" and "oversold" extreme regions can be adjusted
Overbought: When the Stochastic Oscillator is above 80, it suggests the asset may be overbought, and a downturn might be near.
Stochastic Slope: The slope of the Stochastic Oscillator indicates the prominent trend direction within the selected time period.
Customizable Buy/Sell Signal Levels: The indicator allows customizable levels for detecting oversold (typically below 20-25) and overbought (typically above 75-80) conditions, helping one spot potential reversal zones for initiating long or short trades.
Crossover Alerts: The indicator tracks crossovers between the %K and %D lines, generating:
Long signals: When a crossover occurs below the buy signal level (indicating oversold conditions).
Short signals: when a crossunder occurs above the sell signal level (indicating overbought conditions).
The signals are visualized as labels on the chart:
- **L** for potential long (buy) signals: Marked below the bars when the %K line crosses above the %D line.
- **S** for potential short (sell) signals: Marked above the bars when the %K line crosses below the %D line.
Disclaimers:
No Guarantees: The indicator is provided "as-is" without any warranties or guarantees of accuracy, completeness, or fitness for a particular purpose. The outcomes or performance of trades executed using this indicator are not guaranteed to be successful or profitable.
User Responsibility: You are solely responsible for any trading decisions you make based on the use of this indicator. All trading and investment activities involve risk, and it is essential to conduct your own research, analysis, and due diligence before making any financial decisions.
No Liability: The creator of this indicator is not responsible for any financial losses, direct or indirect, incurred as a result of using this indicator. This includes, but is not limited to, loss of profits, loss of capital, or any other negative financial outcomes.
Market Risks: Markets are volatile, and prices may fluctuate significantly. Trading and investing carry inherent risks, and there is always the potential for loss. You should only trade with capital that you can afford to lose.
Independent Advice: This indicator and the content generated by its creator does not constitute financial advice and is for entertainment purposes only. It is strongly recommended that you seek independent financial advice from a qualified and licensed professional before making any trading or investment decisions based on the use of this indicator.
By using this indicator, you acknowledge that you fully understand and accept the risks involved, and you agree to indemnify and hold harmless the creator of this indicator from any claims, damages, or liabilities arising from its use.
The author of this script has made every effort to ensure that the code is an original interpretation and application of the open-source **Stochastic Oscillator**, as developed by George Lane. The script reflects a unique adaptation aimed at enhancing trading strategies through advanced statistical analysis and trade management features. The author does not claim any proprietary rights over the foundational concepts of the **Stochastic Oscillator** and does not intend to infringe upon any existing copyrights. Should any copyright infringement be identified, the author commits to removing the indicator immediately and forfeits any rights to further or intended financial gain from its use.
Wyckoff Detector - BidWhalesWyckoff Detector - BidWhales
Description:
I was searching for a powerful Wyckoff indicator on TradingView but couldn’t find one that met my standards. So, I built the Wyckoff Detector - BidWhales, a tool designed to detect live Wyckoff phases and provide visual cues for traders.
---
What is it?
The Wyckoff Detector identifies and visualizes Wyckoff Accumulation and Distribution phases, helping traders spot key turning points in the market. This indicator assists with recognizing essential Wyckoff components like:
- Accumulation (Bullish):
- Selling Climax (SC)
- Automatic Rally (AR)
- Spring
- Sign of Strength (SOS)
- Distribution (Bearish):
- Buying Climax (BC)
- Automatic Reaction (AR)
- Upthrust (UT)
- Sign of Weakness (SOW)
The script is programmed to display these key phases on your chart with labels, dashed lines, and confirmations based on price action and volume.
---
Features:
1. Customizable Inputs:
- Swing Length: Determines the range for detecting climaxes and turning points.
- Volume Climax Multiplier: Adjusts the sensitivity of volume spikes for phase confirmation.
- Error Threshold (%): Controls the margin for phase detection accuracy.
- Minimum Delay Bars: Ensures phases occur with sufficient spacing for reliability.
- Wick Rejection Ratio: Confirms validity of springs and upthrusts with wick-to-body analysis.
2. Automated Phase Detection:
- Dynamically identifies Wyckoff components like SC, AR, Spring, SOS, BC, AR, UT, and SOW.
- Provides labels and horizontal lines to track phases visually.
3. Failure Logic:
- Phases invalidate upon predefined conditions:
- Close below Spring wick for bullish failure.
- Close above Upthrust wick for bearish failure.
- Time-based expiration (Max Bars Back) for stale patterns.
4. Volume Confirmation:
- Volume spikes (climax) are analyzed relative to a moving average, ensuring more accurate phase detection.
5. Clean Visuals:
- Labels and lines are plotted clearly on the chart, helping traders recognize patterns without clutter.
---
How to Use:
1. Add the indicator to your chart.
2. Adjust parameters like Swing Length and Volume Multiplier to suit your timeframe and trading style.
3. Look for Accumulation phases for potential bullish signals and Distribution phases for bearish signals.
4. Use the displayed labels and lines (SC, AR, Spring, etc.) to confirm Wyckoff patterns.
---
Disclaimer:
This indicator is a tool for educational purposes only. It is not financial advice. Always conduct your own analysis before making trading decisions.
---
Script License:
This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at (mozilla.org).
© ProfitSync
Options Betting Range - Extended# Options Betting Range - Extended
**Options Betting Range - Extended** is a versatile TradingView indicator designed to assist traders in identifying and visualizing optimal options trading ranges for multiple symbols. By leveraging predefined prediction and execution dates along with specific high and low price points, this indicator dynamically draws trendlines to highlight potential options betting zones, enhancing your trading strategy and decision-making process.
## **Key Features**
- **Multi-Symbol Support:** Automatically adapts to popular symbols such as SPY, IWM, QQQ, DIA, TLT, and GOOG, providing tailored options betting ranges for each.
- **Dynamic Trendlines:** Draws both dashed and solid trendlines based on user-defined prediction and execution dates, clearly marking high and low price boundaries.
- **Customizable Parameters:** Easily configure prediction and execution dates, high and low prices, and timezones to suit your specific trading requirements.
- **Single Execution:** Ensures that each trendline is drawn only once per specified prediction date, preventing clutter and maintaining chart clarity.
- **Clear Visual Indicators:** Utilizes color-coded labels to denote high (green) and low (red) price points, making it easy to identify critical trading levels at a glance.
## **How It Works**
1. **Initialization:**
- Upon adding the indicator to your chart, it initializes with predefined symbols and their corresponding high and low price points for two trendlines each.
2. **Configuration:**
- **Trendline 1:**
- **Prediction Date:** Set the year, month, and day when the trendline should be predicted.
- **Execution Date:** Define the year, month, and day when the trendline will be executed.
- **Timezone:** Choose the appropriate timezone to ensure accurate date matching.
- **Trendline 2:**
- Similarly, configure the prediction and execution dates along with the timezone.
3. **Trendline Drawing:**
- On reaching the specified prediction date, the indicator draws dashed trendlines representing the high and low price ranges.
- Solid trendlines are then drawn to solidify the high and low price boundaries.
- Labels are added to clearly mark the high and low price points on the chart.
4. **Visualization:**
- The trendlines and labels provide a visual framework for potential options trading ranges, allowing traders to make informed decisions based on these predefined levels.
## **How to Use**
1. **Add the Indicator:**
- Open your TradingView chart and apply the **Options Betting Range - Extended** indicator.
2. **Select a Symbol:**
- Ensure that the chart is set to one of the supported symbols (e.g., SPY, IWM, QQQ, DIA, TLT, GOOG) to activate the corresponding trendline configurations.
3. **Configure Trendline Parameters:**
- Access the indicator settings to input your desired prediction and execution dates, high and low prices, and select the appropriate timezone for each trendline.
4. **Monitor Trendlines:**
- As the chart progresses to the specified prediction dates, observe the dynamically drawn trendlines and labels indicating the options betting ranges.
5. **Make Informed Trades:**
- Utilize the visual cues provided by the trendlines to identify optimal entry and exit points for your options trading strategies.
## **Benefits**
- **Enhanced Strategy Visualization:** Clearly outlines potential trading ranges, aiding in the formulation and execution of precise options strategies.
- **Time-Saving Automation:** Automatically draws trendlines based on your configurations, reducing the need for manual chart analysis.
- **Improved Decision-Making:** Provides objective price levels for trading, minimizing emotional bias and enhancing analytical precision.
## **Important Considerations**
- **Timezone Accuracy:** Ensure that the timezones selected in the indicator settings align with your chart's timezone to maintain accurate date matching.
- **Chart Timeframe:** The prediction dates should correspond to the timeframe of your chart (e.g., daily, hourly) to ensure that trendlines are triggered correctly.
- **Visible Price Range:** Verify that the high and low prices set for trendlines are within the visible range of your chart to ensure that all trendlines and labels are clearly visible.
## **Conclusion**
**Options Betting Range - Extended** is a powerful tool for traders seeking to automate and visualize their options trading ranges across multiple symbols. By providing clear, customizable trendlines based on specific prediction and execution dates, this indicator enhances your ability to identify and act upon strategic trading opportunities with confidence.
---
Crypto Sectors Performance [Daveatt]IMPORTANT
⚠️ This script must be used on the Daily timeframe only.
OVERVIEW
This indicator brings the powerful sector analysis capabilities from velo.xyz/market's
Sector Performance chart to TradingView.
It enables traders to track and compare performance across the crypto market's major sectors, providing essential insights for sector rotation strategies and market analysis.
CALCULATION METHOD
The indicator calculates performance across six key crypto sectors: DeFi, Gaming, Layer 1s, Layer 2s, AI, and Memecoins.
For each sector, it computes a rolling percentage performance by averaging the performance of multiple representative tokens.
All sector performances are rebased to 0% at the start of each period, making relative comparisons clear and intuitive.
VISUALIZATION MODES
The script features two distinct visualization methods:
Plots Mode:
Displays continuous performance lines for each sector over time, ideal for tracking relative strength trends and sector momentum. Each sector has its own color-coded line with performance values clearly marked.
Bars Mode:
Presents current sector performance as vertical bars, offering an immediate visual comparison of sector gains and losses.
The bars are color-coded and labeled with exact percentage values for precise analysis.
For the "Bars Mode", I used the box.new() function
SECTOR COMPOSITION
Each sector comprises carefully selected representative tokens:
- DeFi: AAVE, 1INCH, JUP, MKR, UNI
- Gaming: GALA, AXS, RONIN, SAND
- Layer 1: BTC, ETH, AVAX, APT, SOL, BNB, SUI
- Layer 2: ARB, OP, ZK, POL, STRK, MNT
- AI: FET, NEAR, RENDER, TAO
- Memecoins: PEPE, BONK, SHIB, DOGE, WIFU, POPCAT
PERFORMANCE TRACKING
The indicator implements a rolling window approach for performance calculations.
Starting from 0% at the beginning of each period, it tracks relative performance with positive values indicating outperformance and negative values showing underperformance.
Multiple timeframe options (1W, 1M, 3M, 6M, and 1Y) allow for both short-term and long-term analysis.
APPLICATIONS
This tool proves invaluable for:
- Sector rotation analysis
- Identifying trending sectors
- Comparing relative strength
- Gauging market sentiment
- Understanding market structure through sector performance
Thanks for reading and for the support
Daveatt
Rolling VWAP with Optional Kalman FilterThis script provides an advanced and customizable Rolling VWAP (Volume-Weighted Average Price) indicator, designed for traders who want to refine their trend analysis and improve decision-making. With a unique option to apply a Kalman Filter, you can smooth out VWAP values to reduce noise in volatile markets, making it easier to identify actionable trends.
Key Features:
Dynamic Rolling VWAP:
Choose the rolling window size (number of bars) to match your trading style, whether you’re an intraday scalper or a swing trader.
Kalman Filter Toggle:
Enable the Kalman filter to smooth VWAP values and eliminate market noise.
Adjustable Kalman Gain to control the level of smoothing, making it suitable for both fast and slow markets.
Price Source Flexibility:
Use the Typical Price ((H+L+C)/3) or the Close Price as the basis for VWAP calculation.
Visual Enhancements:
Background shading highlights whether the price is above (bullish) or below (bearish) the VWAP, helping traders make quick visual assessments.
A legend dynamically updates the current VWAP value.
Dual View Option:
Compare the raw Rolling VWAP and the Kalman-filtered VWAP when the filter is enabled, giving you deeper insight into market trends.
Use Cases:
Intraday Traders: Identify key price levels for re-entry or exits using a short rolling window and responsive filtering.
Swing Traders: Analyze broader trends with a longer rolling window and smoother VWAP output.
Volatile Markets: Use the Kalman filter to reduce noise and avoid false signals during high market volatility.
How to Use:
Adjust the Rolling Window to set the number of bars for VWAP calculation.
Toggle Kalman Filter on/off depending on your preference for raw or smoothed VWAP values.
Fine-tune the Kalman Gain for the desired level of smoothing.
Use the shading to quickly assess whether the price is trading above or below the VWAP for potential entry/exit signals.
Holding VolumeThe Holding Volume indicator calculates and visualizes the volume that corresponds specifically to the body of each candle, excluding the wicks (the upper and lower shadows of the candle).
This indicator can help traders better understand the strength of price movement during the trading session, as it isolates the volume that occurs when the price is moving within the body of the candle (between the open and close prices).
Key Features:
Volume Calculation: The indicator calculates the holding volume by taking the ratio of the candle's body range to its total range (including the wicks), and then multiplies that by the total volume of the candle.
Main Chart Display: The indicator is designed to be overlaid on the main chart, displaying the holding volume in a style similar to the default volume indicator.
Customizable Label Color: Customize the text color of the volume labels displayed on each candle.
Volume as Columns: The holding volume is shown as columns at the bottom of the chart, similar to the default volume display, for easy comparison and analysis.
How It Helps:
By focusing on the volume within the candle body, this indicator helps you see where the actual price movement and market participation occurred.
It can be useful for identifying candles with strong momentum or distinguishing between significant price movements and those driven by minor fluctuations or wicks.
Ideal Use Case:
Day traders, swing traders, and volume-focused traders can use this indicator to identify trends and analyze the strength of price moves.
This indicator is particularly useful when combined with other technical analysis tools to validate breakouts or reversals, based on the volume within the body of the candles.
Instructions:
No additional setup required: Simply add the indicator to your chart, and it will automatically display the holding volume on the main chart.
Adjust the label text color via the settings to match your chart's theme.
Alerts and symbolswhat is "Alerts and symbols"?
It is an indicator that allows you to watch more trading pairs and add alarms to them.
what it does?
It allows you to set a total of 20 different intersection alarms, 2 in each pair, for 10 different trading pairs at the same time.
It draws the candlestick chart of a pair you choose among 10 trading pairs and the alarm lines you created for this trading pair on the chart.
It also allows you to see the prices of 10 different trading pairs at the same time, thanks to the table it creates.
how to use it?
First, select the alarm pairs you want to use, for example, BTCUSDT pair is the default value for "pair 1". You can choose 10 different trading pairs as you wish. Just below each trading pair, there are two different sections titled "line 1" and "line 2" so that you can set an alarm. Type here the price levels at which you want to be alerted in case of a price crossover.
You can use the "candle source" section to examine the candlestick charts of trading pairs. The indicator draws the candle chart of the trading pair selected in the "candle source" section.
Check the "show alert lines on chart" box to see the levels you have set an alarm for.
When everything is ready, first click on the three dots next to the indicator's name and then on the clock icon. then create an alarm and that's it.
Coinbase Premium DivergenceCoinbase Spot premium indicator
Includes divergence where the premium is decreasing and price is increasing (and vice-versa); orange bear div, blue bull div.
Confluence = Green bull / Red bear
Use to identify warnings
Probably best to use on 15 /30 min
Applies only to current conditions in the bitcoin market.
For use on BTCUSD only.
Dynamic Fibonacci Retracement 3d / TradingArt3dDynamic Fibonacci Retracement - TradingArt3d.
The Dynamic Fibonacci Retracement is an advanced indicator based on the classic Fibonacci concept, adapted to the dynamic movements of the market. Unlike traditional retracements that remain static, this indicator adjusts Fibonacci levels based on the most relevant moving averages for each market condition, providing more accurate support and resistance levels.
Key Features:
• Fibonacci Moving Averages: Choose Fibonacci moving averages ranging from 1 to 4181.
• Dynamic Recursiveness: Automatically adjusts moving averages through a dynamic algorithm to identify the most representative support and resistance levels on the chart.
• Full Customization: Modify the colors, thickness, and resolution of moving average lines to suit your preferences.
• Mamut Wave Viewer: Intuitive RSI-based visualization to support decision-making in your analysis.
• Visualization Optimization: Options to enhance visualization, including enabling or disabling even or odd recursive moving averages.
Usage Tips:
• Use multiple instances of the indicator to overlay different moving average configurations, obtaining a more precise representation of Fibonacci levels.
• Experiment with different combinations of colors and resolutions to tailor the visualization to your analytical needs.
Archiving Your Analysis:
To preserve your technical analysis and keep a record of your configurations, follow these steps to archive them in TradingView:
1. Adjust the chart and indicator settings as desired.
2. Set your browser zoom to 25% to achieve the best possible resolution and maximize CPU efficiency.
3. Click the "capture image" icon at the top of the screen, or use the keyboard shortcut Alt + Ctrl + S (on PC) or Option + Command + S (on Mac).
4. Save the analysis image in your TradingArt Library for future reference or to share with others.
This functionality allows you to maintain a visual record of your analyses and track your strategies more effectively over time.
Support and Questions:
If you have any questions about using the indicator, feel free to leave a comment in the Comments section of this post or contact me through my TradingView profile. I’ll be happy to help resolve any issues and provide further details about its functionality
Square Numbers Horizontal LinesTrading with square numbers is a unique approach to technical analysis, where square numbers (1, 4, 9, 16, 25, etc.) are used to guide the identification of potential levels of support, resistance, and price targets. These numbers are often considered in a more mathematical or geometric context, and they can be applied in trading strategies, chart patterns, and psychological market analysis.