[4LC] Period Highs, Lows and OpensPeriod Highs, Lows, and Opens (HLO)
This script plots highs, lows, and opens from different time periods—yearly, monthly, weekly, Monday, and daily—on your chart. It includes a grouping feature that combines levels close to each other, based on a percentage distance, to keep the display organized.
What It Does:
It shows key price levels from various timeframes, marking where the market has hit highs, lows, or started a period. These levels can indicate potential support or resistance zones and help track price behavior over time.
How to Use It:
Add it to your chart and choose which levels to display (e.g., "Yearly High," "Daily Open").
Check where price is relative to these levels—above might suggest upward momentum, below could point to downward pressure.
Use the highs and lows to identify ranges for trading or watch for breakouts past these points.
Adjust settings like colors, spacing, or grouping distance as needed, and toggle price labels to see exact values.
Notes:
The script pulls data from multiple periods to give a broader view of price action. The grouping reduces overlap by averaging nearby levels into a single line with a combined label (e.g., "Yearly High, Monthly High"). It’s meant for traders interested in tracking significant levels across timeframes, whether for range trading or spotting market direction.
Penunjuk dan strategi
TeeLek KAMAKaufman's Adaptive Moving Average (KAMA)
Kufman is a relatively fast line. When we use it to create an indicator that helps indicate an uptrend or downtrend, it will tell the trend quickly. But the disadvantage is that there will be a lot of false signals.
KAMA Line Multi Timeframe
It is a script that has been further developed to allow us to display KAMA Line in multiple timeframes at the same time.
----------------------------------------------------
คัฟแมน เป็นเส้นที่ค่อนข้างเร็ว เมื่อเราเอามาสร้างเป็น Indicator ที่ช่วยบอก เทรนด์ขึ้นหรือลง จะทำให้มีการบอกเทรนด์ที่เร็ว แตมีข้อด้อยคือ จะมีสัญญาณ false signal เยอะเหมือนกัน
KAMA Line Multi Timeframe
เป็นสคริปที่พัฒนาเพิ่มเติม เพื่อให้เราสามารถแสดง KAMA Line หลายๆ Timeframe พร้อมกันได้
VWOP WIZARD## Overview
The VWOP Wizard is a dynamic, multi-timeframe indicator that blends oscillator-based scaling with volume–weighted moving averages. It adapts its smoothing window depending on market conditions and provides both a plotted VWOP (Volume–Weighted Oscillator Price) line as well as a dashboard that displays values across several timeframes. In addition, it generates scalp entry signals based on the price’s relationship to the VWOP values from different periods.
---
## Key Components and Workflow
### 1. User Inputs and Customization
- **Oscillator Choice:**
You can choose from a range of oscillators such as **RSI, CCI, COG, MFI, CMO, TSI**, and a composite called **COPPOCK**. By default, COPPOCK is selected. The oscillator is used as the dynamic driver in the indicator.
- **Averaging Method:**
The indicator offers several smoothing methods including **VWAP, SWMA, VWMA, SMA, EMA, RMA, WMA,** and **Linear Regression Channel (LRC)**. This determines how the price data is averaged.
- **Length Slope Scaling:**
Four scaling lengths (len1, len2, len3, len4) and a slope shape input (`lCurve`) are defined. The slope shape options (“<>”, “><”, “<”, “>”) control how the oscillator’s relative position influences the length (i.e., the lookback period) used in the volume–weighted average calculation.
- **Oscillator Length:**
A parameter for the oscillator’s time period (default 16) allows fine tuning of its responsiveness.
### 2. Oscillator Calculation
- **Oscillator Value (`osc`):**
Depending on the user’s selection, the indicator computes an oscillator value. For example, when using “COPPOCK” (the default), the script calculates the weighted moving average of the sum of two rate-of-change (ROC) measures derived from the source price. This composite value provides a measure of recent momentum.
- **Scaling the Oscillator Range:**
The script computes the maximum (`maxOsc`) and minimum (`minOsc`) values of the oscillator over its history, then finds the difference (`dif`). These values are used to assess where the current oscillator reading lies within its full range.
### 3. Dynamic Slope Scaling
- **Determining the “lev” (Length):**
With the oscillator’s current position known relative to its minimum and maximum, the indicator uses the chosen scaling shape to set the effective lookback period (`lev`):
- **Symmetrical Scaling (“<>”):**
Checks if the oscillator is near the lower or upper quartiles (25%, 35%, 45% thresholds) to select among len1, len2, len3, or len4.
- **Inverted Scaling (“><”):**
Uses a reversed mapping of the thresholds, assigning longer or shorter lengths based on whether the oscillator is near the extremes.
- **Progressive Scaling (“<” or “>”):**
Interpolates between predefined lengths by comparing the oscillator to closer threshold splits either on the lower side (“<”) or upper side (“>”).
This dynamic adjustment means that the smoothing window for the moving average adapts to market volatility or momentum as revealed by the oscillator.
### 4. Moving Average Calculation (VWOP Line)
- **Volume–Weighted Smoothing:**
With the dynamic length (`lev`) determined, the script calculates a moving average that is volume–weighted. It does so by:
1. **Weighted Summation:**
Multiplying a selected type of moving average (based on the user’s method choice) of the source price by volume, summed over the window defined by `lev`.
2. **Normalization:**
Dividing the weighted sum by the total volume over the same period.
3. **Smoothing:**
In some cases, a secondary application of the selected moving average type (or a similar formula) further smooths the result.
The result is a VWOP line that reflects both price movements and volume activity, adjusted dynamically by the oscillator’s insights.
### 5. Plotting and Trend Determination
- **Visual Plot:**
The indicator plots the VWOP line directly on the chart. Its color dynamically changes—**green** if the current VWOP is higher than its previous value (indicating bullish momentum), and **red** if it is lower (indicating bearish momentum).
### 6. Multi-Timeframe Analysis and Scalp Signals
- **Additional Timeframe Calculations:**
Beyond the primary chart timeframe, the VWOP line is recalculated for additional timeframes (15-minute, 1-hour, 4-hour, and daily) using TradingView’s `request.security()` function. This provides a broader view of market trend across different periods.
- **Scalp Entry Signal:**
A scalp signal is generated on the 15-minute timeframe. The conditions are:
- **For a Long Signal:**
The price must be above the 15-minute VWOP, at least one of the 1-hour or 4-hour VWOPs, and above the Daily VWOP.
- **For a Short Signal:**
The price must be below the 15-minute VWOP, at least one of the 1-hour or 4-hour VWOPs, and below the Daily VWOP.
If neither condition is met, the signal defaults to “NEUTRAL.”
### 7. Dashboard Display
- **Visual Table:**
A dashboard table is created and positioned on the top right of the chart. It presents:
- The VWOP value from the 15-minute timeframe, along with the scalp signal (LONG, SHORT, or NEUTRAL) shown in a color that reflects the signal’s nature.
- The VWOP values for the 1-hour, 4-hour, and Daily timeframes, each color-coded (green for bullish, red for bearish) based on their trend.
This table provides a quick, at-a-glance summary of the market’s behavior across multiple timeframes.
---
## Conclusion
In summary, the VWOP Wizard indicator works by:
- **Combining an oscillator** (with user-selectable options) to drive dynamic adjustments.
- **Setting a variable lookback period** for a volume–weighted moving average based on the oscillator’s current value relative to its range.
- **Calculating and smoothing a VWOP line** using various averaging methods.
- **Determining trend direction** by comparing current and previous VWOP values.
- **Providing multi-timeframe insight** along with scalp entry signals via a dashboard display.
This design makes the indicator highly adaptive, offering insights into momentum shifts while accounting for volume, and ultimately assisting traders in making more informed decisions across different trading horizons.
Trend is Your Friend + MA Cross (Custom Color Scheme)## Overview
This indicator is a multi-faceted tool that combines several trend–based technical analyses with moving average crossover signals. It provides users with a dynamically updated dashboard displaying trend scores across different timeframes (15-minute, 1-hour, 4-hour, and daily) as well as a volume monitor. In addition, the script highlights scalp entry opportunities on the 15-minute chart and overlays a classic moving average (MA) cross indicator with customizable color schemes.
---
## Key Components and Workflow
### 1. User Inputs and Custom Settings
- **Dashboard Position:**
Users can choose where to display the dashboard on the chart (Top Right, Middle Right, Bottom Right, or Bottom Left).
- **MA Cross Parameters:**
Two moving averages are used:
- **Fast MA Period:** The shorter period (default 50) is used to gauge more immediate price momentum.
- **Slow MA Period:** The longer period (default 200) gives the overall trend.
- **Custom Colors for Crosses:**
Custom color inputs allow traders to assign distinct colors for bullish (e.g., a golden cross) and bearish (e.g., a death cross) signals.
- **Weekend Trading Toggle:**
An option to enable or disable trading signals on weekends prevents unwanted alerts during low-liquidity periods.
---
### 2. Trend Calculation Across Multiple Timeframes
The script evaluates trend strength on different timeframes using a function called `getTrend`. This function aggregates signals from four technical indicators for each timeframe:
- **MACD Analysis:**
- **Calculation:** The MACD line and its signal line are computed using the standard 12, 26, 9 settings.
- **Trend Signal:** If the MACD line exceeds the signal line, a positive (bullish) signal is generated; if it is below, a negative (bearish) signal is produced.
- **ATR–Based Supertrend Concept:**
- **ATR Value:** An Average True Range (ATR) over 10 periods is calculated.
- **Price Bands:** Upper and lower bands are derived by adding/subtracting three times the ATR from the current price.
- **Supertrend Signal:** The close price being above the lower band implies bullishness, while being below the upper band implies bearishness.
- **Hull Moving Average (HMA) Slope:**
- **Calculation:** A Hull Moving Average is computed using a weighted moving average formula.
- **Trend Signal:** The slope of the HMA (i.e., its current movement compared to its previous value) determines if the trend is upward or downward.
- **VWAP Comparison:**
- **Assessment:** The script compares the current price to the Volume Weighted Average Price (VWAP) calculated for each timeframe.
- **Trend Signal:** Price above the VWAP indicates bullishness, and below indicates bearishness.
- **Overall Trend Scoring:**
Each individual component contributes a value (+1, 0, or –1) which are summed into a total score. If this score is 3 or above, the trend for that timeframe is considered **bullish**; if it is –3 or lower, it is **bearish**. Otherwise, the trend is labeled as **neutral**.
---
### 3. Color-Coded Dashboard Display
- **Dashboard Setup:**
The indicator creates a table that displays the trend scores for the four chosen timeframes. Each cell shows the timeframe label, the score (with minimal tick formatting), and a trend label (“BULLISH”, “BEARISH”, or “NEUTRAL”).
- **Color Scheme Determination:**
A helper function assigns:
- **Bullish:** A dark green background with bright green text.
- **Bearish:** A dark red background with red text.
- **Neutral:** A black background with yellow text.
- **Volume Monitor:**
The dashboard includes an extra cell that monitors current volume relative to its 20–period simple moving average (SMA). Depending on whether volume is high, medium, or low, it is color–coded (yellow for high, orange for medium, and gray for low).
---
### 4. Scalp Entry Logic on the 15-Minute Chart
- **Local Indicator Calculations:**
On the 15-minute timeframe, the script computes:
- **MACD:** A bullish bias if the MACD line is above its signal line.
- **Supertrend Proxy:** A simplified measure comparing the close to a level derived from ATR.
- **Hull MA Slope:** An upward slope indicates bullish movement.
- **VWAP Check:** The close price is compared to the VWAP.
- **Multi-Timeframe Confirmation:**
The `getTrend` function is again used to retrieve trend signals for the 15-minute, 1-hour, 4-hour, and daily timeframes. A count of bullish versus bearish signals is used as additional confirmation.
- **Entry Conditions:**
- **Long Entry:** Triggered when local conditions (MACD, supertrend, hull slope, and price above VWAP) are bullish and at least three of the four timeframe trend signals are positive. Volume must also be above a safe threshold, and trading is only enabled on weekdays (unless weekend trading is allowed).
- **Short Entry:** Conversely, a short signal is generated when all local conditions are bearish and there is multi-timeframe bearish confirmation.
- **Visual Alerts:**
The indicator plots shapes (triangles) on the chart for both long and short scalp entries. Alert conditions are also set up for automated notification of potential scalp opportunities.
---
### 5. Moving Average Crossover (MA Cross) Signal
- **Fast and Slow MAs:**
The script calculates two simple moving averages using user–defined periods:
- **Fast MA:** Responds quickly to price changes.
- **Slow MA:** Smooths price fluctuations over a longer period.
- **Crossover Signals:**
- A **bullish crossover** occurs when the fast MA crosses above the slow MA.
- A **bearish crossover** occurs when the fast MA crosses below the slow MA.
- **Custom Cross Markers:**
Each crossover is marked on the chart with a cross shape:
- The bullish cross is drawn in the color set by the user as the “Bullish (Golden) Cross Color.”
- The bearish cross uses the “Bearish (Death) Cross Color.”
---
## Conclusion
In summary, this indicator operates on multiple levels:
- **Trend Assessment:** It computes trend scores for multiple timeframes (15min, 1hr, 4hr, Daily) by analyzing MACD, an ATR–derived supertrend, the slope of a Hull moving average, and the VWAP.
- **Dashboard Display:** It visually summarizes the trends and current volume with a color–coded dashboard.
- **Scalp Entry Logic:** On the 15-minute timeframe, it identifies potential scalp entries by combining local technical signals with multi–timeframe trend confirmation, while filtering out low–volume or weekend conditions.
- **MA Cross Signals:** Finally, it overlays fast and slow moving averages to clearly mark bullish and bearish crossover events with customizable visual cues.
This comprehensive design makes the indicator adaptable to different market conditions and timeframes, helping traders to gauge overall trend direction and identify potential scalp opportunities effectively.
OBVX Conviction Bias🧮 The OBVX Conviction Bias overlay tracks the flow of directional volume using the classic On-Balance Volume calculation, then filters it through a layered moving average system to expose crowd commitment , pressure transitions , and momentum fatigue . The tool applies two smoothed averages to the OBV line—a fast curve and a longer-term baseline scaled using Euler’s constant (2.718)—and visualizes their relationship using a color-coded crossover ribbon and pressure fills. When used correctly, it reveals whether a move is being supported by meaningful volume, or whether the crowd is starting to disengage.
🚦 The core signal compares OBV to its fast moving average. When OBV climbs above the short average, it fills green—suggesting real directional effort. When OBV sinks below, the fill turns maroon—flagging fading conviction or pullback potential. A second fill between the short and long OBV moving averages captures the broader trend of volume intention. If the short is above the long, this space fills greenish, showing constructive pressure. If it flips, the fill fades red, signaling crowd hesitation, rotation, or early exhaustion.
⚖️ All smoothing is user-selectable, defaulting to VWMA for effort-sensitive structure. The long-term average is auto-scaled using the natural exponential multiplier (2.718), offering rhythm that reflects the curve of participation. OBVX Conviction Bias isn’t trying to predict—it’s trying to show you where the crowd is leaning , and whether that lean is gaining traction or losing strength.
🧐 Ideal Use-Cases:
• Detect divergence between volume flow and price action
• Confirm breakout validity with volume alignment
• Fade breakouts where OBV fails to follow through
• Time pullback entries when OBV pressure resumes in trend direction
🍷 Recommended Pairings:
• ZVOL to measure whether volume is statistically significant or just noise (as shown)
• RVOL Effort Matrix to validate crowd effort by tier and structure zone
• SUPeR TReND 2.718 and/or MA Ribbons for directional confluence
• ATR Turbulence to track volatility-phase alignment with volume intention
Falcon SignalsThis script is a TradingView Pine Script for a trading strategy called "Falcon Signals." It combines multiple technical indicators and strategies to generate buy and sell signals. Here’s a breakdown of what the script does:
1. Supertrend Indicator:
The script calculates the Supertrend indicator using the Average True Range (ATR) and a specified multiplier (factor). The Supertrend is used to define the trend direction, with a green line for an uptrend and a red line for a downtrend.
2. EMA (Exponential Moving Average):
Two EMAs are used: a fast EMA (9-period) and a slow EMA (21-period). The script checks for crossovers of the fast EMA above or below the slow EMA as a basis for buying and selling signals.
3. RSI (Relative Strength Index):
The RSI (14-period) is used to measure the momentum of the price. A buy signal is generated when the RSI is less than 70, while a sell signal is generated when it’s greater than 30.
4. Take Profit (TP) and Stop Loss (SL):
The script allows users to set custom percentages for take profit and stop loss. The take profit is set at a certain percentage above the entry price for buy signals, and the stop loss is set at a percentage below the entry price, and vice versa for sell signals.
5. Trailing Stop:
A trailing stop can be enabled, which dynamically adjusts the stop loss level as the price moves in the favorable direction. If the price moves against the position by a certain trailing percentage, the position will be closed.
6. Engulfing Patterns:
The script checks for bullish and bearish engulfing candlestick patterns, indicating potential reversals. A bullish engulfing pattern is marked with a teal label ("🔄 Reversal Up"), and a bearish engulfing pattern is marked with a fuchsia label ("🔄 Reversal Down").
7. Plotting:
The script plots various indicators and signals:
Entry line: Shows where the buy or sell signal is triggered.
Take profit and stop loss levels are plotted as lines.
EMA and Supertrend lines are plotted on the chart.
Trailing stop line, if enabled, is also plotted.
8. Buy and Sell Labels:
The script places labels on the chart when buy or sell signals are triggered, indicating the price at which the order should be placed.
9. Exit Line:
The script plots an exit line when the trailing stop is hit, signaling when a position should be closed.
10. Alerts:
Alerts are set for both buy and sell signals, notifying the trader when to act based on the strategy's conditions.
This strategy combines trend-following (Supertrend), momentum (RSI), and price action patterns (EMA crossovers and engulfing candlestick patterns) to generate trade signals. It also offers the flexibility of take profit, stop loss, and trailing stop features.
TeeLek-BestPositionBest Buy and Sell Points
This indicator will calculate the best Buy (blue) and Sell (orange) points. The working principle is that the blue point is the point where RSI is Over Sold, the orange point is the point where RSI is Over Bought. After that, we will use the Highest Line 100 and Lowest Line 100 to filter the points another layer.
The appropriate point for buying is
The point where Over Sold occurs and Closes lower than the Lowest Line 100.
The appropriate point for selling is
The point where Over Bought occurs and Closes higher than the Highest Line 100.
---------------------------------------------------------------------------------
จุดซื้อจุดขายที่ดีที่สุด
อินดิเคเตอร์นี้ จะคำนวณจุดซื้อ (สีฟ้า) และจุดขาย (สีส้ม) ที่ดีที่สุดมาให้ โดยหลักการทำงาน คือ จุดสีฟ้า คือจุดที่ RSI Over Sold จุดสีส้ม คือจุดที่ RSI Over Bought หลังจากนั้นเราจะใช้เส้น Highest Line 100 และ Lowest Line 100 เพื่อกรองจุดอีกชั้นหนึ่ง
จุดที่เหมาะสมกับการซื้อ คือ
จุดที่เกิด Over Sold และ Close ต่ำกว่าเส้น Lowest Line 100
จุดที่เหมาะสมกับการขาย คือ
จุดที่เกิด Over Bought และ Close สูงกว่าเส้น Highest Line 100
RSI Pro ICT Engine v6🔮 RSI Pro ICT Engine v6 is an enhanced RSI indicator built specifically for ICT-based traders, offering clean visuals and smart entry logic based on institutional concepts.
This version upgrades the default RSI by adding intelligent structure-based confirmation using RSI(14) + WMA(45) + optional EMA(9).
Designed for intraday and swing traders who rely on precise RSI signals.
KAMA Stdev🚀 Trading View Alert! 🌟
Take your trading strategy to the next level with the KAMA Stdev Indicator! Designed with precision, this script combines the power of KAMA (Kaufman's Adaptive Moving Average) with Standard Deviation Bands for enhanced market insights 📈.
✨ Key Features:
💡 Perfect for traders seeking a dynamic tool for identifying market trends and volatility with ease.
💻 Code licensed under MPL 2.0 and developed by the QuantzTrader!
Check for Price hitting Standard Deviation 3, the price will generally come back to KAMA
Circuit Breaker LevelsThis indicator will show the Previous Day's Close and +/- 4.5% (Warning Level for Prop Firms), 5% (Prop Firm Trading Halted), 7% (First CME Circuit Breaker), 13% (Second CME Circuit Breaker), and 20% (Final CME Circuit Breaker All Trading Halted for the Day).
Multi-EMA Indicator (9/20/50/100/200/800)The Multi-EMA Indicator is designed for traders who want a clear visual overview of market trends across all timeframes – from scalping to swing trading.
🔹 Included EMAs:
EMA 9 → Micro momentum (great for scalping)
EMA 20 → Short-term trend & pullback zone
EMA 50 → Classic trend filter for day trading
EMA 100 → Mid-term trend direction
EMA 200 → Long-term trend indicator
EMA 800 → Macro-level support/resistance for larger trend context
🧠 Features:
Color-coded lines for easy visual distinction
Clean, minimal labels at the end of each line for quick identification
Option to toggle label visibility
Adjustable line transparency to fit your personal chart style
📌 Use Cases:
Identify trend direction, trade pullbacks, or use as a filter for entry/exit signals
Perfect for EMA crossover strategies, breakout confirmation, or avoiding choppy markets
EMA Crossover with Stop Loss
Stop Loss Calculation:
A stop loss level is calculated as a percentage below the entry price for a long position or above the entry price for a short position.
The stopLossPercent input allows you to define how far the stop loss is set from the entry price, in percentage terms.
Buy Signal:
A buySignal is generated when the fast EMA crosses above the slow EMA.
The stop loss for this trade is calculated when the buy signal occurs, and the stop loss level is plotted on the chart.
Sell Signal:
A sellSignal is generated when the fast EMA crosses below the slow EMA.
The stop loss for the short trade is calculated when the sell signal occurs.
Plotting:
Buy and Sell Labels: "BUY" and "SELL" signals are plotted as labels above or below the bars when the crossovers occur.
Stop Loss Levels: When a buy signal occurs, the stop loss for the long position is plotted in orange. When a sell signal occurs, the stop loss for the short position is plotted in purple.
Alerts:
Alerts are available for the buy and sell signals as well as for the stop loss levels being reached, so you can track those events in real-time.
How it Works:
The buy signal triggers a long position, and the stop loss is calculated below the entry price by the percentage specified in stopLossPercent.
The sell signal triggers a short position, and the stop loss is calculated above the entry price.
The stop loss is drawn on the chart when a position is open, so you can visually track where your exit would be if the price moves against you.
How to Use:
Copy the updated script into TradingView's Pine Script editor.
Apply it to your chart.
You'll see the EMAs plotted, along with "BUY", "SELL", and stop loss levels for both long and short trades.
You can set up alerts from TradingView’s alert feature to notify you when buy, sell, or stop-loss levels are triggered.
Feel free to tweak the stopLossPercent input to better fit your risk management preferences!
Let me know if you'd like further customization or need help with anything else!
EMA Crossover IndicatorThis script will not perform any trading operations; it’s purely for visualization and generating alerts. You can easily track the crossovers and make manual trading decisions or integrate it with other tools.
Let me know if you need any adjustments!
Moving Average ExponentialICHI+EmA
You can change the length of the EMA as it is suitable for you
And also you change the numbers of ichi for your own stratagy this indicator is mixture of these two hope you enjoy it
Soup ModelIndicator Soup Model.
The indicator includes features:
- Hourly separator.
- Daily standard deviation.
- Hourly standard deviation.
TP/SL Percentage & RR Visual Tool📊 TP/SL Percentage & RR Visual Tool
This advanced trading indicator is designed to enhance your decision-making process by visually displaying dynamic risk-to-reward (RR) levels, trend conditions, and market signals directly on your chart. Whether you're scalping or swing trading, this tool gives you real-time insight into trade opportunities with built-in logic from the UT Bot.
🧠 Key Features:
TP/SL Levels: Automatically plots up to 3 customizable take-profit and stop-loss levels based on percentage.
Risk-to-Reward Visualization: Clearly displayed entry, TP, and SL zones to help manage risk and improve trade planning.
UT Bot Alerts Logic: Smart entry and exit signals using UT Bot crossover logic with optional Heikin Ashi candle filtering.
Trend Strength Meter: Detects market structure and trend direction using multi-timeframe EMAs (20 vs 50 EMA).
Volatility Indicator: Shows high or low volatility zones using ATR with a 100-period average benchmark.
Session Dashboard: Includes real-time trend analysis across 5m, 15m, 1h, 4h, and 1D timeframes.
Price Action Signals: Detects bullish and bearish engulfing patterns.
Customizable EMA Overlay: Plot EMA 20, 50, 100, and 200 directly on the chart.
Dynamic Table Display: Summarizes all key data points in a fixed-position, Excel-style table for quick reference.
🔧 Fully Customizable:
TP/SL percentages and line styles
EMA lengths and colors
Table placement
Heikin Ashi logic toggle
Volatility and trend sensitivity
VWAP Bands with Price LineUse it in new pane below the main pane.
Nothing fancy, u can just see the S/R levels in new pane with price line. I made it for personal use only.
RsiVirgilSignalsThrough this MVRV indicator we will know when to sell, when to buy coins, we are guided by RSI, when it is down, buy, when it is up, we sell.
Niveles intradía reinicio diario📌 Script Description: Projected Intraday Fibonacci Levels from 02:00 (Madrid)
This advanced Fibonacci level indicator is specially designed for intraday traders who seek high-precision reaction zones starting from a fixed daily control point.
🕑 How does it work?
Each day at 02:00 Madrid time (GMT+1), the indicator captures the opening price of that candle as the base level (0.84), and then projects upper and lower levels based on custom, non-standard but highly effective proportions.
🔢 Included Levels:
Upper levels: 0.068, 0.42, 0.21, 0, and extensions to 1.79, 2.00
Lower levels: 1, 1.26, 1.47, 1.68, 1.89, 2.10
Key level (0.84): visually highlighted in light blue for quick reference
💼 Use Cases — Ideal for:
Detecting high-confluence entry and exit zones
Spotting reversals or continuations from projected areas
Building intraday strategies based on breakouts, pullbacks, or mean reversion
🎯 Key Advantage:
Unlike traditional Fibs that use the high/low of the day, this tool activates at a fixed time (02:00), allowing for consistency, automation, and daily comparability.
4 Fast Stochastic Indicators with %K Smoothingsimilar 4 fast stochastic indicator with different type of indicators it showing bullish bearish ness in different time intervasl u can analyze easily
4 Fast Stochastic Indicatorsthis contain four type of stochastic in different time frames it explain hte bullish bearish ness in different time frames
Auto Fibonacci Retracement (Clean)🔧 1. Inputs
lookback = input.int(50, title="Lookback Period")
lookback = input.int(50, title="Lookback Period")
You can adjust how far back the script looks to find the highest high and lowest low.
Default: last 50 candles.
📈 2. Finding High and Low Points
swingHigh = ta.highest(high, lookback)
swingLow = ta.lowest(low, lookback)
swingHigh = ta.highest(high, lookback)
swingLow = ta.lowest(low, lookback)
Finds the highest price and lowest price within the selected lookback period.
These define the range used for calculating Fibonacci levels.
🧮 3. Calculate Fibonacci Levels
diff = swingHigh - swingLow
diff = swingHigh - swingLow
We calculate 7 Fibonacci levels:
Level Formula
0% swingLow
23.6% swingLow + 0.236 * diff
38.2% swingLow + 0.382 * diff
50% swingLow + 0.5 * diff
61.8% swingLow + 0.618 * diff
78.6% swingLow + 0.786 * diff
100% swingHigh
These are commonly used retracement levels to identify potential support/resistance zones.
📏 4. When to Draw Lines
drawFib = bar_index == ta.highestbars(high, lookback) or bar_index == ta.lowestbars(low, lookback)
drawFib = bar_index == ta.highestbars(high, lookback) or bar_index == ta.lowestbars(low, lookback)
We only draw lines when the current bar is either the most recent swing high or swing low.
This avoids cluttering your chart with hundreds of unnecessary horizontal lines.
🎨 5. Drawing the Lines
line.new(...)
line.new(...)
Horizontal lines are drawn at each Fib level.
We offset the x-axis slightly (bar_index + 20) so the lines extend forward on the chart.
Each level uses a different color to visually separate them.
🧠 Use Case
You can use this to:
Identify where the price may pull back or bounce.
Plan entry or exit levels based on retracement.
Visually see key technical areas.
✅ Key Benefits
✅ Clean, minimalist design
✅ Automatically updates to latest price structure
✅ Avoids drawing clutter
✅ Ready to customize