Mits Pixel BTCUSDStrategy
Using Rsi Stochastic, Hull Moving Average, Price Action and volume differences to get signals
HOW IT WORKS
Pixel parts :
- (U) The first pixel is a pixel that shows a trend during an uptrend, a trend when the market is considered bullish (above the MA line)
- (V) The second pixel is the volume pixel, showing the up and down movement of the buy / sell volume .
- (M) The third pixel is the momentum pixel, showing the market momentum whether it is overbought or oversold.
- (D) The fourth pixel is a pixel that shows a trend during a downtrend, a trend when the market is considered bearish (below the MA line)
When the price opens above the MA line, 3 pixels will appear, namely the first Pixel which is called the Trend up Pixel, Pixel Volume , and also the Momentum Pixel.
When the price opens below the MA line, 3 pixels will appear, namely Pixel Volume , Pixel Momentum, and the bottom one is the Pixel Down Trend.
* Pixel up trend (appears when the open is above the MA line)
- The pixel will show a solid green color when a gap up is opened or volume up, then the close price is greater than the open price.
- The pixel will show a light green color if there is normal strengthening (the close is bigger than the previous day's close without creating a gap up), then the close price is bigger than the open price.
- Pixel will show yellow color if it meets several criteria, for example, close is equal to open or close is bigger than the previous close but close is smaller than open.
- The pixel will show a dark red color when there is attenuation and a Gap down is created, then the close price is smaller than the open price.
- Pixel will show red color if there is normal weakening (close is smaller than the close of the previous day without creating a gap down), then the close price is smaller than the open price.
* Pixel down trend (appears when the open is below the Moving Average)
The pixel color indication is the same as the Trend up Pixel
* Volume Pixel
- The pixel is dark green when there is an increase and a gap up is created and the volume for that day is bigger than the volume of the previous day.
- The pixel will be green if there is a normal strengthening and also the volume for that day is greater than the volume of the previous day, or there is a gap up but the volume is smaller than the volume of the previous day.
- The pixel is yellow if it meets several conditions, for example, the volume of the day is the same as the volume of the previous day.
- The pixel is dark red when there is weakness and a Gap down is created and also the volume of the day's weakness is greater than the volume of the previous day.
- The pixel is red if there is normal weakening and also the volume of the day's weakness is bigger than the previous day's volume , or if there is a gap down but the volume is smaller than the previous day's volume .
* Momentum Pixel (basically StochRSI combined with other HMA , TopBox (Resistance), BottomBox(Support)).
- The pixel is dark green when it meets several conditions, for example the golden cross is below 50.
- The pixel is green if it meets several conditions, for example a golden cross below 50 without Gap up.
- Pixel will be yellow if it meets several conditions, for example k is greater than d and k has entered the overbought area (greater than 80).
- Pixel is dark red when it meets several conditions, for example k is smaller than d and k has entered the overbought area.
- Pixel is red when it meets several conditions, for example k is smaller than d and k is greater than 50 and k is less than 80.
Bar Color
Dark Green : Price Up + Volume Up
Green : Price Up + Volume Down
Dark Red : Price Down + Volume Up
Red : Price Down + Volume Down
Too many details that cannot be detailed one by one , but in broad outline as explained above.
HOW TO USE
* Signals Buy
- Strong Buy : All pixels are green, and Momentum Pixel is dark green.
- Normal Buy : All pixels are green or two dark green (one of them must momentum pixel) and one yellow.
- Spek Buy : * Two green pixels (one of them must momentum pixel) and one yellow or 1 green/dark green in momentum pixel, and other pixels yellow
* Signals Sell
- Strong Sell : All pixels are red, and Momentum Pixel is dark red.
- Normal Sell : All pixels are either red or two dark red (one of them must momentum pixel) and one yellow.
- Spek Sell : Two red pixels (one of them must momentum pixel) and one yellow or 1 dark red in momentum pixel, and other pixels yellow
- Warning Sell : Momentum pixels are dark red, regardless of the color of the other pixels.
* Best use for trading in BTCUSD markets
* Change from just an invitation script to a protected script for publication.
* Final Release
Thanks for Moderators
Candlestick analysis
Mark 4H Candle SpanThis TradingView indicator, called "Mark 4H Candle Span", serves to **visually highlight alternating 4-hour time blocks** directly on the price chart.It does this by coloring the background of the chart for one 4-hour period and leaving the next 4-hour period uncolored, creating a pattern of vertical stripes.---### How It WorksThe code operates in two main steps:1. **Calculation of the 4-Hour Block**:The line `session_id = math.floor(time("1") / (1000 * 60 * 60 * 4))` calculates a unique identification (ID) number for each 4-hour block.* `time("1")`: Gets the current time (in milliseconds).* `(1000 * 60 * 60 * 4)`: Is the total number of milliseconds in 4 hours.* By dividing the time by the 4-hour interval and rounding down with `math.floor`, the script assigns the same `session_id` to all the candles within the same 4-hour block.2. **Background Coloring**:The line `bgcolor(session_id % 2 == 0 ? color.new(color.blue, 85) : na)` decides whether to color the background.
Candle Overlay htf embedHTF Candle Overlay for mltf candle
A candle overlay that provides ease of use for the 1m chart to see candle structures of 30m or more from 1m. (with OHLC)
Bbhafiz ALERT SIGNAL📌 Indicator Overview
Uses EMA20 & EMA50 to detect trend direction and identify crossover/crossunder points.
RSI filter (default ON) to improve accuracy — BUY only when RSI > 50, SELL only when RSI < 50.
Displays a BUY label below the candle and a SELL label above the candle when signals appear.
AlertCondition added so TradingView can send push notifications, pop-ups, or emails when a signal appears.
⚡ Main Logic:
BUY → EMA20 crosses above EMA50 + RSI > 50 (if filter is ON) + price above EMA20.
SELL → EMA20 crosses below EMA50 + RSI < 50 (if filter is ON) + price below EMA20.
🎯 Advantages of This Version:
No need to stare at the chart — alerts will notify you when a valid setup appears.
Can be used for scalping (M1, M5) or swing trading (H1, H4).
Perfect for busy traders since alerts only trigger on confirmed setups.
Pivot Points HL DetailedThis indicator marks important turning points in the market, showing you the most recent swing high and swing low as horizontal lines across the chart. Each pivot line has a price label where it formed and a small counter that updates whenever the market touches that level again. The line’s color reflects the prevailing trend, determined by an EMA filter, so you can quickly see if the level is likely acting as support or resistance in the current market environment.
It works by scanning recent bars for points where price made a local high higher than several bars to its left and right, or a local low lower than several bars to its left and right. These pivots are calculated directly from price action using the ta.pivothigh and ta.pivotlow functions. Once identified, the level is tracked in real time, counting every time price crosses it. The EMA provides context: if price is above the EMA, the market is considered in an uptrend and the pivots are colored to match; if price is below, they’re marked as part of a downtrend.
For traders, this offers a clean way to see where the market has turned before and whether those levels are still relevant. Strong levels often show multiple touches, which can be used for entries, exits, or risk management. The built-in alert system can notify you when price approaches either the most recent swing high or swing low, so you can react quickly.
This tool can be applied in almost any market — forex, stocks, indices, commodities, or crypto — because price tends to respect recent swing points regardless of the asset class. It tends to be most effective in liquid markets, where many traders see and react to the same key levels, and it’s valuable in both trending and ranging conditions, though the EMA trend filter adds extra clarity when the market is moving directionally.
BTC Multi-Session Open Breakout with Dynamic Sensitivitybtc tool using algo detection and a dynamic sensitivity tool to avoid breakouts and see-saw action. First draft.
1H MA20 Downbreak Alert1H MA20 Downbreak Alert
1H MA20 Downbreak Alert1H MA20 Downbreak Alert1H MA20 Downbreak Alert
Unmitigated Imbalances [TakingProphets] (High Timeframe)Unmitigated Imbalances
Unmitigated Imbalance is designed to automatically detect and display active Fair Value Gaps (FVGs) across multiple higher timeframes and your current chart. It only keeps the ones that remain unmitigated, helping you clearly see where price has “unfinished business” and potential liquidity draw areas. The tool extends these levels forward until they are tagged according to your chosen mitigation criteria, then removes them automatically.
The indicator uses the classic 3-bar FVG structure:
– Bearish FVG forms when the low of the third candle back is above the high of the first candle.
– Bullish FVG forms when the high of the third candle back is below the low of the first candle.
– Each detected gap must meet a minimum size threshold, which is determined automatically from the Sensitivity setting and adjusted for the symbol type.
Higher timeframes (up to 4) can be plotted simultaneously with your current chart’s gaps. The script merges overlapping levels from different timeframes into one clean label, showing all the contributing timeframes together (for example: M15 + H1 + H4). This makes it easy to spot high-confluence levels without cluttering your chart.
Key features
– Multi-timeframe detection: up to 4 custom HTFs plus your current chart.
– Automatic gap size filtering based on chosen Sensitivity (High, Medium, Low).
– Choice of Wick or Close-based mitigation logic.
– Lookback control: 1 Day, 1 Week, 1 Month, or Max.
– Combined labels for overlapping gaps with clear timeframe tags.
– Separate color and style settings for each timeframe’s bullish and bearish gaps.
– Labels can be positioned Left, Right, or Center Above for maximum clarity.
– Automatic line extension until mitigation or until they exceed the lookback period.
How to use
Select your desired higher timeframes in the HTF1–HTF4 settings.
Choose the Sensitivity level to control the minimum gap size detected.
Decide on Wick or Close mitigation according to your trading rules.
Use the Lookback setting to limit how far back the script checks for gaps.
Watch for levels where multiple timeframe labels are stacked — these can carry greater significance.
Incorporate the levels into your existing strategy, using them as context rather than entry signals.
Practical notes
– Current timeframe gaps reset each trading day to keep the chart relevant to intraday bias.
– Higher timeframe gaps remain until mitigated or until the lookback period expires.
– Large lookback periods with multiple HTFs can increase chart load — adjust settings as needed.
– This indicator is a mapping and context tool, not a signal generator. Always apply it alongside your own analysis.
Relative Strength Buy/Sell SignalsThis Pine Script builds on the MarketSurge-style Relative Strength indicator. It calculates the RS line by comparing the stock's close to a benchmark (default: SPY). Buy signals are generated when the RS line crosses above its moving average (default 10-period SMA), indicating improving relative strength. Sell signals occur when it crosses below, suggesting weakening relative strength. Signals are labeled "BUY" (green) and "SELL" (red) on the chart, with background highlights.
It also retains the new 52-week RS highs (orange circles) and lows (purple circles), which can serve as additional confirmation for outperformance or underperformance.
Note: This approximates relative strength for trading signals but does not replicate the proprietary IBD RS Rating (a 1-99 percentile rank across all stocks). For best results, use on daily charts and combine with other analysis. Backtest thoroughly, as no strategy guarantees profits
NY Open Momentum Sniper MTF v6Finding the best optimal entry to the trade in NY. This will help you find some key zones during the NY killzone and help you pick out the best spots to enter the trade.
Chiefs sessions 4This is just an indicator marking the most recent asian session and london session highs and lows, and also marks off previous days high and lows in white. Blue is asian session and red is london. This indicator resets every day.
Indicator collection by 200K🇲🇳 Монгол хэл
"Indicator Collection by 200K" нь олон төрлийн хэрэгтэй индикаторуудыг нэг дор цуглуулсан багц юм. Жишээ нь, 5 EMA нь богино хугацааны чиг хандлага, эргэх боломжит цэгүүд болон дэмжлэг, эсэргүүцлийн түвшинг илрүүлэхэд тусална. Мөн session marker, өндөр цагийн хүрээний high/low шугамууд гэх мэт хэрэгслүүдийг ашиглан зах зээлийг илүү тодорхой харах боломжтой. Энэхүү индикатор нь шинэхэн болон туршлагатай трейдерүүдэд хоёуланд нь тохиромжтой бөгөөд өдөр тутмын арилжаанд хэрэглэхэд энгийн, ойлгомжтой.
🇬🇧 English
The Indicator Collection by 200K combines several useful indicators in one package. For example, 5 EMA helps identify short-term trends, potential reversal points, and support/resistance levels. It also includes tools like session markers and higher timeframe high/low lines to give you a clearer view of the market. This indicator is designed to be simple and easy to use for both beginners and experienced traders in their daily trading.
SNR Pro by LogicatSNR Pro by Logicat — read the tape like a pro.
This indicator builds clean, close-based Support/Resistance from pivots and then hunts for actionable touches and breaks in real time.
Feature 1 – Strict Next-Bar Retest: Instantly flags the very next candle that taps a fresh S/R and rejects it (bulls at S, bears at R). No early signals, no clutter.
Feature 2 – Pair-Bar Retest: When a new S/R forms (two-bar pivot), the second bar gets checked for a real touch of the previous level—precision retests only.
Feature 3 – Break Watch: Untouched levels are “broken” the moment price closes beyond them, marked clearly so you know when structure shifts.
Feature 4 – SBR/RBS Zones: Right after a valid break, it auto-plots entry boxes (S→SBR or R→RBS) projecting forward from the break bar—your map for the next reaction.
Feature 5 – EG Zones: Captures momentum boxes from seed candles; overlapping bull/bear zones highlight extreme areas worth your attention.
A tidy sticky-note in the corner calls the latest signal (“BUY/SELL/Exit”), and alerts keep you notified even off-chart. Everything is color-customizable (hello, neon 🎇). Use it to spot clean rejections, fresh breaks, and high-probability reaction zones—fast.
Quarterly Shifts Predicition This Predicts the next upcoming quarterly shift with percentages and as well as a constantly updating informational piece of code to get you the most updated and precise prediction i hope you all enjoy
Price Action Levels By VIPIN (RSI, MACD, BOS/CHoCH, FVG)Title:
VT Price Action Levels + Optional RSI, MACD, BOS, CHoCH, FVG
Description:
This multi-tool indicator combines price action key levels with optional confluence tools for advanced trade analysis.
Core Features:
• Previous Day & Today High/Low: Automatically plots yesterday’s and today’s high/low with customizable colors & widths.
• Strong Support/Resistance: Detects high-probability S/R zones based on swing structure, ATR-based swing filtering, and minimum gap distance.
• Trend Filters: Optional EMA50 & VWAP to visually confirm bias.
• RSI Module: Shows bias (overbought/oversold zones) with optional candle coloring.
• MACD Module: Plots bullish/bearish MACD cross markers directly on chart.
• Structure Analysis: BOS (Break of Structure) & CHoCH (Change of Character) labels to help identify market shifts.
• Fair Value Gaps: Highlights recent bullish/bearish FVGs for potential imbalance zones.
• Fully Customizable: Every feature can be toggled ON/OFF from settings panel.
Usage Idea:
Enable only the modules you need to keep charts clean and focused. For example, keep PDH/PDL and Strong S/R always on, and switch on RSI/MACD/BOS only when looking for trade confirmation.
This script is designed for traders who combine price action + SMC concepts for intraday or swing setups.
Notes:
• Works on all timeframes and markets (forex, crypto, stocks, indices).
• All elements are customizable in the settings panel.
• This script does not generate buy/sell signals — it is a tool for manual analysis.
Wickless Precision IndicatorThe Wickless Precision Indicator is a powerful tool designed to identify and highlight wickless and tailless candlestick patterns on your TradingView charts. A wickless candle, where the open or close price equals the high or low, signals strong directional momentum and potential support or resistance levels. This indicator automatically detects these unique candles, drawing customizable horizontal lines at their key price levels to help traders spot critical zones for entries, exits, or reversals.
Key Features:
Automatic Wickless Detection: Identifies bullish (no lower wick) and bearish (no upper wick) candles with precision.
Dynamic Line Plotting: Draws horizontal lines at the high or low of wickless candles, extending until price interaction or user-defined conditions.
Customizable Settings: Adjust line styles, colors, and sensitivity thresholds to suit your trading style.
Visual Markers: Highlights wickless candles with distinct shapes (e.g., triangles or crosses) for easy identification.
Alert Integration: Set real-time alerts to stay notified when wickless candles form, ensuring you never miss a potential trading opportunity.
Use Cases:
Pinpoint strong support/resistance zones where price rejection is evident.
Identify high-probability entry or exit points based on momentum-driven candles.
Enhance price action strategies with clear visual cues for market sentiment shifts.
Perfect for traders seeking to capitalize on clean, wickless price movements, the Wickless Precision Indicator simplifies technical analysis and boosts trading confidence.
ICT/SMC Liquidity Map V3 KyroowThe indicator is designed to map liquidity on the chart following the ICT/SMC logic, with the added feature of precise tracking of the Asian session.
It shows you:
PDH / PDL → Previous Day High & Low, automatically removed once taken out.
EQH / EQL → Equal Highs & Equal Lows (double tops/bottoms), with pip tolerance and a check to ensure no candle has already "cleared" the range.
ASH / ASL → Asian Session High & Low (the highs/lows of each closed Asian session).
Asian Session → Displayed as a box or shaded area, with visual history.
Dynamic tolerance management → EQH/EQL can have different tolerances depending on the timeframe.
Automatic removal → Levels are removed once the market takes them (via wick or body, configurable).
💡 In practice:
It helps you quickly identify likely liquidity grab zones, whether they come from the previous day, the Asian session, or equal highs/lows. This allows you to anticipate market reactions around these levels.
ESM1! EXPONENTIAL MOVING TRENDLINE (EMT)This indicator uses various calculations to find brake out entries as well as continuation during trends.
The indicator triggers and displays yellow arrows and notifications so users know exactly when and what type of position they should take.
Every position should be taken with a 5 points Stop Loss
Take profit targets are up to each user, but have in mind the indicator has a 90% win rate at 30
-50% profit targets
Scalp Swing indicator [ CRM ]The Scalp Swing indicator is designed to provide clear, actionable trade setups for both short-term scalping and longer swing positions — all on a single chart.
It blends advanced trend detection with structured entry/exit mapping so you can trade with clarity and confidence.
🛠 What it Does
Trade Direction Clarity – Instantly identifies probable BUY and SELL zones with visual chart signals.
Structured Risk & Reward – Auto-plots Entry, Stop Loss, and three progressive Target levels for each signal.
Dynamic Trend Guidance – Keeps you aligned with prevailing momentum.
Key Price Zones – Highlights previous daily highs/ lows/ close and weekly highs/ lows to spot potential reaction points.
Multi-Tool Integration – Internally uses a robust combination of trend, moving average, momentum oscillator, and session-based logic (confidential, proprietary blend).
🎯 Key Benefits
Works for both scalping and swing strategies.
One-chart simplicity – no need to load multiple indicators.
Trade setups remain clean and visible without clutter.
Can be used across multiple assets (indices, crypto, commodities).
Designed for traders who value both precision entries and disciplined exits.
📸 Visual Examples
Example BUY Setup
Clean long trade signal with predefined targets and stop loss for structured risk management.
Example SELL Setup
Clear short trade setup highlighting profit-taking zones and protective stop levels.
🕒 Recommended Timeframes
3min / 5min → Intraday & Scalping
4H / Daily Chart → Swing & Positional setups
Before entering, analyze higher timeframes (Weekly/ Daily/ 4H/ 1H/ 15min)
⚠️ Important Learning Note
This tool is meant to aid your learning and strategy development. Use it with:
A clear trading plan
Disciplined risk management
Correct position sizing
Strict Stop Loss rules
Trade only when the risk-to-reward ratio is favorable
In a sideways or opposing market, no trade can be the best trade
True wealth creation happens only through long-term investing
For disciplined risk management, limit intraday exposure to 10% of your capital
🔰 Beginner Path
Start with paper trading for 3 months.
Avoid option/ futures trading initially — options are high-risk instruments and require advanced understanding.
💡 “Learn first, earn later.” Your capital’s growth or loss is entirely in your control.
⚠️ Disclaimer
This indicator and content are intended purely for educational and informational purposes. They do not constitute financial, investment, or legal advice.
All opinions are personal interpretations based on research and are not recommendations to buy, sell, or hold any security.
Always consult a SEBI-registered advisor or certified financial planner before making investment decisions.
The creator is not responsible for any financial loss or decision taken by viewers.
Use this tool as support to your own strategy — not as a standalone trading system.
Happy Trading, CHEERS!