🔥 Nikko Ultra-Active Scalper (MACD + RSI)🔥 Nikko Ultra-Active Scalper (MACD + RSI)
This is a fun, high-frequency scalper with some unpredictable results in backtesting. II recommend you backtest it over a 1-year period with CRYPTOCAP:SUI to see for yourself.
While the strategy works in live conditions, there seems to be a strange issue with how TradingView calculates the backtesting (the Hold blue line behaves oddly). It might be due to certain factors in the script's execution, but I’m not entirely sure. Sor example I get a negative PNL while making profit? That is weird. I might have missed something.
I’ve not encrypted the source code, so I’m hoping someone in the community can help identify why the backtest results are behaving unexpectedly.
Enjoy experimenting with this little bot, use 1m-2n timeframe— and while it’s fun to imagine getting rich with minimal effort, remember, it’s just for entertainment and educational purposes!
----------------------------------------------
DESCRIPTION: READ FIRST
This script is a high-frequency trading strategy written in Pine Script v6 for use on TradingView, designed to open several long positions per day on fast-moving markets like crypto. Here's how it works:
📌 Strategy Overview:
It uses short-term technical indicators — MACD and RSI — to detect brief momentum bursts, enters trades quickly, and exits with a tight take-profit. It’s optimized for 1-minute timeframes.
🧠 Entry Conditions (When it Buys):
The strategy opens a long position when:
MACD > Signal Line using fast settings (6,13,5):
This shows short-term upward momentum.
RSI > 40 with a 7-period length:
This confirms bullish strength, even if modest.
Because the settings are very relaxed, this combination triggers frequently, producing multiple trades per day.
🎯 Exit Condition (When it Sells):
It closes all open positions when:
The price rises to a set profit target (takeProfitPercent, default 0.9%).
There is no stop loss or trailing stop — this means the trade will stay open until it either hits the profit or you close manually (or modify the script).
⚙️ Other Features:
pyramiding = 100
Allows up to 100 simultaneous open positions (great for scalping in volatile uptrends).
strategy.percent_of_equity = 1
Each trade uses 1% of available equity, but can be adjusted.
Visual Bar Coloring
Bars turn green when an entry condition is met (barcolor(entryCond ? color.lime : na)).
📈 Designed For:
1-2 minute(S) timeframes
Volatile assets (crypto, meme coins, high-volume stocks)
High-frequency trading where you're in/out fast with small gains
Pine yardımcı programları
TradePlanner ProPlan smarter. Trade with precision.
TradePlanner Pro is a professional-grade overlay tool designed to streamline your trading decisions by visually organizing your trade plans directly on the chart. Built for traders who value preparation and clarity, this script enables precise entry planning, risk management, and target visualization—all tailored per symbol.
Core Purpose
TradePlanner Pro helps you map out potential trades using pre-defined symbol-based presets. It dynamically calculates position sizes based on your account size or fixed risk, then visualizes key trade levels (Entry, Take Profits, Stop Loss) with profit/loss metrics in both dollar and percentage terms. It's the perfect companion for traders who prepare their setups in advance and want their plans clearly represented on the chart.
Key Features
🔹 Per-Symbol Presets: Define entries, up to 3 take-profit levels, and stop-losses for each ticker.
🔹 Dynamic Risk Sizing: Choose between percentage-based risk or fixed dollar risk per trade.
🔹 Visual Trade Mapping: Automatically plots Entry, TP1–TP3, and SL lines on your chart.
🔹 Real-Time P&L Labels: Displays profit/loss amounts and percentages, with optional R/R ratios.
🔹 Custom Investment Display: Shows how much capital is allocated per trade.
🔹 Clean, Configurable UI: Adjust label positions, font sizes, opacity, and label visibility to match your style.
Whether you're swing trading or day trading, TradePlanner Pro helps you stay disciplined, organized, and confident in your execution.
How to Use TradePlanner Pro – Step-by-Step Guide
TradePlanner Pro is designed to be easy to set up while giving you full control over how your trades are visualized and calculated. Here’s how to get started:
1. Start with Default Settings
By default, the script assumes:
Account Size: $10,000
Max Money per Trade (%): 1.0%
Max Risk (USD): 0 (disabled; only percentage risk is used)
This means the script will size each trade to risk 1% of your account balance per trade unless you override it with a fixed USD risk amount.
2. Set Up Your Symbol Presets
The "Symbol Presets" input is a flexible text area where you define trade setups for each ticker.
Format (one per line):
SYMBOL:Entry,TP1 ,SL
Example:
AAPL:250,260,270,240
MSFT:100,110,90
TSLA:180,200,170
You can include 1 to 3 take-profit levels.
The script will only activate for the current chart’s symbol, matching what's listed.
3. Customize Risk Parameters
You can use:
Account % Risk – Based on account size and % risk.
Fixed USD Risk – When a dollar amount is entered (>0), it takes priority and calculates share size based on the risk per share.
There's also an option to round share quantities down to whole units, which is useful for stock or crypto trading platforms that only allow whole-number units.
4. Choose What to Display
Toggle on/off these elements as needed:
Show Entry/TP/SL Lines
Show P&L Labels – Profit/loss amounts at each target and SL.
Show Amount Invested – Includes total dollar value in the quantity label.
Show Percentages – Adds % gain/loss to each label.
Show Risk/Reward Ratios – Optionally displayed beside or below TP labels.
You can further adjust:
Font size and label opacity
Label position offset – In percent of price range, so they don’t overlap the actual levels.
5. Read the Visual Outputs
Once the preset matches the current chart symbol:
Lines will appear for Entry, TP1-TP3, and Stop Loss.
Labels will display your:
Trade quantity (and invested amount)
Dollar and % profit at each target
Total loss at stop loss
Optional R/R ratios
Everything updates dynamically and adjusts to your current chart scale and bar availabilit
Niveles operativosniveles operativos para marcar zonas a partir de una zona base separadas tantos puntos como desee, el intervalo de niveles separa hacia arriba o abajo segun necesites si aumentas los niveles aumentaras la distancia los niveles marcados seran los mismos, solamente separas la distancia, recomendacion empezar con nivel bajo de 20 para entender la separacion.
Operating levels to mark zones from a base zone separated by as many points as you want, the level interval separates up or down as needed. If you increase the levels you will increase the distance. The marked levels will be the same, you only separate the distance. Recommendation: start with a low level of 20 to understand the separation.
豪豪均//@version=5
indicator("豪豪均", overlay=true)
// 偵測新的一天開盤
isNewDay = ta.change(time("D")) != 0
// 宣告變數儲存 VWAP 計算資料
var float cumPV = na // 價格 * 量 累積
var float cumVol = na // 成交量累積
// 每天重新初始化
if isNewDay
cumPV := hlc3 * volume
cumVol := volume
else
cumPV += hlc3 * volume
cumVol += volume
vwapToday = cumPV / cumVol
plot(vwapToday, title="當日 VWAP", color=color.orange, linewidth=2)
MNQ/NQ Risk Management ToolThis tool helps MNQ and NQ futures traders automatically calculate position size based on either a fixed dollar risk or a percentage of account balance.
Simply enter your stop loss level and choose whether to risk a set dollar amount or a percentage of your account. The script will display how many contracts to trade based on your setup.
Features:
Calculates contracts based on stop loss and risk size
Toggle between dollar-based or percent-of-account risk
Works with both MNQ ($2/point) and NQ ($20/point)
Automatically updates based on current price and direction (long or short)
Displays a clean info box on your chart with risk, contracts, and settings
This tool is ideal for intraday or swing traders who want to stay consistent with risk management across trades.
公允價值缺口📌 Indicator Name: Fair Value Gap (FVG)
This TradingView indicator identifies and visualizes Fair Value Gaps (FVGs), which are price imbalances where no trading occurred between two price levels, often indicating potential areas of market interest.
📌 指標名稱: 公允價值缺口 (FVG)
這個 TradingView 指標會偵測並可視化「公平價值缺口(FVG)」,FVG 是價格在兩個區間之間出現來不及成交的情況,通常代表潛在的市場關注區域。
公平價值缺口📌 Indicator Name: Fair Value Gap (FVG)
This TradingView indicator identifies and visualizes Fair Value Gaps (FVGs), which are price imbalances where no trading occurred between two price levels, often indicating potential areas of market interest.
🔧 Key Features:
FVG Detection Logic:
Bullish FVG: Detected when the current low is higher than the high two bars ago.
Bearish FVG: Detected when the current high is lower than the low two bars ago.
Includes a minimum gap size filter (in points) to ignore insignificant gaps.
Gap Visualization:
Each FVG is drawn as a shaded box with customizable colors for bullish and bearish gaps.
The box extends forward a configurable number of bars (FVG延伸長度).
Midline and Label:
A midline is drawn through the center of each gap with customizable style (solid, dotted, dashed) and independent opacity.
Labels can be customized (text, alignment, color, size).
Filled Gap Filtering:
Optional setting to hide gaps that have been completely filled (i.e., price has fully crossed the gap zone).
Performance Controls:
Limit the number of displayed gaps with 最大顯示缺口數量 to maintain chart performance.
Short Straddle Entry Signal + DashboardOverview
This indicator is designed to identify ideal entry points for a short straddle (selling both call and put at the ATM strike) by detecting periods of low directional momentum and compressed price action. It overlays entry signals directly on your chart and displays a compact dashboard showing the status of each condition in real time.
What It Does
Measures Trend Strength (ADX)
Uses the DMI/ADX (ta.dmi) to quantify trend.
Flags “sideways” when ADX is below your threshold (default 20).
Checks Momentum (RSI)
Computes RSI over your chosen length (default 14).
Expects RSI to sit between your lower and upper bounds (default 40–60), indicating no strong momentum.
Assesses Price Compression (ATR vs Candle Range)
Compares the current candle’s high‑low range to a fraction of the ATR (default 0.8× ATR).
Tight candles suggest low volatility—ideal for premium decay.
Signals Entry
When all three conditions are met on a bar, you see a green triangle below that bar.
An alert can fire to notify you immediately.
Dashboard Table
Permanently fixes row and column headers on the first bar.
Updates every bar with current ADX value, RSI value, and the candle/ATR ratio, each marked ✅ or ❌ in green/red.
How to Use
Apply to any chart (NIFTY, BANKNIFTY, ETH/USDT, etc.).
Adjust inputs to suit your market’s typical volatility (e.g., tighter range multiplier in crypto).
Watch for green triangles—this is your cue to sell the ATM call and put.
Place a stop‑loss on the side that begins to move strongly (e.g., buy back the call if price breaks up).
Manage position actively—close out at predetermined profit targets (e.g., 30–50% premium decay).
Best Time Frame
15‑minute to 1‑hour charts work well in liquid equity indices (NIFTY, Bank NIFTY).
5‑ to 15‑minute charts can be used for high‑volatility instruments like Ethereum, but consider tightening your range multiplier or shortening DMI/RSI periods.
Avoid extremely low‑timeframes (1 min) where noise triggers false signals, or multi‑day frames where premium decay is too slow.
Tips & Caveats
Ideal in rangebound markets—stay out when clear trends form.
High IV environments (e.g., pre‑event) help you collect richer premiums—just beware of sudden spikes.
Combine with OI/Max‑Pain analysis for better strike selection.
Always backtest on your preferred asset and expiry cycle before trading live.
HTF Support & Resistance]Enable the timeframes you need (D1, 4H, 1H, 15M) from the settings.
Use it to identify key zones where price may bounce or break.
Recommended for multi-timeframe analysis and scalping.
Signal Generator [SciQua.com]Signal Generator — Modular Signal Logic Tool
Signal Generator is a configurable utility designed to help users build and visualize custom signal logic using normalized and optionally smoothed input series . It supports a variety of trigger conditions , making it suitable for a broad range of technical signal detection tasks. This tool is intended for analytical and educational purposes as part of the broader SciQua framework for technical research and visualization.
This script does not execute trades and does not constitute financial advice. Results may vary depending on configuration and market context.
🔍 Purpose
Pre-process inputs via smoothing and normalization
Detect specific behaviors or transitions in data series
Configure multiple types of signal triggers
Annotate signals directly on the chart using optional shapes or labels
Apply debounce logic to manage signal frequency
🧱 Script Structure
1. Input Source
Default input: close
Any custom data series (e.g., indicator output) can be used
2. Smoothing (optional)
Methods: sma, ema, rma, hma, tema, gaussian, etc.
Purpose: Reduce short-term volatility or noise in the signal
3. Normalization (optional)
bounded (0–1 scale)
unbounded (centered scale)
zscore (statistical standardization)
none (raw input)
Helps align input behavior across different symbols/timeframes
⚙️ Trigger Methods
above, below — Static threshold comparisons
crosses, crosses above/below — Value crossing a line
equal, not equal — Equality checks
in range, outside range — Range boundary logic
increases, decreases — Detects directional change
equals previous, changes — Detects plateaus or jumps
turns up, turns down — 3-bar inflection detection
spike up, spike down — Sudden large moves
velocity exceeds, velocity drops below — Based on rate-of-change
🧰 Key Configuration Parameters
value : Threshold used in static comparisons
minVal, maxVal : For range-based triggers
spikeThreshold : Minimum jump/drop for spike detection
velocityPeriod : Bars to look back for rate-of-change
velocityThreshold : Minimum velocity to trigger signal
minBarsBetween : Debounce — minimum bars between signals
triggerDirection : "buy" or "sell" marker orientation
useShapes : Toggles between shape and label display
📊 Chart Overlays & Visualization
Smoothed/Normalized Series : Plots of pre-processed input
Trigger Thresholds : Visual reference for values, bounds, and velocity
Velocity Gradient Bar : Highlights intensity of movement
Signal Markers : Conditional labels or shapes on signal events
🧪 Sample Use Configurations
1. Range Reversal Setup
Trigger: turns up / down
Smoothing: sma or hma
Normalization: zscore
2. Momentum Spike Filter
Trigger: spike up / down
Spike Threshold: 5.0
Smoothing: none
Normalization: bounded
3. Trend Entry by Velocity
Trigger: velocity exceeds
Velocity Period: 5
Velocity Threshold: 2.5
Normalization: none
4. Debounced Cross
Trigger: crosses above
Smoothing: ema(20)
Normalization: zscore(50)
minBarsBetween: 10
🧭 Slope-Based Signal Approximation
To detect steep short-term changes, use:
velocityPeriod = 1
triggerMethod = "velocity exceeds"
velocityThreshold = 0.5
This mimics short-term “angle” detection based on delta rather than true geometric slope.
📝 Setup & Deployment
Paste the script into the Pine Script editor
Apply it to your desired chart
Choose your input (e.g., RSI, MACD, price series)
Configure smoothing and normalization as needed
Select trigger logic suited to your analysis
Observe and tune based on visual feedback
🌐 More Info
sciqua.com
Minervini Trend Screener v6Screener for Mark Minervini's method in Pine. The only current one does not include RS so I have done this to fill that gap.
1M/2M Scalping BUY/SELL IndicatorScript Name: CHN BUY SELL v5 — Multi-Timeframe EMA + RSI + Candlestick Patterns
This script is a powerful multi-signal trading tool designed for scalping and trend-based strategies, combining multi-timeframe EMA, RSI-based conditions, and classic candlestick patterns to generate buy/sell signals.
🔧 Key Features:
Multi-Timeframe EMA 200:
Plots the EMA 200 from multiple timeframes (2m, 5m, 10m, 15m) to visualize higher timeframe trends on the current chart.
RSI Analysis:
Calculates RSI using configurable length.
Highlights Overbought and Oversold zones.
Custom bar coloring based on RSI level (e.g., orange when overbought, purple when oversold).
Candlestick Pattern Detection:
Bullish/Bearish Engulfing
Hammer & Shooting Star
Two Consecutive Green or Red Bars
Buy/Sell Signal Logic:
Generates buy/sell labels when RSI aligns with engulfing candle patterns or other configurations.
Optional pattern detection can be enabled/disabled via settings (e.g., hammer signals or two-bar confirmations).
Visuals:
Clear labels and shapes on chart for each signal type.
Multiple EMA lines help identify trend direction across timeframes.
Alerts:
Built-in alert conditions for:
General RSI signal
Buy/Sell signals
Hammer or Shooting Star detections
🧠 How to Use:
Apply this script to a low timeframe chart (e.g., 1m, 2m).
Example : Trade 2M chart - Use EMA 200 at 10M timeframes.
Use the higher timeframe EMA to trade in the direction of the major trend.
Watch for RSI + pattern confluence signals for higher probability entries.
Let me know if you'd like a shorter version or one tailored for publishing to the TradingView public library.
HPM Havin# 📊 HPM Havin - Complete ATR Trading System
## 🎯 **OVERVIEW**
**HPM Havin** is an advanced indicator based on the ATR (Average True Range) Trailing Stop concept, designed to identify trends and generate precise market entry and exit signals. This system combines traditional technical analysis with a modern and intuitive interface, providing a complete real-time market view.
---
## ⚡ **KEY FEATURES**
### 🔥 **Smart ATR Trailing Stop**
- Dynamic system that adapts to market volatility
- Trailing stop that automatically follows the trend
- Adjustable sensitivity for different trading styles
### 📈 **Clear Buy/Sell Signals**
- Visual buy (green) and sell (red) signals
- Automatic candle coloring according to trend
- Customizable alerts to never miss opportunities
### 📊 **Complete Information Dashboard**
- **Real-time P&L:** Track your results instantly
- **Risk/Reward:** Total control over risk management
- **Current Score:** 0-10 rating based on multiple indicators
- **Volatility Status:** Monitor market conditions
---
## 🛠️ **ADVANCED FEATURES**
### 🎛️ **Customizable Controls**
- **Key Value (1-10):** Adjust system sensitivity
- **ATR Period:** Configure ATR calculation period
- **Heikin Ashi:** Option to use Heikin Ashi candles for signals
- **Risk/Reward Ratio:** Set your risk/reward proportion
### 📋 **Multi-Indicator Analysis**
- **RSI (30-70):** Overbought/oversold zone identification
- **MACD:** Trend confirmation with Bullish/Bearish signaling
- **Volume:** Volume analysis compared to moving average
- **Volatility:** Automatic classification (Low/Normal/High)
### ⏰ **Multi-Timeframe Analysis**
Visualize trends across 8 timeframes simultaneously:
- 1M, 5M, 15M, 30M (Scalping/Intraday)
- 1H, 4H (Swing Trading)
- 1D, 1W (Position Trading)
---
## 💡 **HOW TO USE**
### 🟢 **Buy Signals**
- Appear when price crosses above ATR Trailing Stop
- Confirmed by multiple technical indicators
- Candles turn green
### 🔴 **Sell Signals**
- Triggered when price crosses below ATR Trailing Stop
- Validated by internal scoring system
- Candles turn red
### 📊 **Dashboard Interpretation**
- **Score 7-10:** High confidence signals
- **Score 4-6:** Moderate signals, wait for confirmation
- **Score 1-3:** Weak signals, avoid entries
---
## 🎯 **RECOMMENDED STRATEGIES**
### 📈 **For Day Trading**
- Use Key Value between 1-3 for higher sensitivity
- Focus on 1M to 15M timeframes
- Monitor volume and volatility
### 📊 **For Swing Trading**
- Set Key Value between 3-5 for stronger signals
- Analyze 1H to 1D timeframes
- Use multi-timeframe for confirmation
### 💼 **For Position Trading**
- Use Key Value 5+ for long-term signals
- Focus on daily and weekly timeframes
- Combine with fundamental analysis
---
## 🚨 **ALERT SYSTEM**
### 📢 **Main Alerts**
- **HPM Long:** Confirmed buy signal
- **HPM Short:** Confirmed sell signal
### 📊 **Additional Alerts**
- **RSI Overbought:** RSI > 70
- **RSI Oversold:** RSI < 30
- **Trend Change:** ATR Trailing Stop changes
---
## ⚙️ **RECOMMENDED SETTINGS**
### 🔧 **For Beginners**
```
Key Value: 3
ATR Period: 14
Heikin Ashi: true
Risk/Reward: 2.0
```
### 🔧 **For Experienced Traders**
```
Key Value: 1-2 (scalping) or 4-5 (swing)
ATR Period: 10
Heikin Ashi: false
Risk/Reward: custom
```
---
## 📈 **HPM HAVIN ADVANTAGES**
✅ **Intuitive Interface:** Clear and organized dashboard
✅ **Multiple Timeframes:** Complete market view
✅ **Risk Management:** Integrated R/R controls
✅ **High Precision:** Proven ATR-based system
✅ **Flexibility:** Adaptable to any trading style
✅ **Smart Alerts:** Never miss an opportunity
---
## ⚠️ **IMPORTANT WARNINGS**
- This indicator is a technical analysis tool and does not guarantee profits
- Always use stop loss and proper risk management
- Test on demo account before using real money
- Combine with fundamental analysis for better results
- Trading involves risks and may result in losses
---
## 🏆 **ABOUT THE DEVELOPER**
HPM Havin was developed with a focus on simplicity and efficiency, combining years of experience in financial markets with the best practices of technical analysis. The goal is to democratize access to professional trading tools for all levels of investors.
---
**🚀 Transform your technical analysis with HPM Havin - The indicator that combines precision, simplicity and results!**
Simple Sessions & LevelsSimple Sessions & Levels
This indicator highlights the 15-minute opening range and prior day levels (high, halfback, and low) for any instrument and timeframe.
Features:
15-Minute Range: Plots the high and low of a customizable 15-minute window after market open.
Prior Day Levels: Shows the previous day’s high, midpoint (halfback), and low.
Individual toggles to show or hide each label and each level line independently.
Customizable colors and toggles for each level and label.
Usage:
Use this tool to quickly reference session ranges and key levels for intraday or swing trading. All parameters can be adjusted for your preferred session start time and display preferences.
Simple Risk-to-Reward (R) Indicator (TP1–TP2)Simple Risk-to-Reward (R) Indicator (TP1–TP2)
This indicator allows you to manually plot and visualize your entry price, stop loss, and 1R/2R take-profit levels for any trade.
Features:
Manual entry price input
Adjustable stop-loss distance (in ticks)
Long/short toggle
Plots for entry, stop, TP1, and TP2 levels
Use this tool to quickly set up and visualize your trade’s risk/reward levels and potential targets.
Simple Buy/Sell IndicatorOrder Block Detection (Bullish & Bearish OB)
Fair Value Gaps (FVG)
Volume Filter (optional: avoid signals in low volume)
Auto Trailing Stop Loss (optional)
www.instagram.com
📊 Cumulative Portfolio TrackerHi all, first time poster here
I just figured I'd share a script that I wrote for portfolio buy and hold backtesting purposes.
Basically what it does is compares the performance of a group of stocks combined as a portfolio vs a benchmark. In this case I have a portfolio of 20 companies vs SPY set as the default but it's pretty easy to change them in the code. Also it starts in January 2022 because one of my chosen companies only started trading at that date. Again, easy to change.
Alright, so how do we interpret the data?
The script tracks the two values to be compared with a base value of 100 and then that number rises and falls from there showing their relative performance. The orange will be the user defined portfolio and the blue will be the benchmark.
Some caveats - the user defined portfolio will start exactly when the newest ticker began trading unless specified to start past that date. This means for example if you compare SPY to SPYI, SPY will be showing years of compounding compared to SPYI's performance.
I'm a pretty novice coder for Pinecode as I usually use Python for my projects but anyway.
Potential future features -
- Swapping the baseline 100 for a % gain or $ gain from the starting point(giving the option to choose which one). This one would probably be pretty easy to do. To be honest this code isn't exactly complex. I really do not know Pinescript that well.
- Adding in returns from dividends. I don't know if this one is possible. Will need to look into it.
- The ability to overlay indicators on both the portfolio and the benchmark. This might already be possible with this code, I haven't tried because I just finished managing to get it to compile and I'm frankly tired.
-Custom weighting.
As of now it's all equal weight.
Questions I assume you will be asking -
- "Can we display the user profile as candlesticks instead of a line?"
I really don't think so. I have to assume it's hardcoded. My first idea was to just have a blank chart with no ticker and then do some fiddling to use the user profile's combined high/low/open/close display on the chart but couldn't figure that one out.
-Doesn't Portfoliovisualizer already do this but better?
It sure does. However the features I include here are going to be more flexible compared to their free version if you can't be bothered to pay for it(number of tickers, length of time, etc.).
-The benchmark line doesn't perfectly match the ticker I have on screen!
You're right it doesn't. I've turned off candles in my screenshot for that exact purpose. This goes back to what I mentioned about how you have to carefully pick the timespan that you're going to be looking at. At least I think that's what causes it. Further research needed. For now it was just easier to use a couple of lines only.
- *other scripter* already did this idea but better!
It's not exactly that complex of an idea so I wouldn't doubt it but I didn't look. I wanted to make a tool that would both be useful to me and also help me get better with Pinescript. That's pretty much the whole thing.
-How many tickers can I add?
Not a clue. 100? 1000? That would be tedious to test. 20 seemed like a good baseline.
Anyway, if anyone has feedback on what to add or anything I'm all ears. This is just the stuff that came to me over the last few hours while I was working my way through the documentation. If you find this useful, awesome! If not, no hard feelings. Still new!
Thanks folks,
Steve
7YearEdge-L1.1📈 7YearEdge – Magic Indicator
The 7YearEdge-L1 is a powerful and unique technical indicator designed to provide clear visual signals for potential buy and sell opportunities.
Green Box → Indicates a potential Buy
Red Box → Indicates a potential Sell
🧠 How to Use It Effectively
To position yourself better: Don’t enter a trade immediately when a box appears. Wait for a retracement before taking a position.
If a candle breaks below (for buys) or above (for sells) the box too strongly, the signal may be invalid. It's better to wait for a new visual indication.
Let the setup form completely, then assess the context before entering.
When used correctly, the indicator can help you plan your entries and exits with precision. Always apply proper stop-loss (SL) placement, based on your risk management strategy and account size.
⚠️ Disclaimer
This indicator is based on personal market experience and is intended strictly for educational and reference purposes only.
This tool is not financial advice or a recommendation to buy or sell any financial instrument.
Trading involves risk. Profits and losses are not guaranteed, and no indicator can predict the market with certainty.
Please conduct your own analysis, manage risk responsibly, and use this tool at your own discretion.
SMC Sniper Signal [Stable Version] + Trend Table v3custom-built Sniper Pro Indicator based on Smart Money Concepts — featuring liquidity sweeps, CHoCH, order blocks, and volume confirmation.
DRT Entry Alert System - NQ Futures [Ultimate Edition]The DRT Entry Alert System – NQ Futures is a powerful institutional-grade tool designed for precision execution during the New York session on Nasdaq futures (NQ). Built on the Dealing Range Theory (DRT) framework, this script automates the key components of smart money logic:
✅ Dynamic Dealing Range Box (8:30 AM – 10:30 AM ET)
✅ Liquidity Grabs: Detects engineered stop hunts above/below the DR
✅ FVG Confirmation Zones: Validates displacement entries with real-time Fair Value Gaps
✅ SMT Divergence Filter (optional): Compares NQ vs. SPX or custom symbol for institutional divergence
✅ BUY/SELL Signals with Labels + Alerts
✅ Toggle Control Panel: Turn DR, FVGs, or alerts on/off with a click
This is the ultimate DRT entry tool for scalpers and intraday traders seeking sniper precision with real-time visual confirmations. Built for speed. Engineered for conviction.
Trading on Day 1h Ver1 [VNFlow]# User Guide for "Trading on Day 1h Ver1 " Indicator
This TradingView indicator provides key technical tools to assist your trading decisions on intraday charts (e.g., 1-hour timeframe).
## Features
- **5-day Moving Average (MA)**: Choose between EMA or SMA, with optional smoothing for better trend visualization.
- **Anchored VWAP (AVWAP)**: Displays AVWAP based on 1-day, 2-day, week-to-date, and month-to-date volume and price anchors.
- **Pivot Points**: Shows key support and resistance levels — upper resistance, middle pivot, and lower support lines.
- **Previous and Current Day High/Low**: Visual reference of important daily price levels.
- **Entry and Exit Signals**:
- **BUY** label appears when price crosses above the 5-day MA and is above the 1-day AVWAP.
- **SELL** label appears when price crosses below the 5-day MA or drops below the 1-day AVWAP.
- Consecutive SELL signals show label only on the first candle in the series to reduce clutter.
## How to Use
1. **Apply to Chart**: Add the indicator to your chart with your preferred timeframe (1 hour recommended).
2. **Configure Inputs**: Adjust the daily minutes (default 390 for US equities), MA type (EMA or SMA), smoothing, and visibility of AVWAP, pivot points, and daily high/low lines via the input panel.
3. **Interpret Signals**:
- Look for BUY labels as potential entry points.
- Monitor SELL labels as potential exit points.
- Use AVWAP and pivot levels as dynamic support/resistance zones.
4. **Trend Confirmation**: Use the 5-day MA (prominently displayed) and AVWAP lines for confirming overall trend direction.
## Notes
- The indicator supports multiple AVWAP anchors for flexible analysis.
- SELL signals are optimized to show only once in consecutive down signals for clarity.
- Adjust MA smoothing and type to best fit your trading style.
---
This indicator aims to provide clear and actionable visual aids for day trading and swing trading on intraday charts.
Dual HalfTrendThis is a trend indicator.
There are two trends in this. One is a major trend, and the other is a minor trend. We take trades in the minor trend that aligns with the major trend.
The trading strategy involved here is a crossover.
We take this trade when the major trend breaks the minor trend. You can backtest this and only take the trade if necessary. This works on high-volume pairs like Gold and US30.