SMA ChannelWhat this indicator does:
Uses a simple moving average (SMA) as the center line.
Calculates the standard deviation of the last N candles.
Builds a channel above and below the center line using the multiplier.
Fills the area between the upper and lower lines
Indicatori e strategie
Gold DCA IndicatorThis indicator operates on the assumption that when there is a bearish cross on the MACD on the S&P 500, it is ideal to DCA into gold as investors are hedging their investments into safe assets.
It plots these events with tags on the gold chart and also provides alerts when these events occur.
H4 3-Candle Pattern (Persistent Signals)Below is an example in Pine Script v5 that detects a pattern using the last three completed 4H candles and then plots a permanent arrow on the fourth candle (i.e. on the current bar) when the conditions are met. The arrow stays on that bar even after new bars form.
In this version, the pattern is evaluated as follows on each bar (when there are enough candles):
Bullish Pattern:
The candle three bars ago (oldest of the three) is bullish (its close is greater than its open).
The candle two bars ago closes above the high of that older candle.
The last completed candle (one bar ago) closes at or above the low of the candle two bars ago.
Bearish Pattern:
The candle three bars ago is bearish (its close is less than its open).
The candle two bars ago closes below the low of that older candle.
The last completed candle closes at or below the high of the candle two bars ago.
When the conditions are met the script draws a green up arrow below the current (fourth) candle for a bullish pattern and a red down arrow above the current candle for a bearish pattern. These arrows are drawn as regular plot symbols and remain on the chart permanently.
Copy and paste the code into TradingView’s Pine Script Editor:
Pin Bar & Momentum DetectorThis indicator is suitable for detecting an entry point, which is most commonly used in New York Time, but it can be adjusted. At the moment, by detecting a candlestick base or pin bar in the time frame and checking the average volume of the previous 5 candlesticks, which should be more than that, it shows you a momentum, and by taking the candlestick, it confirms that there is a second or third candlestick, which is in the form of a momentum candlestick, you can enter safely, and the stop behind the candlestick base and the target is at least 1/2 and 1/3. In each timeframe, you need to make adjustments, for example, in the 15-minute timeframe, the number of candlesticks in a day is 96, and their average is equal to 1 unit, and set the number of candlesticks in front of 96. Coming soon with the Ingalev candlestick will also be added
Wyckoff S-bar and RS-bar DetectorThis script is used for detecting Significant candle/bar according to Wyckoff definition.
Highly appriciate your feedback if any issue during your usage.
Bollinger Bands (Indicator Only)Just a Bollinger Bands indicator that can be used to make a strategy, I hope it will help you
FVG + PrevDayLow [Dovy]This custom TradingView indicator identifies Fair Value Gaps (FVGs)—both bullish and bearish—and checks if they form below the previous day's low. It also attempts to detect a potential "FVG open" pattern, suggesting that price might fill or react to these gaps.
Sessions with Mausa session high/low tracker that draws flat, horizontal lines for Asia, London, and New York trading sessions. It updates those levels in real time during each session, locks them in once the session ends, and keeps them on the chart for context.
At a glance, you always know:
Where each session’s highs and lows were set
Which session produced them (ASIA, LDN, NY labels float cleanly above the highs)
When price is approaching or reacting to prior session levels
🔹 Use Cases:
• Key Levels – See where Asia, London, or NY set boundaries, and watch how price respects or rejects them
• Breakout Zones – Monitor when price breaks above/below session highs/lows
• Session Structure – Know instantly if a move happened during London or NY without squinting at the clock
• Backtesting – Keep historic session levels on the chart for reference — nothing gets deleted
• Confluence – Align these levels with support/resistance, fibs, or liquidity zones
Simple, visual, no distractions — just session structure at a glance.
AOSM - Standard Pivot PointsThis is Standard Pivot Point ( Levels for intraday , swing and positional Trading ) copy from ''Pivot Point Standard'' from @TradingView Pine Script Code ( OPEN PUBLISH )
Here's the updated Pine Script code with individual color settings for each pivot level, maintaining the existing color input structure but allowing unique colors per level instead of using a single default color
Remove extra setting and do very simple for Beginners
Remove History PIVOT for Clean Chart and dafault 1 for new level for everyday and keep option for history pivot for backtesting...
I've modified the color inputs to assign unique default colors to each level
and trade level like :
P: Pivot main (Blue)
S1: Basic Support (Green Light)
R1: Basic Resistance (Red Light )
S2: Important Support (Green Light)
R2: Important Resistance (Red Light)
S3: Major Support (Green Light)
R3: Major Resistance (Green Light)
S4: Extra Support (Green)
R4: Extra Resistance (Red)
S5: Extra Support (Green)
R5: Extra Resistance (Red)
keep 2 support and 2 Resistance extra for better accuracy and given option for it toggle....
200均线ema200均线指标
自动绘制30分钟、1小时、4小时、1天的均线,并在右下角显示目前均线价格。
EMA200 Moving Average Indicator
Automatically plot the moving averages for 30 - minute, 1 - hour, 4 - hour, and 1 - day timeframes, and display the current moving average prices in the bottom - right corner.
Market Pulse TableMarket Pulse Table – Customizable MACD Tracker
This indicator provides a clean and compact table showing real-time market signals for selected instruments.
✅ Features:
• Displays daily % change with color-coded sentiment (green for gains, red for losses)
• Shows MACD signal – "Buy", "Sell", or "Neutral" based on daily MACD crossovers
• Fully customizable: toggle which assets to include from a predefined list (e.g., ES1!, NQ1!, DXY, VIX...)
• Adjustable table position on chart
🎯 Designed for traders who want a quick overview of market direction, momentum, and volatility across key instruments, helping you stay aligned with the broader trend.
RSI Divergence Strategy (3-Minute Base Rules with Backtest)ENGLISH (Main Description)
This Pine Script implements an advanced RSI Divergence Strategy with integration for OKX automated trading signals. It is designed to detect bullish and bearish divergences in RSI, with the following key features:
Base Rule on 3-Minute RSI:
The strategy uses a 3-minute timeframe RSI as the base rule to restrict trade directions:
If RSI ≤ 50, only long positions are allowed.
If RSI ≥ 50, only short positions are allowed.
Divergence Detection:
Bullish Divergence: When price makes a new low, but RSI fails to make a new low.
Bearish Divergence: When price makes a new high, but RSI fails to make a new high.
The divergence detection is based on the current selected timeframe.
OKX Signal Integration:
The script outputs trading signals in JSON format, compatible with OKX automated trading bots.
Signals include detailed information such as action type (ENTER_LONG or ENTER_SHORT), instrument, order type, and investment amount.
Backtest Enabled:
This script is fully backtest-ready, allowing users to test historical performance using TradingView's strategy tester.
Parameters like RSI length and divergence lookback period can be customized for optimization.
Visual Signal Markers:
When a valid trade signal is detected, it is displayed on the chart with green ("LONG") or red ("SHORT") arrows for easy visualization.
This strategy is ideal for active traders looking to combine divergence-based trading with automated execution on OKX. It works best on volatile assets and can be further optimized by adjusting the input parameters.
中文:
该 Pine Script 实现了一个先进的 RSI 背离策略,并集成 OKX 自动交易信号,主要功能如下:
基于 3 分钟 RSI 的规则:
使用 3 分钟 RSI 限制交易方向:
当 RSI ≤ 50 时,只允许开多。
当 RSI ≥ 50 时,只允许开空。
背离检测:
看涨背离:价格创新低但 RSI 未创新低。
看跌背离:价格创新高但 RSI 未创新高。
背离检测基于当前选择的时间周期。
OKX 信号集成:
以 JSON 格式输出交易信号,可直接应用于 OKX 自动交易机器人。
支持回测:
提供完整的回测功能,可通过 TradingView 策略测试器评估历史表现。
信号可视化:
在图表上显示多头和空头信号,便于观察和验证。
此策略适合希望结合 RSI 背离和自动化交易的活跃交易者,尤其适用于波动性较高的资产。通过调整参数可以进一步优化策略效果。
默认设置
RSI Length: 14
Divergence Lookback Period: 33
Base Timeframe: 3-Minute RSI
RSI Pro ICT Engine v6.1RSI Pro ICT Engine v6.1
A refined RSI indicator designed for ICT-based traders.
✨ Features:
Clean RSI + WMA(45) + EMA(9)
Auto price levels at RSI 61.8 / 50.0 / 38.2
Entry zone highlight (RSI 40–60)
✅ New: RSI Divergence Detection (with toggle)
Optimized for clarity and institutional trading logic
Built for precision. Made for execution.
Wick Sweep EntriesWick Sweep Entry designed by Finweal Finance (Indicator Originator : Prajyot Mahajan) :
This Indicator is specially designed for Nifty, Sensex and Banknifty Options Buying. This works well on Expiry Days.
Setup Timeframe : 5m and 1m.
Entry Criteria :
For Long/CE :
Wait for Sweep of 5m Candle Low with next 5m Candle but you do not wait for the next 5 minute candle to close, you enter directly whenever any 1 minute candle of next 5minute candle to close above the low of previous 5m Candle.
For Short/PE :
Wait for Sweep of 5m Candle High with next 5m Candle but you do not wait for the next 5 minute candle to close, you enter directly whenever any 1 minute candle of next 5minute candle to close below the High of previous 5m Candle.
Key notes :
1. As this is the Scalping High Frequency Strategy, it is to be used for scalping purpose only. You might have losses too so to avoid the noise in the market, i suggest you to use this strategy in the first 45 minutes to 1 hour of Indian Markets as this is a volatility Strategy.
2. Although Nifty and Banknifty are independent indices, they still show some reactions with each other, so if you spot a long entry on BNF and Short Entry on nifty then you will avoid taking the trade, you will take the trade only if there is a tandem activity or At least the other index is not showing opposite signal.
3. If target is not hit and you spot another entry, you will avoid taking the new entry.
The Indicator will automatically spot/plot the entry signal, all you need to do is enter as soon as 1minute candle closes either below prior 5 minute candle High for Short/PE or closes above 5minute low for Long/CE.
For Targets :
You Can Target recent minor pull back, FVG, or Order blocks.
Remember : This is a scalping strategy so don't hold trade for more than 4/5 1minute Candles
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 พร้อมกันได้
Simple Fundamental Analysis Fundamental Analysis
This indicator provides comprehensive fundamental analysis directly on your chart, displaying key financial metrics in a color-coded table format. It goes beyond basic metrics by calculating fair value estimates and generating buy/sell signals based on overall fundamental health.
Key features:
14 essential fundamental metrics including EPS, P/E Ratio, PEG Ratio, and valuation ratios
Fair value calculation (PE × EPS) showing potential under/overvaluation
Value gap percentage to quickly identify investment opportunities
Color-coded values (green for healthy, red for concerning)
Automatic buy/sell/neutral signals based on overall fundamental analysis
Percentage rating showing the strength of buy/sell signals
This tool helps traders and investors make informed decisions based on fundamental data rather than just technical indicators. Perfect for value investors looking to identify fundamentally sound companies trading at attractive prices.
Disclaimer
This indicator is provided for informational and educational purposes only. The buy/sell signals and fundamental analysis presented are not investment advice or recommendations to buy, sell, or hold any security.
The financial data used is sourced from TradingView's database and may not always be current or accurate. Some metrics may be unavailable for certain stocks, which could affect the overall rating. Different industries have different norms for "good" metrics - what's healthy for one sector may not be for another.
The fair value calculation uses a standard PE ratio of 15, which may not be appropriate for all companies or industries. High-growth companies typically command higher multiples, while mature companies may trade at lower multiples.
Past performance is not indicative of future results. Always conduct your own research and consider consulting a financial advisor before making investment decisions.
伦敦开盘突破策略 V3(含统计+盈亏比)Used for 5-minute BTC perpetual contracts, open an order with a fixed position of 0.1 BTC and a balance of USD 1,000. COINBASE:BTCUSD
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
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.
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.