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
المؤشرات والاستراتيجيات
Real Relative Strength vs SET (ADR%)This indicator measures the Real Relative Strength (RRS) of a stock against the SET Index, adjusted for Average Daily Range Percentage (ADR%) instead of ATR. It answers the question:
"Is this stock performing better or worse than the SET Index, relative to its own volatility?"
Predictive Momentum StrategyPredictive Momentum Strategy with Future Projection
This advanced Pine Script indicator aims to forecast price movements up to five minutes into the future, visualizing predictions as a dynamic line extending beyond the current price bar. Unlike standard technical indicators that only analyze past data, this strategy projects future price targets to give traders a potential edge.
The prediction system combines multiple technical factors:
- Multi-timeframe momentum analysis using weighted RSI readings from different periods
- Volume profile analysis with logarithmic scaling to detect significant buying/selling pressure
- Adaptive volatility measurement to adjust predictions based on current market conditions
- Price fractal pattern detection to identify potential reversal points
- Statistical deviation bands to capture mean-reversion opportunities
What makes this strategy unique is its self-adjusting accuracy system. The script tracks its prediction success over time and automatically adjusts signal strength based on recent performance. This creates an adaptive learning mechanism that improves with use.
The visual components include:
- A prediction line extending from the current price into future time space
- Color-coded signals (green for bullish, red for bearish)
- An information panel displaying prediction direction, target price, and current accuracy percentage
- Entry signals marked with triangles at potential trade points
Customize the strategy with adjustable parameters for lookback period, prediction timeframe, indicator weights, and visual preferences.
Perfect for day traders looking for an edge in short-term price prediction with a clean, visual representation of anticipated market moves.
Long Bar With ATR Multi Timframe | Amoo HassanThe indicator signals based on long bars formed in the direction of the trend and receives the necessary confirmations with the Super Trend, 200 Moving Average, and 60 Moving Average.
Adaptive Relative Volatility Index Pro++Key Improvements:
(1)Multi-Price Integration:
Added price_source selector with HLC3/OHLC4/HL2 options.
Modified price_change calculation to use selected source..
Price source displayed in bottom-right corner.
(2)Calculation Impact:
HLC3/OHLC4: Smoother inputs reduce false volatility signals.
HL2: Focuses on intraday range rather than closing bias.
Close: Original behavior preserved.
(3)Strategic Use Cases:
// For futures/24h markets
price_source = "OHLC4"
// For forex/crypto with wide spreads
price_source = "HL2"
// Traditional equity markets
price_source = "Close"
+Verification Tips:
(1)Switch between price sources while watching:
ARVI line smoothness
Crossings of the zero baseline
Extreme level reactions
(2)Compare with price chart:
HLC3/OHLC4 should show earlier reversals in ranging markets
HL2 better captures intraday volatility
Dual EMA (9 & 21) w/ Entry SignalsDual EMA Crossover with RSI Filter
This Pine Script indicator combines two popular technical analysis tools - Exponential Moving Averages (EMAs) and Relative Strength Index (RSI) - to identify potential trading opportunities.
Key Features
Plots two EMAs (default: 9 & 21 periods) directly on your chart
Generates entry signals based on EMA crossovers with additional confirmation filters
Uses RSI as a trend filter to reduce false signals
Visual arrows indicate potential entry points for both long and short positions
All parameters are fully customizable
How It Works
The indicator identifies trading opportunities through a multi-factor approach:
EMA Crossover: Fast EMA (9) crosses above/below Slow EMA (21)
Price Confirmation: Close price confirms the direction by being above/below the Slow EMA
RSI Filter: RSI value confirms the trend direction by being above/below the RSI filter level
Visual Feedback
Green up arrows indicate long entry signals (bullish)
Red down arrows indicate short entry signals (bearish)
Fast EMA displayed as a green line
Slow EMA displayed as a red line
Settings
Fast EMA Length: Period for the faster-moving EMA (default: 9)
Slow EMA Length: Period for the slower-moving EMA (default: 21)
Source: Price data to use for calculations (default: close)
RSI Length: Period for RSI calculation (default: 14)
RSI Filter Level: Threshold for RSI trend filter (default: 50.0)
Ideal for swing traders and position traders looking for high-probability entry points with trend confirmation.
Next Candle PredictorNext Candle Predictor for TradingView
This Pine Script indicator helps predict potential price movements for the next candle based on historical price action patterns. It analyzes recent candles' characteristics including body size, wick length, and volume to calculate a directional bias.
Key Features
Analyzes recent price action to predict next candle direction (Bullish, Bearish, or Neutral)
Visual indicators include small directional arrows and a prediction line
Customizable sensitivity and lookback period
Works best on lower timeframes for short-term price action trading
Displays clear prediction labels that extend into future bars
How It Works
The script analyzes recent candles by examining:
Candle body size (weighted by your preference)
Wick length (weighted by your preference)
Volume activity (weighted by your preference)
These factors combine to create a directional strength indicator that determines if the next candle is likely to be bullish, bearish, or neutral.
Visual Feedback
Green up arrows indicate bullish predictions
Red down arrows indicate bearish predictions
A directional line extends from the last candle showing predicted price movement
A label displays the prediction text at the end of the line
Information table in the top right displays the current prediction
Settings
Lookback Candle Count: Number of historical candles to analyze (2-20)
Wick/Body/Volume Weight Factors: Adjust importance of each component
Prediction Sensitivity: Threshold for triggering directional bias
Prediction Line Length: How far the prediction line extends
Perfect for day traders and scalpers looking for an edge in short-term directional bias.
FDI Pro++Key Enhancements:
(1)Price Source Flexibility:
Close: Traditional closing prices.
HLC3: (High + Low + Close)/3.
OHLC4: (Open + High + Low + Close)/4.
HL2: (High + Low)/2.
(2)Multi-Layer Smoothing:
EMA: For basic noise reduction.
HMA: For responsive trend following.
T3: For aggressive smoothing in volatile markets.
(3)Visual Features:
Gray line shows raw FDI when smoothing is active.
Bottom-right table displays selected price source.
Customizable threshold colors matching TradingView's dark theme.
Usage Examples:
1. Range-Bound Markets (HLC3 + T3):
price_source = "HLC3"
smoothing_type = "T3"
smoothing_length = 21
2. Trend Analysis (HL2 + HMA):
price_source = "HL2"
smoothing_type = "HMA"
smoothing_length = 14
3. Volatility Measurement (OHLC4 + None):
price_source = "OHLC4"
smoothing_type = "None"
ATH Levels with % DistanceThis Indicator for Use in Pine Scanner for find the Latest Distance from All Time High
is also make a Pine Scanners to search on Watchlist.
Strat Sniper📄 Strat Sniper — Real-Time Alerts for TheStrat Setups
Strat Sniper is a tool I built to help spot key Strat setups without having to sit in front of the screen all day.
If you trade using TheStrat (1, 2, 3 candle logic), this indicator will automatically monitor your chart for things like:
2-1-2 breakouts
3-1-2 setups
1-2-2 reversals
Inside bars
Outside bars
Failed 2U / 2D setups (those fakeouts we all love to catch)
It’s meant to keep things simple and efficient. You can choose exactly which setups you want to be alerted for in the settings, and once you’ve got it added to your chart, just create a TradingView alert and it’ll do the rest.
⏱️ Alert Timing:
You can choose:
🔔 Get alerted right when the setup forms (after the bar closes)
🚦 Delay alert until setup is actually triggered (ex: having an inside bar alert set won’t alert you until the inside bar is triggered with a 2U/2D)
Perfect for higher timeframes where you want precision without watching charts all day.
🛠️ How to Use:
Add Strat Sniper to any chart or timeframe
Open the ⚙️ indicator settings
Select which Strat setups to monitor
Click the ⏰ “Create Alert” button
Under “Condition,” select Strat Sniper
Choose “Any alert() function call” or a specific setup
Set how you want to be notified (popup, email, webhook, etc.)
Now your chart is fully monitored for Strat setups. Alerts will fire as soon as your selected conditions are met.
🧠 Why I Made This:
I was tired of missing setups or manually scanning charts for hours. This lets me stay focused and only show up when there’s something worth looking at. If you’re into TheStrat and want a no-BS way to stay on top of your plays, this should help.
Let me know if you have feedback or want to build on it. Happy trading. 💯
Previous Day Levels + SMAs + VWAP + Pivot Point// ---------------------------------------------------------------------------
// Description:
// This indicator plots the following levels and indicators on the chart:
// 1. **Previous Day Levels**:
// - High, Low, and Midpoint levels based on the previous day's data.
// 2. **Pivot Point (P)**:
// - Calculated using the standard pivot formula:
// P = (Previous Day High + Previous Day Low + Previous Day Close) / 3.
// 3. **Simple Moving Averages (SMAs)**:
// - 9-period and 20-period SMAs based on the current chart's timeframe.
// 4. **VWAP**:
// - The Volume-Weighted Average Price (VWAP) for the current chart.
//
// Instructions:
// 1. Add the indicator to your chart via TradingView.
// 2. Ensure the chart timeframe is intraday for Previous Day Levels to display.
// 3. Customize the line styles, colors, or calculations as needed in the code.
//
// Features:
// - Distinct colors for each level and indicator.
// - Intraday checks for Previous Day Levels to prevent plotting on higher timeframes.
// - Works seamlessly with any chart timeframe.
// ---------------------------------------------------------------------------
FDI Pro with Smoothing++Key Features Added:
(1)Smoothing Options:
EMA: Traditional exponential moving average.
HMA: Hull Moving Average (reduces lag).
T3: Triple exponential smoothing (most aggressive smoothing).
"None" shows raw FDI values.
(2)Adjustable Parameters:
Separate smoothing length input.
Customizable threshold levels.
T3 volume factor fixed at 0.7 (optimal for most cases).
(3)Visual Enhancements:
Gray line shows raw FDI when smoothing is active.
Main line uses TradingView's signature blue color.
Customizable threshold colors.
++Usage Tips:
(1)// For trending markets (use stronger smoothing)
smoothing_type = "T3"
smoothing_length = 21
(2)// For choppy-rangebound markets (use minimal smoothing)
smoothing_type = "EMA"
smoothing_length = 7
(3)// Trending (Strongest Smoothing)
smoothing_type = "HMA"
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.
Pullback SARPullback SAR - Parabolic SAR with Pullback Detection
Description: The "Pullback SAR" is an advanced indicator built on the classic Parabolic SAR but with additional functionality for detecting pullbacks. It helps identify moments when the price pulls back from the main trend, offering potential entry signals. Perfect for traders looking to enter the market after a correction.
Key Features:
SAR (Parabolic SAR): The Parabolic SAR indicator is used to determine potential trend reversal points. It marks levels where the price could reverse its direction.
Pullback Detection: The indicator catches periods when the price moves away from the main trend and then returns, which may suggest a re-entry opportunity.
Long and Short Signals: Once a pullback in the direction of the main trend is identified, the indicator generates signals that could be used to open positions.
Simple and Clear Construction: The indicator is based on the classic SAR, with added pullback detection logic to enhance the accuracy of the signals.
Parameters:
Start (SAR Step): Determines the initial step for the SAR calculation, which controls the rate of change in the indicator at the beginning.
Increment (SAR Increment): Defines the maximum step size for SAR, allowing traders to adjust the indicator’s sensitivity to market volatility.
Max Value (SAR Max): Sets the upper limit for the SAR value, controlling its volatility.
Usage:
Swing Trading: Ideal for swing strategies, aiming to capture larger price moves while maintaining a safe margin.
Scalping: Due to its precise pullback detection, it can also be used in scalping, especially when the price quickly returns to the main trend.
Risk Management: The combination of SAR and pullback detection allows traders to adjust their positions according to changing market conditions.
Special Notes:
Adjusting Parameters: Depending on the market and trading style, users can adjust the SAR parameters (Start, Increment, Max Value) to fit their needs.
Combination with Other Indicators: It's recommended to use the indicator alongside other technical analysis tools (e.g., EMA, RSI) to enhance the accuracy of the signals.
Link to the script: This open-source version of the indicator is available on TradingView, enabling full customization and adjustments to meet your personal trading strategy. Share your experiences and suggestions!
MemeSaurus Money Flow CipherThis is a starting point based on common elements in open-source clones and community discussions. Since I don’t have access to the proprietary Market Cipher code, you may need to tweak it further by comparing it to the original indicator’s behavior on a chart.
Real Relative Strength vs SETThis indicator calculates the Real Relative Strength (RRS) of any Thai stock by comparing its volatility-adjusted movement to the SET Index.
Unlike standard RS tools that use only percentage price change, this version takes into account:
The stock’s ATR-based expected movement
The SET Index’s actual movement relative to its own ATR
✅ Compatible with any timeframe
✅ Dynamically adjusts to chart period
✅ Highlights when a stock outperforms or underperforms the SET on a volatility-adjusted basis
Use this tool to identify Thai stocks showing true strength or weakness vs. the broader market — not just noise from random spikes.
🔒 This is a protected script. If you're interested in the methodology or private access, feel free to contact me.
REW - CNTThis indicator combines RSI(14), EMA(9), and WMA(45) to generate crossover signals. A green arrow appears when RSI crosses above EMA and EMA is below WMA, indicating a potential upward trend. A red arrow signals a possible downtrend when RSI crosses below EMA and EMA is above WMA.
Liên hệ: www.zalo.me
Real Relative Strength (vs SPY)Title: Real Relative Strength (RRS) Indicator
Description:
This script calculates the Real Relative Strength (RRS) of a stock compared to SPY by factoring in normalized movement using ATR.
Unlike traditional RS metrics that rely on simple percentage change, this model accounts for what a stock should have done based on SPY’s movement and its own volatility, then measures deviation from that expected move.
✅ Works across all timeframes
✅ Dynamically adjusts to chart timeframe
✅ Highlights true RS and RW that persists over time
Designed to help traders identify institutional strength or weakness relative to the broader market with more precision.
HFM-CENTINELAes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demoes nua demo
my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is my name is
EMA or SMA Cloud with Third MAThis script will now plot three moving averages on the chart: a fast one, a slow one, and a third one. The area between each pair of moving averages will be filled with a green or red cloud based on whether the first moving average is above or below the second one.
Fast vs Slow MA Cloud: Between the fast and slow moving averages.
Slow vs Third MA Cloud: Between the slow and third moving averages.
You can adjust the lengths of the moving averages and choose between EMA or SMA for all three.
Let me know if this works or if you'd like any further modifications!
Ross Cameron-Inspired Day Trading StrategyExplanation for Community Members:
Title: Ross Cameron-Inspired Day Trading Strategy
Description:
This script is designed to help you identify potential buy and sell opportunities during the trading day. It combines several popular trading strategies to provide clear signals.
Key Features:
Gap and Go: Identifies stocks that have gapped up or down at the open.
Momentum Trading: Uses RSI and EMA to identify momentum-based entry points.
Mean Reversion: Uses RSI and SMA to identify potential reversals.
How to Use:
Apply to Chart: Add this script to your TradingView chart.
Set Timeframe: Works best on 5-minute and 10-minute timeframes.
Watch for Signals: Look for green "BUY" labels for entry points and red "SELL" labels for exit points.
Parameters:
Gap Percentage: Adjust to identify larger or smaller gaps.
RSI Settings: Customize the RSI length and overbought/oversold levels.
EMA and SMA Lengths: Adjust the lengths of the moving averages.
Confirmation Period: Set how many bars to wait for confirmation.
Visual Elements:
BUY Signals: Green labels below the price bars.
SELL Signals: Red labels above the price bars.
Indicators: Displays EMA (blue) and SMA (orange) for additional context.
This script is a powerful tool for day trading on NSE and BSE indices, combining multiple strategies to provide robust trading signals. Adjust the parameters to suit your trading style and always combine with your own analysis for best results.
Zesty!!heyyoo
this chart is very good and only useful for some people
my ni99as broski
this is complteltrejaefakfnakfnf
Bode bot v15### 📌 Strategy Overview
**"Bode Bot v15"** is an advanced, multi-timeframe trend-following strategy built for use on TradingView. It leverages dynamic ATR-based risk management, directional filters using EMA and ADX, and optional support/resistance validation via VRVP. The strategy is designed for short-to-medium term trades with intelligent position scaling.
2h Time frame is the BEST
### ⚙️ Core Features
- Adaptive entries based on trend direction and strength
- Multi-timeframe support with user-defined settings
- Optional volume profile filtering for added precision
- Dynamic stop loss and take profit using volatility-based logic
- Break-even and trailing stop mechanisms
- Pyramiding enabled with control to avoid multiple entries per bar
### ✅ Built for Pine Script v6
- Compliant with all TradingView publishing guidelines
- Uses `request.security()` safely with `gaps=barmerge.gaps_on`
- Does not use `lookahead_on`
- Fully backtest-ready and repaint-free
### 📝 How to Use
- Apply to trending markets on your preferred timeframe (best one is 2h)
- Customize strategy parameters in the input panel
- Run backtests and tune settings for your asset of choice
### ⚠️ Disclaimer
This strategy is for educational purposes only. It does not constitute financial advice. Always backtest and use proper risk management before live trading.