Unusual Whale - Unusual Options Volume Data ScreenerHow to Use:
Custom Expiration Date: Use the calendar/date picker to select the expiration date. The chosen date is automatically converted to the "YYMMDD" format.
Custom Base Strike: Enter a round strike value from the options chain (for example, "270"). This value serves as the starting point (at-the-money) for the scan.
Strike Increment: Select the increment (e.g., 0.50, 1.00, 2.5, 5, or 10) to determine how the scan moves outward from the custom base strike.
Options per Side (Max 20): Choose the number of valid option strikes to scan on each side. The script scans downward (for calls) and upward (for puts) from the custom base strike.
Base Symbol: The base symbol is always taken from the chart (using syminfo.ticker); no manual entry is needed.
Scanning & Aggregation: The script automatically constructs option symbols using the base symbol, custom expiration date, option type (C or P), and the formatted strike. It retrieves volume data for these options and aggregates the cumulative volume for calls and puts separately.
Plotting: Cumulative call volume is plotted in green, and cumulative put volume is plotted in red—only if the required number of valid options is found.
Benefits of Scanning Options Volume for Unusual Activity:
Offers a comprehensive view of volume across multiple strikes, making unusual or extreme volume patterns easier to detect.
Helps gauge market sentiment by comparing aggregated call and put volumes, which may signal shifts in investor behavior.
Aggregating volume from several strike levels provides smoother, more reliable data than using a single strike, enhancing your analytical insights.
What to Do If Combinations Don't Yield Results:
Verify Your Inputs: Ensure that the Custom Base Symbol, Expiration Date, and Custom Base Strike are entered correctly and correspond to an active options chain.
Adjust Strike Increment: If the options aren’t loading as expected, try selecting a different strike increment that more closely matches the spacing in your options chain.
Reduce Options per Side: Lower the number of Options per Side (e.g., from 20 to a lower value) if the scan fails to find enough valid strikes.
Review Your Options Chain: Confirm that the contracts for the specified expiration and strike range exist and are available in your data feed.
Check Data Subscription: Make sure your TradingView plan includes access to the options data required for the selected symbols.
Cumulative Call Volume is Green, Put Volume is Red
المؤشرات والاستراتيجيات
Enhanced Bollinger Bands (EBB) + Dyn. Fun# Enhanced Bollinger Bands (EBB) + Dynamic Fun Character for TradingView
**Author:** Gemini AI (Conceptualized by a Senior SWE/FinAnalyst Persona)
**Date:** 2025-04-09
**Version:** 1.4
## Overview
This TradingView Pine Script indicator provides a significantly enhanced version of the standard Bollinger Bands (BB) combined with a fun, dynamic character element for at-a-glance visualization of the current price action.
It offers greater flexibility in calculating the Bollinger Bands by allowing user selection of the Moving Average type and price source. Additionally, it includes visual aids like volatility squeeze highlighting, band filling, and band cross labels, along with configurable alerts.
The unique "Dynamic Fun Character" feature displays an emoji next to the current real-time candle, changing its expression based on the candle's direction (up, down, or neutral), providing an intuitive visual cue for market sentiment on the very latest bar.
## Core Concepts
* **Bollinger Bands (BB):** A volatility indicator consisting of:
* **Basis Line:** A moving average (SMA, EMA, etc.) representing the middle price range.
* **Upper Band:** Basis Line + (Standard Deviations * Multiplier).
* **Lower Band:** Basis Line - (Standard Deviations * Multiplier).
* The bands widen during high volatility and narrow ("squeeze") during low volatility. Price tends to stay within the bands most of the time.
* **Average True Range (ATR):** A measure of market volatility. Used in this script to dynamically position the character label vertically and to determine the threshold for a "neutral" candle.
## Features
### Enhanced Bollinger Bands
1. **Selectable Moving Average Type:** Choose the MA type for the Basis Line:
* `SMA` (Simple Moving Average - Default)
* `EMA` (Exponential Moving Average - More weight to recent prices)
* `WMA` (Weighted Moving Average - Linear weight to recent prices)
* `HMA` (Hull Moving Average - Aims for less lag, smoother)
* `VWMA` (Volume Weighted Moving Average - Weights price by volume)
2. **Selectable Price Source:** Calculate bands based on various price points:
* `close` (Default)
* `high`, `low`, `open`
* `hl2` ( (high + low) / 2 )
* `hlc3` ( (high + low + close) / 3 )
* `ohlc4` ( (open + high + low + close) / 4 )
3. **Volatility Squeeze Highlight:** Automatically highlights the chart background (default: gray) when bandwidth (relative width of the bands) reaches a low point over a user-defined lookback period. Squeezes often precede significant price moves.
4. **Band Fill:** Optionally fills the area between the upper and lower bands with a semi-transparent color for better visualization of the volatility channel.
5. **Band Cross Labels:** Displays small triangles (▲ for up-cross, ▼ for down-cross) when the price closes outside the upper or lower band, highlighting potential breakout or reversal signals.
6. **Band Cross Alerts:** Configurable TradingView alerts can be triggered when the price crosses above the upper band or below the lower band.
7. **Bandwidth & %B Calculations:** The script calculates Bandwidth (`(Upper - Lower) / Basis`) and %B (`(Price - Lower) / (Upper - Lower)`) internally. While not plotted separately, these values are used for features like the squeeze detection and could potentially be used for strategy development.
### Dynamic Fun Character
1. **Sentiment Visualization:** Displays an emoji character next to the **current, real-time candle only**.
2. **Dynamic Expression:** The emoji changes based on the candle's formation:
* **😀 (Happy):** Candle is Green (`close > open`).
* **😞 (Sad):** Candle is Red (`close < open`).
* **😑 (Neutral):** Candle body (`abs(close - open)`) is very small compared to the Average True Range (ATR). Indicates low momentum or indecision for that specific bar.
3. **Adaptive Neutral Threshold:** The threshold for displaying the neutral face (😑) is based on a user-defined fraction of the current ATR, making it adaptive to market volatility.
4. **Customizable Appearance:**
* Position (X/Y Offset from the current candle).
* Size (Tiny, Small, Normal, Large, Huge - Default: Huge).
* Background Color (Default: Black).
* Text/Emoji Color (Default: White).
5. **Dynamic Tooltip:** Hovering over the character provides a simple text description of the current candle state ("Moving Up!", "Moving Down!", "Not much action.").
## How to Use / Interpretation
* **Volatility:** Watch the **band width**. Narrowing bands (especially with **Squeeze Highlights**) indicate consolidation and potential energy buildup for a larger move. Widening bands show increased volatility.
* **Trend Following:** In strong trends, prices may "walk the band" (consistently touch or slightly exceed the upper/lower band). The **Basis Line** often acts as dynamic support/resistance.
* **Mean Reversion Signals:** Price touching an outer band *without* extreme volatility *might* suggest an overbought/oversold state, potentially leading to a move back towards the **Basis Line**. Confirm with other factors.
* **Breakouts/Reversals:** Price closing outside the bands (indicated by **Cross Labels** and potentially **Alerts**), especially after a **Squeeze**, can signal the start of a new move. Look for confirmation (e.g., volume).
* **Dynamic Character:** Use the character for a quick visual check of the **current real-time candle's sentiment**. Is the latest price action bullish (😀), bearish (😞), or indecisive (😑)?
* **Context is Key:** **Never** rely on this indicator alone. Combine its signals with price action analysis, chart patterns, volume, other indicators (RSI, MACD, etc.), and robust risk management strategies.
## How to Add to TradingView
1. Open your TradingView chart.
2. Click on the "Pine Editor" tab at the bottom panel.
3. Copy the entire script code (`.pine` file content).
4. Paste the code into the Pine Editor, replacing any existing content.
5. Click "Add to Chart".
6. Adjust parameters via the indicator's "Settings" cog icon if needed.
## Input Parameters
Parameters can be adjusted in the indicator settings window.
### Moving Average Settings
* **Price Source:** (`srcInput`, Default: `close`) - Selects the price data source for all calculations.
* **BB Length:** (`lenInput`, Default: `20`) - Lookback period for MA and Standard Deviation.
* **MA Type:** (`maTypeInput`, Default: `SMA`) - Type of Moving Average for the Basis Line.
* **StdDev Multiplier:** (`multInput`, Default: `2.0`) - Multiplier for the Standard Deviation to set band width.
### Visual Settings
* **Show Band Fill:** (`showFillInput`, Default: `true`) - Toggles the color fill between bands.
* **Fill Color:** (`fillColorInput`, Default: `Blue, 85% transparency`) - Color for the band fill.
* **Upper Band:** (`upperColorInput`, Default: `Teal`) - Color of the upper band line.
* **Basis Line:** (`basisColorInput`, Default: `Orange`) - Color of the middle basis line.
* **Lower Band:** (`lowerColorInput`, Default: `Teal`) - Color of the lower band line.
### Volatility Squeeze Settings
* **Highlight Squeezes:** (`showSqueezeInput`, Default: `true`) - Toggles the background highlight during squeezes.
* **Squeeze Lookback:** (`squeezeLookbackInput`, Default: `50`) - How many bars back to check for the lowest bandwidth to define a squeeze.
* **Squeeze Color:** (`squeezeColorInput`, Default: `Gray, 80% transparency`) - Background color during a squeeze.
### On-Chart Labels
* **Show Band Cross Labels:** (`showLabelsInput`, Default: `true`) - Toggles the ▲/▼ labels on band crosses.
* **Label Size:** (`labelSizeInput`, Default: `Small`) - Size of the ▲/▼ cross labels.
* **Up-Cross Label Color:** (`upCrossColorInput`, Default: `Green`) - Color for the ▲ label.
* **Down-Cross Label Color:** (`dnCrossColorInput`, Default: `Red`) - Color for the ▼ label.
### Alert Settings
* **Alert on Upper Band Cross:** (`alertCrossUpperInput`, Default: `false`) - Enable condition for alerts when price crosses above the upper band.
* **Alert on Lower Band Cross:** (`alertCrossLowerInput`, Default: `false`) - Enable condition for alerts when price crosses below the lower band.
### Fun Character Settings
* **Show Dynamic Character:** (`showCartoonInput`, Default: `true`) - Toggles the dynamic emoji character on/off.
* **Neutral Threshold (ATR Fraction):** (`littleMoveThresholdInput`, Default: `0.15`) - If candle body size < (this fraction * ATR), show Neutral face (😑).
* **Character X Offset (Bars):** (`cartoonXOffsetInput`, Default: `2`) - Horizontal offset (in bars) from the current candle.
* **Character Y Offset (ATR):** (`cartoonYOffsetMultInput`, Default: `0.5`) - Vertical offset (as a multiple of ATR) from the current candle's high.
* **Character Size:** (`cartoonSizeInput`, Default: `Huge`) - Size of the emoji character.
* **Character BG Color:** (`cartoonColorInput`, Default: `Black`) - Background color of the character label.
* **Character Text Color:** (`cartoonTextColorInput`, Default: `White`) - Color of the emoji text itself.
## Changelog
* **v1.4 (2025-04-09):** Replaced blinking character logic with dynamic face based on candle movement (Up 😀 / Down 😞 / Neutral 😑). Added ATR-based threshold input for neutral state.
* **v1.3 (2025-04-09):** Increased default character size to `size.huge`.
* **v1.2 (2025-04-09):** Changed default character background color to black and text color to white for better contrast.
* **v1.1 (2025-04-09):** Added optional blinking cartoon character next to the current candle.
* **v1.0 (2025-04-09):** Initial release - Enhanced Bollinger Bands with selectable MA/Source, squeeze highlighting, band fill, cross labels, and alerts.
## Disclaimer
This indicator is provided for informational and educational purposes only. It does not constitute financial advice or a recommendation to buy or sell any asset. Trading financial markets involves significant risk, and you could lose your capital. Always perform your own due diligence and consult with a qualified financial advisor before making any trading decisions. Past performance is not indicative of future results. The author is not responsible for any trading losses incurred using this indicator.
Aggressive Predictor+ (Last Bar, Vol, Wick)# Aggressive Predictor+ Pine Script Indicator
**Version:** Based on the script incorporating Last Bar analysis, Volume Confirmation, and Wick Rejection.
## Overview
This TradingView Pine Script indicator aims to predict the likely directional bias of the **next** candle based on an aggressive analysis of the **last closed candle's** price action, volume, and wick characteristics relative to recent market volatility (ATR).
It is designed to be **highly reactive** to the most recent bar's information. The prediction is visualized directly on the chart through shapes, a projected line, a text label, and an information table.
**Please Note:** Predicting the next candle is inherently speculative. This indicator provides a probability assessment based on its specific logic and should be used as a supplementary tool within a broader trading strategy, not as a standalone signal. Its performance heavily depends on market conditions and the chosen settings.
## Core Logic Explained
The indicator follows these steps for each new bar, looking back at the **last closed bar** (` `):
1. **Calculate Recent Volatility:** Determines the Average True Range (ATR) over the specified `ATR Lookback Period` (`atr_len`). This provides context for how volatile the market has been recently.
2. **Analyze Last Bar's Body:** Calculates the price change from open to close (`close - open `) of the last completed bar.
3. **Compare Body to Volatility:** Compares the absolute size of the last bar's body to the calculated ATR (`prev_atr`) multiplied by a sensitivity threshold (`threshold_atr_mult`).
* If the body size (positive) exceeds the threshold, the initial prediction is "Upward".
* If the body size (negative) exceeds the negative threshold, the initial prediction is "Downward".
* Otherwise, the initial prediction is "Neutral".
4. **Check Volume Confirmation:** Compares the volume of the last bar (`volume `) to its recent average volume (`ta.sma(volume, vol_avg_len) `). If the volume is significantly higher (based on `vol_confirm_mult`), it adds context ("High Vol") to directional predictions.
5. **Check for Wick Rejection:** Analyzes the wicks of the last bar.
* If the initial prediction was "Upward" but there was a large upper wick (relative to the body size, defined by `wick_rejection_mult`), it indicates potential selling pressure rejecting higher prices. The prediction is **overridden to "Neutral"**.
* If the initial prediction was "Downward" but there was a large lower wick, it indicates potential buying pressure supporting lower prices. The prediction is **overridden to "Neutral"**.
6. **Determine Final Prediction:** The final state ("Upward", "Downward", or "Neutral") is determined after considering potential wick rejection overrides. Context about volume or wick rejection is added to the display text.
## Visual Elements
* **Prediction Shapes:**
* Green Up Triangle: Below the bar for an "Upward" prediction (without wick rejection).
* Red Down Triangle: Above the bar for a "Downward" prediction (without wick rejection).
* Gray Diamond: Above/Below the bar if a directional move was predicted but then neutralized due to Wick Rejection.
* **Prediction Line:**
* Extends forward from the current bar's close for `line_length` bars (Default: 20).
* Color indicates the final predicted state (Green: Upward, Red: Downward, Gray: Neutral).
* Style is solid for directional predictions, dotted for Neutral.
* The *slope/magnitude* of the line is based on recent volatility (ATR) and the `projection_mult` setting, representing a *potential* magnitude if the predicted direction holds, scaled by recent volatility. **This is purely a visual projection, not a precise price forecast.**
* **Prediction Label:**
* Appears at the end of the Prediction Line.
* Displays the final prediction state (e.g., "Upward (High Vol)", "Neutral (Wick Rej)").
* Shows the raw price change of the last bar's body and its size relative to ATR (e.g., "Last Body: 1.50 (120.5% ATR)").
* Tooltip provides more detailed calculation info.
* **Info Table:**
* Displays the prediction state, color-coded.
* Shows details about the last bar's body size relative to ATR.
* Dynamically positioned near the latest bar (offsets configurable).
## Configuration Settings (Inputs)
These settings allow you to customize the indicator's behavior and appearance. Access them by clicking the "Settings" gear icon on the indicator name on your chart.
### Price Action & ATR
* **`ATR Lookback Period` (`atr_len`):**
* *Default:* 14
* *Purpose:* Number of bars used to calculate the Average True Range (ATR), which measures recent volatility.
* **`Body Threshold (ATR Multiplier)` (`threshold_atr_mult`):**
* *Default:* 0.5
* *Purpose:* Key setting for **aggression**. The last bar's body size (`close - open`) must be greater than `ATR * this_multiplier` to be initially classified as "Upward" or "Downward".
* *Effect:* **Lower values** make the indicator **more aggressive** (easier to predict direction). Higher values require a stronger price move relative to volatility and result in more "Neutral" predictions.
### Volume Confirmation
* **`Volume Avg Lookback` (`vol_avg_len`):**
* *Default:* 20
* *Purpose:* Number of bars used to calculate the simple moving average of volume.
* **`Volume Confirmation Multiplier` (`vol_confirm_mult`):**
* *Default:* 1.5
* *Purpose:* Volume on the last bar is considered "High" if it's greater than `Average Volume * this_multiplier`.
* *Effect:* Primarily adds context "(High Vol)" or "(Low Vol)" to the display text for directional predictions. Doesn't change the core prediction state itself.
### Wick Rejection
* **`Wick Rejection Multiplier` (`wick_rejection_mult`):**
* *Default:* 1.0
* *Purpose:* If an opposing wick (upper wick on an up-candle, lower wick on a down-candle) is larger than `body size * this_multiplier`, the directional prediction is overridden to "Neutral".
* *Effect:* Higher values require a much larger opposing wick to cause a rejection override. Lower values make wick rejection more likely.
### Projection Settings
* **`Projection Multiplier (ATR based)` (`projection_mult`):**
* *Default:* 1.0
* *Purpose:* Scales the projected *magnitude* of the prediction line. The projected price change shown by the line is `+/- ATR * this_multiplier`.
* *Effect:* Adjusts how far up or down the prediction line visually slopes. Does not affect the predicted direction.
* **`Prediction Line Length (Bars)` (`line_length`):**
* *Default:* 20
* *Purpose:* Controls how many bars forward the **visual** prediction line extends.
* *Effect:* Purely visual length adjustment.
### Visuals
* **`Upward Color` (`bullish_color`):** Color for Upward predictions.
* **`Downward Color` (`bearish_color`):** Color for Downward predictions.
* **`Neutral Color` (`neutral_color`):** Color for Neutral predictions (including Wick Rejections).
* **`Show Prediction Shapes` (`show_shapes`):** Toggle visibility of the triangles/diamonds on the chart.
* **`Show Prediction Line` (`show_line`):** Toggle visibility of the projected line.
* **`Show Prediction Label` (`show_label`):** Toggle visibility of the text label at the end of the line.
* **`Show Info Table` (`show_table`):** Toggle visibility of the information table.
### Table Positioning
* **`Table X Offset (Bars)` (`table_x_offset`):**
* *Default:* 3
* *Purpose:* How many bars to the right of the current bar the info table should appear.
* **`Table Y Offset (ATR Multiplier)` (`table_y_offset_atr`):**
* *Default:* 0.5
* *Purpose:* How far above the high of the last bar the info table should appear, measured in multiples of ATR.
## How to Use
1. Open the Pine Editor in TradingView.
2. Paste the complete script code.
3. Click "Add to Chart".
4. Adjust the input settings (especially `threshold_atr_mult`) to tune the indicator's aggressiveness and visual preferences.
5. Observe the prediction elements alongside your other analysis methods.
## Disclaimer
**This indicator is for informational and educational purposes only. It does not constitute financial advice or a recommendation to buy or sell any asset.** Trading financial markets involves significant risk, and you could lose money. Predictions about future price movements are inherently uncertain. The performance of this indicator depends heavily on market conditions and the settings used. Always perform your own due diligence and consider multiple factors before making any trading decisions. Use this indicator at your own risk.
Larsson Line Replica (Yellow = Bullish, Blue = Bearish)📘 Interpretation with Flipped Colors
🟨 Yellow Zones – Bullish Trend
• Signals uptrend confirmation.
• SMMA(15) > SMMA(29) indicates upward momentum.
• Ideal for:
• Holding or adding to long positions
• Buying pullbacks within or near the band
• Ignoring short setups on lower timeframes unless reversal signals show up
🟦 Blue Zones – Bearish Trend
• SMMA(15) < SMMA(29) confirms a downtrend.
• Useful for:
• Risk-off posture: take profits, reduce exposure
• Considering short trades
• Waiting out until trend flips yellow again before longing
🩶 Gray Zones – Transition / Unclear
• Represents possible trend change or indecision.
• Appears around crossovers.
• Great time to be cautious — wait for confirmation (either yellow or blue)
• Often coincides with low-volatility consolidation zones or false breakouts
📊 Timeframe Interpretation Tips (with Updated Colors)
🕰️ Weekly – Macro Regime Filter
• 🟨 Yellow = Swing longs allowed
• 🟦 Blue = Risk-off, short setups more reliable
• Use this timeframe as your macro bias anchor
• Combine with higher timeframe market structure, moving averages, or on-chain trends
⸻
📅 Daily – Tactical Entry & Position Management
• Use the slope of the bands for early momentum detection
• 🟦 Blue to Yellow flips = potential trend reversal to the upside → re-enter longs, cut shorts
• 🟨 Yellow to Blue flips = trend weakness or downtrend return → consider profit-taking or short setups
• Great timeframe for:
• Refining entries
• Managing exits
• Spotting trend shifts before weekly confirms
⸻
⏱ Lower Timeframes (4H, 1H) – Execution
• Treat the band like a dynamic trend channel
• Enter trades in direction of the current color:
• 🟨 Yellow → Buy pullbacks to the midline
• 🟦 Blue → Sell bounces into the midline
• Avoid trading against the band unless clear structure or divergence forms
• Pair with RSI/MACD for confluence
Mercury Venus Conjunction Sextiles 2019-2026How to Use It and What It Means Astrologically
How to Use the Script in TradingView
This Pine Script, called "Mercury Venus Aspects 2019–2026," is made to highlight the dates of Mercury-Venus conjunctions (0°) and sextiles (60°) from 2019 to 2026 on TradingView charts. Here's how to use it:
click “Add to Chart.” It will apply to any chart you have open—stocks, forex, crypto, etc.
Customize the Display
You can turn on/off the visibility of conjunctions and sextiles using checkboxes under "Inputs" in the settings.
You can also adjust the label size (small, normal, large, or huge) for better readability on your chart.
What You’ll See on the Chart
Conjunctions appear as blue shaded zones with labels like “C1,” “C2,” etc. These mark dates when Mercury and Venus are at the same degree.
Sextiles show up in orange with labels like “S1,” “S2,” marking when they’re about 60° apart.
Each event spans a 2-day window (one day before and after the exact aspect).
How to Use It Practically
You can overlay the script on market charts to look for any patterns between these planetary aspects and price movements.
You can also use it to plan personal or financial activities, since these aspects often affect communication, money, and relationships.
What to Keep in Mind
Dates are approximate and based on average planetary cycles (Mercury: ~88 days, Venus: ~225 days). For exact timing, use an ephemeris.
Only conjunctions and sextiles are shown. Oppositions, squares, and trines aren’t included because Mercury and Venus never get far enough apart (more than 75°).
This script is great for astrologers, traders, and enthusiasts who want to see Mercury-Venus aspects directly on their charts and explore their possible effects.
Astrological Meaning of Mercury-Venus Aspects
What Mercury and Venus Represent
Mercury rules communication, thinking, technology, travel, and trade. In global events (mundane astrology), it affects media, markets, and movement of information.
Venus is about love, beauty, money, and pleasure. It influences relationships, aesthetics, and finance. In the world stage, it’s linked to luxury, art, fashion, and economic balance.
When Mercury and Venus form aspects (like conjunctions or sextiles), their energies mix in helpful ways that can affect people and events.
Conjunction (0°) – Mercury and Venus Together
These two planets are in the same sign and degree, so their qualities merge.
For people:
Positive: Smooth communication, charm, creativity, and better relationships. Great for romance, art, and social interaction.
Negative: Too much focus on appearances, sweet talk, or pleasure can cloud judgment. Decisions may lack depth.
For the economy:
Positive: Boosts in media, entertainment, fashion, and tech. Good for trade, deals, and optimism in financial markets.
Negative: Risk of overspending or unrealistic expectations. May cause small market bubbles or misleading hype.
Sextile (60°) – Mercury and Venus in Harmony
These two planets are two signs apart, creating a smooth, supportive energy.
For people:
Positive: Easy conversations, creative teamwork, small financial wins, and pleasant social experiences.
Negative: Energy is mild, so opportunities might be missed if not acted on. People may avoid hard decisions.
For the economy:
Positive: Gradual improvements in areas like marketing, social media, hospitality, and design. Good for diplomacy.
Negative: Lack of strong initiative could limit bigger gains. Minor missteps are possible due to a laid-back attitude.
General Effects
These aspects are mostly beneficial. They support creativity, financial thinking, and social harmony.
Downsides: Conjunctions may lead to overindulgence or shallow choices, while sextiles may cause missed chances due to low energy.
These aspects rarely cause major economic shifts on their own but can amplify trends depending on other planetary influences (like Saturn or Uranus).
Zodiac Sign Influence
Fire signs (Aries, Leo, Sagittarius): Bold communication, energetic spending, gains in media or entertainment.
Earth signs (Taurus, Virgo, Capricorn): Practical results, stable finances, growth in real-world assets like property or food.
Air signs (Gemini, Libra, Aquarius): Intellectual growth, tech innovation, and social ideas flourish.
Water signs (Cancer, Scorpio, Pisces): Emotional depth in conversations, artistic growth, and financial sensitivity.
Mercury-Venus aspects are gentle but helpful. They combine logic (Mercury) with emotion and value (Venus). They’re good times for love, communication, and money—but their benefits depend on how we use the energy. This script lets you easily track these moments on a chart and explore how they might align with real-life trends or decisions.
Disclaimer: This script and its interpretations are for informational and educational purposes only. They do not constitute financial, trading, or professional astrological advice. Always conduct your own research and consult qualified professionals before making any financial or personal decisions. Use at your own discretion.
Custom RSI Order Blocks MomentumIt shows when the currency is overbought or oversold and shows us where there are orders placed
MACD - salThis indicator chooses a 15-minute frame if the person chose 30 minutes with the SAR indicator, and if he chose 15 minutes, it takes 5 minutes.
ATR Stop BufferThe ATR Stop Buffer indicator calculates the Daily Average True Range (ATR) and converts it into ticks based on the symbol's minimum price movement. It then displays the full ATR, 2% of ATR, and 10% of ATR in a clean table format, rounded up for simplicity. This tool is ideal for traders who want to set volatility-based stop-loss levels or buffers for their trades.
Key Features:
- Uses a 14-period Daily ATR for robust volatility measurement.
- Converts ATR into ticks for precise application across different instruments.
- Table display with toggle option for flexibility.
- Perfect for risk management and trade planning.
How to Use:
1. Add the indicator to your chart.
2. Use the table values to adjust your stop-loss distances (e.g., 2% ATR for tight stops, 10% ATR for wider buffers).
3. Toggle the table off if you only need the values occasionally.
Note: Works best on instruments with defined tick sizes (e.g., futures, forex, stocks).
Custom RSI Order Blocks MomentumThat indicator shows when the coin is overbought or Oversold where there are buy and sell orders
MACD - MTFThe MACD indicator works on multiple time frames and is linked to the Parabolic SAR indicator. Ideal for traders using radio signals.
Supply and Demand Zones with TP @tradingbauhausSupply and Demand Zones with Take Profit Indicator: Explanation for Users
What This Indicator Does
This indicator is a tool designed to help you spot key areas on a price chart where the price of an asset (like a stock, cryptocurrency, or forex pair) might reverse or continue moving. It highlights these areas as "zones" and provides target levels for taking profits, along with a signal to sell when the price reaches a certain point. Here’s a breakdown of what it does in simple terms:
1. Finds Key Price Zones:
Red Zones (Selling Areas): These are areas where the price has previously turned downward after reaching a high point. It’s like a "ceiling" where sellers might step in to push the price down again.
Blue Zones (Buying Areas): These are areas where the price has previously turned upward after hitting a low point. It’s like a "floor" where buyers might step in to push the price up.
2. Sets Profit Targets:
When the price is at a blue zone (a buying area), the indicator draws three green dotted lines above it, labeled "TP1," "TP2," and "TP3." These are suggested levels where you might consider taking profits if you buy at the blue zone.
The profit targets are calculated based on the distance between the blue and red zones, with TP1 being the closest target, TP2 farther, and TP3 the farthest.
3. Gives a Sell Signal:
When the price moves up and touches a red zone (a selling area), the indicator shows a "Sell" label in red. This is a warning that the price might reverse downward, suggesting it could be a good time to sell or take a short position.
4. Marks Turning Points:
The indicator also places small red triangles above the chart where the price made a significant high (indicating a potential selling area) and small blue triangles below the chart where the price made a significant low (indicating a potential buying area). These help you see where the zones are coming from.
How to Use the Indicator
- Look for Blue Zones to Buy: If the price approaches a blue zone, it might be a good area to consider buying because the price has bounced up from this level before. The green TP1, TP2, and TP3 lines above show where you might aim to take profits if the price moves up.
- Look for Red Zones to Sell: If the price approaches a red zone, it might be a good area to consider selling because the price has dropped from this level before. The "Sell" label will appear when the price hits this zone, signaling a potential reversal.
-Adjust Based on Your Strategy: You can tweak the settings to make the zones wider or narrower, change how far apart the profit targets are, or adjust how sensitive the indicator is to price movements. For example, you can make it focus on bigger price swings or smaller ones.
What You’ll See on the Chart
-Red Boxes: These are the selling areas where the price might struggle to go higher.
- Blue Boxes: These are the buying areas where the price might find support and move up.
- Green Dotted Lines (TP1, TP2, TP3): These are your profit targets if you buy at a blue zone.
Red "Sell" Labels: These appear when the price hits a red zone, suggesting it might be time to sell.
Small Red and Blue Triangles: These mark the high and low points the indicator used to create the zones.
Customizable Options
-Sensitivity: You can adjust how big or small the price swings need to be for the indicator to identify a zone. A higher setting will focus on larger, more significant price movements, while a lower setting will pick up smaller ones.
-Profit Target Distance: You can change how far the TP1, TP2, and TP3 levels are from the buying area. For example, you can set them closer for quicker profits or farther for bigger gains.
-Zone Size: You can make the red and blue zones wider or narrower on the chart, depending on how much space you want them to cover.
Tips for Using the Indicator
-Combine with Other Tools: This indicator works best when used alongside other methods, like checking the overall trend (is the price generally going up or down?) or looking at other signals (like volume or news events).
-Be Patient: The zones don’t always appear immediately because the indicator needs to confirm that a high or low is significant. This means there might be a slight delay before a zone shows up.
-Test It Out: Try the indicator on different assets and timeframes (like daily, hourly, or 15-minute charts) to see how it performs in different market conditions.
Disclaimer
Disclaimer: This indicator is for informational and educational purposes only and is not financial advice. Trading carries a high risk of loss, and past price movements do not guarantee future results. Always do your own research and consider consulting a financial advisor before making trading decisions. The creator of this indicator is not responsible for any financial losses you may experience while using it.
Enhanced Custom Signal (v6) - IndicatorThis indicator give you Buy and sell signals for scalping AND swing trading.
Fully adjustable settings.
🔍 Alpha Beta Gamma with Volume candle🔍 Alpha Beta Gamma + Volume Candle
Unlock a powerful combination of market structure analysis and volume-based candle signals in one indicator!
📌 How to Use:
This indicator plots Gamma (normalized price position) and optional Alpha/Beta bands for deeper trend and range insights.
It overlays volume-based candle coloring to instantly highlight strong, weak, high-volume, or low-volume candles, improving your signal accuracy.
Customize your view with optional ABG lines, 8-level band grid, and volume strength filters.
View real-time volume table and adjust label visuals, grid lines, and price types for maximum flexibility.
✅ Key Benefits:
🎯 ABG Bands (Alpha, Beta, Gamma): Spot price positioning and market structure within custom length.
🔎 Volume Candle Coloring: Instantly see strong moves based on volume × body size. No more guessing!
🧠 Grid-Based Bands (0–1 Range): Helps in breakout trading, mean-reversion setups, and dynamic support/resistance zones.
📊 On-Chart Volume Table: Get a clean summary of live volume behavior and thresholds.
🎨 Fully Customizable: Choose line styles, label sizes, positions, price types, and more.
⚠️ Limitations / Cautions:
❗ Works best in sideways or range-bound markets. In high-trending markets, ABG bands may lag or smooth over aggressive moves.
❗ Volume interpretation depends on your exchange feed – always test on live charts before relying on color-based decisions alone.
❗ Not a buy/sell signal generator. Use with confirmation tools or price action strategies.
⚠️ Disclaimer
This indicator is for educational and informational purposes only. It does not constitute financial advice or a recommendation to buy or sell any asset. Always do your own research or consult a financial advisor before making trading decisions. Use at your own risk.
Market Regime Candle DominanceDescription: This script, "Market Regime Candle Dominance," overlays a TradingView chart to visually identify market regimes—bullish trends, bearish trends, or ranging markets—using adaptive calculations and volatility detection. It dynamically colors candles and highlights the background to indicate current market conditions.
How It Works:
Inputs:
Users define colors for bullish, bearish, and ranging trends, adjust sensitivity thresholds for volatility and trends, and set an adaptive calculation length.
Adaptive Calculation:
A period adjustment factor (calcPeriod) dynamically alters based on the chart's timeframe, ensuring meaningful calculations across different timeframes.
Volatility and Trend Detection:
Using the True Range (ta.tr) and price change (close - close ), the script calculates volatility and trend strength to determine market conditions.
Trend sensitivity is adjustable through thresholds (trendThreshold), enabling finer or broader regime detection.
Market Regime Identification:
Bullish Trend: Detected when trendStrength > trendThreshold.
Bearish Trend: Triggered when trendStrength < -trendThreshold.
Ranging Market: Identified when neither bullish nor bearish trends are present.
Candle Coloring:
Candles are colored according to the market regime:
Green for bullish trends.
Red for bearish trends.
Blue (semi-transparent) for ranging markets.
Background Highlights:
An optional feature (highlightRegime) adds semi-transparent background colors corresponding to the detected regime, enhancing visual clarity of the chart.
Features:
Adaptive Sensitivity: Adjusts the calculation length and thresholds for precision across different chart timeframes.
Customizable Display: Allows users to personalize colors and enable/disable background highlights.
Visual Clarity: Simplifies the identification of market regimes, providing clear direction at a glance.
Indicateur Swing GMMA Pro v8.0.2 (Rentabilité+)GMMA Pro v8.0.2 Indicator Description
This TradingView Pine Script indicator, titled "Indicateur Swing GMMA Pro v8.0.2 (Rentabilité+)", is a comprehensive tool designed for swing trading based on the Guppy Multiple Moving Averages (GMMA) concept, enhanced with numerous filters and risk management features.
Core Strategy:
GMMA Trend: The primary signals are derived from the relationship between a group of short-term (fast) Exponential Moving Averages (EMAs) and a group of long-term (slow) EMAs.
A potential long signal occurs when the average of the fast EMAs crosses above the average of the slow EMAs, or when a bullish trend (fast > slow, slow EMAs aligned upwards) is already established.
A potential short signal occurs when the average of the fast EMAs crosses below the average of the slow EMAs, or when a bearish trend (fast < slow, slow EMAs aligned downwards) is already established.
Entry Trigger Refinement: An entry is further confirmed only if the closing price is decisively beyond the average of the fast EMAs (above for longs, below for shorts).
Configurable Filters:
The indicator includes a wide array of optional filters to refine entry signals:
Long EMA Filter (Current Timeframe): Requires the price to be above a long-period EMA (e.g., 200 EMA) for longs, and below for shorts.
MTF Filter: Confirms the trend by checking the price position relative to a long EMA on a selected Higher Timeframe (HTF).
ADX Filter: Validates trend strength using the Average Directional Index (ADX) and checks if the Directional Movement Index (DMI) aligns with the trade direction (+DI > -DI for longs, -DI > +DI for shorts).
Strict GMMA Filter: Enforces a stricter condition where slow EMAs must be fully aligned (all rising for longs, all falling for shorts).
S/R Proximity Filter: Prevents entries if the price is too close to a recently formed pivot-based Support (for shorts) or Resistance (for longs) zone. Zone height can be ATR-based or tick-based.
Risk/Reward Filter: Only allows trades where the potential reward (based on the calculated Take Profit) versus the potential risk (based on the initial Stop Loss) meets a minimum required ratio.
Volatility Filter (ATR %): Filters out trades during periods of low volatility by requiring the ATR to be above a minimum percentage of the current price.
Momentum Filter (RSI): Uses the Relative Strength Index (RSI) to confirm momentum, requiring RSI to be above a certain level for longs and below for shorts.
Risk Management & Exits:
Initial Stop Loss (SL): Can be calculated using a multiple of the Average True Range (ATR) or a fixed percentage from the entry price.
Take Profit (TP): Can be set using an ATR multiple, a fixed percentage, or by targeting the nearest valid pivot S/R level.
Trailing Stop Loss (TSL): Optional ATR-based trailing stop that follows the price once a trade is active (unless Break-Even is activated).
Break-Even (BE) Stop: Optional feature to move the Stop Loss to the entry price after the trade has moved a specified ATR multiple in profit, protecting the position from turning into a loss.
Exit Conditions: A trade can be closed by:
Hitting the Take Profit level.
Hitting the current Stop Loss (which could be the initial SL, TSL, or BE SL).
A reversal signal (fast GMMA average crossing back over the slow GMMA average).
Visual Elements:
Plots the fast and slow GMMA groups (configurable as lines or filled bands).
Plots the long EMA filter line.
Draws S/R zones based on detected pivot highs and lows.
Displays Entry Price, Take Profit, and Current Stop Loss lines on the chart when a trade is active.
Includes an optional Dashboard summarizing the status of all filters, potential signals, current position details (including BE status), potential R/R, and TP/SL levels.
Alerts:
Configurable alerts are available for:
Buy and Sell Short entry signals.
Take Profit hits (long/short).
Stop Loss hits (distinguishing between initial/trailing SL and BE SL).
Trend-based exits.
Break-Even Stop activation.
Purpose:
This indicator aims to provide a flexible and robust framework for GMMA-based swing trading, allowing users to layer multiple confirmation filters and utilize various risk management techniques to suit their strategy and market conditions. Thorough backtesting and parameter optimization are recommended before live trading.
ET's Adjusted TT GZAn indicator based off of Tradytics Ghost Zone levels that allows us to change the default background levels to any color on the Pinescript palett.
Scaled RSI CCI +DivNormal RSI overlaid with Dynamic Scaling CCI.
Customizable static or dynamic normalization with vertical offset to ensure CCI and RSI are scaled appropriately on top of each other.
Includes divergences for each, and an additional set of threshold levels.
Default settings have the RSI as the base and CCI dynamically normalized. Threshold levels are standard RSI 30/50/70 levels and is also fully customizable. Includes standard RSI signal line.
CCI will not be perfectly scaled, the default settings are the best fit; but both the RSI and the CCI can be customized individually.
Momentum Indicators Bias/*
Description:
This script, "Advanced Momentum Indicators Bias," displays a table summarizing the directional bias of various technical indicators on a TradingView chart. It allows users to toggle between simple "Up/Down" directions and advanced "Strong Up/Weak Up/Strong Down/Weak Down" classifications using the `use_advanced_counts` input.
How It Works:
1. **Inputs**: Users can enable/disable 25 indicators and customize table appearance (position, colors, visibility).
2. **Direction Calculation**: Each indicator has a `get_*_dir()` function that determines its direction:
- When `use_advanced_counts` is false, it returns "up" or "down" based on basic conditions (e.g., RSI > 50 = "up").
- When `use_advanced_counts` is true, it returns "strong_up," "weak_up," "strong_down," or "weak_down" by assessing trend strength.
3. **Strength Determination**:
- Advanced indicators (e.g., RSI, MACD) use momentum (e.g., value increasing vs. previous) to differentiate "strong" (rising) from "weak" (flat/declining).
- Simple indicators (e.g., ADX, Ichimoku) add a strength heuristic (e.g., price or indicator value change) when `use_advanced_counts` is true.
4. **Table Display**: The `get_display_text` function maps directions to text:
- Toggle off: "Up" or "Down."
- Toggle on: "Strong Up," "Weak Up," "Strong Down," or "Weak Down" only.
- Background colors reflect strength (solid for strong, faded for weak).
5. **Total Count**: Optionally shows a summary of up/down counts, with detailed strong/weak counts when advanced mode is enabled.
Indicators Used:
- Oscillators: RSI, MACD, Stochastic, MFI, Williams %R, CCI, ROC, Momentum, Trix, Schaff Trend Cycle, Chaikin Oscillator, Ultimate Oscillator.
- Trend/Other: ADX, Ichimoku, Parabolic SAR, Aroon, OBV, Bull Bear Power, Elder Ray, Gator Oscillator, Keltner Channels, Zig Zag, Donchian Channels, Envelopes, Fractals.
The script overlays the chart and updates on the last bar, providing a quick visual bias assessment across multiple indicators.
*/
[Forexroboot super scalper v1]this indicator trade on crypto and forex
trade on any time frame
enjoyed
inst: Forexroboot
ما
forexroboot
[Forexroboot super scalper v1]this indicator trade on crypto and forex
trade on any time frame
enjoyed
inst: Forexroboot
ما
forexroboot