NY ORB, VWAP & EMAsIndicator is designed to display key technical analysis tools on your Trading View chart. It includes:
One of the key benefits of this indicator is that it allows Basic Trading View users to set VWAP, EMAs, and ORB in a single indicator. This is particularly useful for users who are limited to a single indicator on their Basic plan, as it provides a comprehensive view of market sentiment, trend, and potential breakouts without the need for multiple indicators.
Features
New York Opening Range Breakout (ORB): Plots the high and low of the first 15 minutes (configurable) of the New York trading session.
Volume Weighted Average Price (VWAP): Displays the VWAP line, which can be toggled on or off.
Exponential Moving Averages (EMAs): Plots four EMAs (9, 21, 50, and 200 periods), which can also be toggled on or off.
Customization
ORB Length: Choose from 5 or 15 minutes for the ORB calculation.
Show VWAP and EMAs: Toggle the visibility of the VWAP and EMA lines on or off.
Usage
This indicator is designed to help traders identify key market levels, trends, and potential breakouts during the New York trading session. The ORB can be used to gauge market sentiment, while the VWAP provides a benchmark for average price action. The EMAs offer additional trend analysis and can be used to identify potential support and resistance levels.
무빙 애버리지
SPY Hunter SetupBuilt for traders who want to capture high-probability momentum moves on SPY using clean technical logic.
This strategy was developed and refined to help filter out noise and highlight only the best potential trade setups by combining multiple proven indicators into a cohesive system. The goal is to reduce false signals, limit overtrading, and increase confidence in your entries.
🔻 Put Signals Trigger When:
RSI is above 35
ZLSMA or EMA 9 is sloping down
MACD histogram is bearish
OB/OS value is ≥ 25
Volume is ≥ 70% of the 20-bar average
🔺 Call Signals Trigger When:
RSI is below 50
ZLSMA or EMA 9 is sloping up
MACD histogram is bullish
OB/OS value is ≤ -70
Volume is ≥ 100% of the 20-bar average
Parameter Value (In Indicator Settings)
RSI Source close
RSI Length 14
Call: RSI below 50
Put: RSI above 35
MACD Fast Length 12
MACD Slow Length 26
MACD Signal Smoothing 9
ZLSMA Length 50
EMA Length 9
Volume SMA Length 20
Call: Volume SMA % Threshold 1.0
Put: Volume SMA % Threshold 0.7
Call: OB/OS ≤ -70
Put: OB/OS ≥ 25
OB/OS Source close
OB/OS Length 5
Dual EMA Offset SyncOverview:
The Dual EMA Offset Sync indicator is a powerful tool for traders who want more refined control over trend tracking by combining two separate Exponential Moving Averages (EMAs) with customizable sources and independent offsets.
🔧 Features:
📈 Dual EMA Calculations: Uses two independently configured EMAs.
🎯 Separate Source Inputs: Apply EMAs to different price sources (e.g., high/low, open/close).
🕐 Custom Offset Control: Delay or sync each EMA individually to analyze historical context or future projection.
🎨 Visual Clarity: Clean and distinct plots (red and blue) for better contrast and signal visibility.
💡 Use Cases:
Trend Confirmation: Compare short-term vs. long-term or different price action perspectives.
Mean Reversion Strategies: Offset EMAs to identify stretched price zones.
Timing Entries/Exits: Adjust offsets to time lagging or leading signals effectively.
📌 Tip:
Use different lengths and sources (like high and low, or close and open) to get creative with your market interpretation and reveal hidden momentum or volatility signals.
Day’s Open ForecastOverview
This Pine Script indicator combines two primary components:
1. Day’s Open Forecast:
o Tracks historical daily moves (up and down) from the day’s open.
o Calculates average up and down moves over a user-defined lookback period.
o Optionally includes standard deviation adjustments to forecast potential intraday levels.
o Plots lines on the chart for the forecasted up and down moves from the current day's open.
2. Session VWAP:
o Allows you to specify a custom trading session (by time range and UTC offset).
o Calculates and plots a Volume-Weighted Average Price (VWAP) during that session.
By combining these two features, you can gauge potential intraday moves relative to historical behavior from the open, while also tracking a session-specific VWAP that can act as a dynamic support/resistance reference.
How the Code Works
1. Collect Daily Moves
o The script detects when a new day starts using time("D").
o Once a new day is detected, it stores the previous day’s up-move (dayHigh - dayOpen) and down-move (dayOpen - dayLow) into arrays.
o These arrays keep track of the last N days (default: 126) of up/down move data.
2. Compute Statistics
o The script computes the average (f_average()) of up-moves and down-moves over the stored period.
o It also computes the standard deviation (f_stddev()) of up/down moves for optional “forecast bands.”
3. Forecast Lines
o Plots the current day’s open.
o Plots the average forecast lines above and below the open (Avg Up Move Level and Avg Down Move Level).
o If standard deviation is enabled, plots additional lines (Avg+StdDev Up and Avg+StdDev Down).
4. Session VWAP
o The script detects the start of a user-defined session (via input.session) and resets accumulation of volume and the numerator for VWAP.
o As each bar in the session updates, it accumulates volume (vwapCumulativeVolume) and a price-volume product (vwapCumulativeNumerator).
o The session VWAP is then calculated as (vwapCumulativeNumerator / vwapCumulativeVolume) and plotted.
5. Visualization Options
o Users can toggle standard deviation usage, historical up/down moves plotting, and whether to show the forecast “bands.”
o The vwapSession and vwapUtc inputs let you adjust which session (and time zone offset) the VWAP is calculated for.
________________________________________
How to Use This Indicator on TradingView
1. Create a New Script
o Open TradingView, then navigate to Pine Editor (usually found at the bottom of the chart).
o Copy and paste the entire code into the editor.
2. Save and Add to Chart
o Click Save (give it a relevant title if you wish), then click Add to chart.
o The indicator will appear on your chart with the forecast lines and VWAP.
o By default, it is overlayed on the price chart (because of overlay=true).
3. Customize Inputs
o In the indicator’s settings, you can:
Change lookback days (default: 126).
Enable or disable standard deviation (Include Standard Deviation in Forecast?).
Adjust the standard deviation multiplier.
Choose whether to plot bands (Plot Bands with Averages/StdDev?).
Plot historical moves if desired (Plot Historical Up/Down Moves for Reference?).
Set your custom session and UTC offset for the VWAP calculation.
4. Interpretation
o “Current Day Open” is simply today’s open price on your chart.
o Up/Down Move Lines: Indicate a potential forecast based on historical averages.
If standard deviation is enabled, the second set of lines acts as an extended range.
o VWAP: Helpful for determining intraday price equilibrium over the specified session.
Important Notes / Best Practices
• The script only updates the historical up/down move data once per day (when a new day starts).
• The VWAP portion resets at the start of the specified session each day.
• Standard deviation multiplies the average up/down range, giving you a sense of “volatility range” around the day’s open.
• Adjust the lookback length (dayCount) to balance how many days of data you want to average. More days = smoother but possibly slower to adapt; fewer days = more reactive but potentially less reliable historically.
Educational & Liability Disclaimers
1. Educational Disclaimer
o The information provided by this indicator is for educational and informational purposes only. It is a technical analysis tool intended to demonstrate how to use historical data and basic statistics in Pine Script.
2. No Financial Advice
o This script does not constitute financial or investment advice. All examples and explanations are solely illustrative. You should always do your own analysis before making any investment decisions.
3. No Liability
o The author of this script is not liable for any losses or damages—monetary or otherwise—that may occur from the application of this script.
o Past performance does not guarantee future results, and you should never invest money you cannot afford to lose.
By adding this indicator to your TradingView chart, you acknowledge and accept that you alone are responsible for your own trading decisions.
Enjoy using the “Day’s Open Forecast” and Session VWAP for better market insights!
KAMA Stdev🚀 Trading View Alert! 🌟
Take your trading strategy to the next level with the KAMA Stdev Indicator! Designed with precision, this script combines the power of KAMA (Kaufman's Adaptive Moving Average) with Standard Deviation Bands for enhanced market insights 📈.
✨ Key Features:
💡 Perfect for traders seeking a dynamic tool for identifying market trends and volatility with ease.
💻 Code licensed under MPL 2.0 and developed by the QuantzTrader!
Check for Price hitting Standard Deviation 3, the price will generally come back to KAMA
Multi-SMA Dashboard (10 SMAs)Description:
This script, "Multi-SMA Dashboard (10 SMAs)," creates a dashboard on a TradingView chart to analyze ten Simple Moving Averages (SMAs) of varying lengths. It overlays the chart and displays a table with each SMA’s direction, price position relative to the SMA, and angle of movement, providing a comprehensive trend overview.
How It Works:
1. **Inputs**: Users define lengths for 10 SMAs (default: 5, 10, 20, 50, 100, 150, 200, 250, 300, 350), select a price source (default: close), and customize table appearance and options like angle units (degrees/radians) and debug plots.
2. **SMA Calculation**: Computes 10 SMAs using the `ta.sma()` function with user-specified lengths and price source.
3. **Direction Determination**: The `sma_direction()` function checks each SMA’s trend:
- "Up" if current SMA > previous SMA.
- "Down" if current SMA < previous SMA.
- "Flat" if equal (no strength distinction).
4. **Price Position**: Compares the price source to each SMA, labeling it "Above" or "Below."
5. **Angle Calculation**: Tracks the most recent direction change point for each SMA and calculates its angle (atan of price change over time) in degrees or radians, based on the `showInRadians` toggle.
6. **Table Display**: A 12-column table shows:
- Columns 1-10: SMA name, direction (Up/Down/Flat), Above/Below status, and angle.
- Column 11: Summary of Up, Down, and Flat counts.
- Colors reflect direction (lime for Up/Above, red for Down/Below, white for Flat).
7. **Debug Option**: Optionally plots all SMAs and price for visual verification when `debug_plots_toggle` is enabled.
Indicators Used:
- Simple Moving Averages (SMAs): 10 user-configurable SMAs ranging from short-term (e.g., 5) to long-term (e.g., 350) periods.
The script runs continuously, updating the table on each bar, and overlays the chart to assist traders in assessing multi-timeframe trend direction and momentum without cluttering the view unless debug mode is active.
RSI + MA + Divergence + SnR + Price levelOverview
This indicator combines several technical analysis tools to give traders a comprehensive view based on the RSI indicator. Its main features include:
RSI & Moving Averages on RSI:
RSI: Calculates the RSI based on the closing price (or a user-selected source) with a configurable period (default is 14).
EMA and WMA: Computes and plots an Exponential Moving Average (EMA with a period of 9) and a Weighted Moving Average (WMA with a period of 45) on the RSI, helping to smooth out signals and better identify trends.
Price Ladder Based on RSI:
Draws horizontal lines at specified target RSI levels (from targetRSI1 to targetRSI7, default levels ranging from 20 to 80).
Calculates a target price based on the price change relative to the averaged gains and losses, providing an estimated price level when the RSI reaches those critical levels.
Divergence Detection:
Identifies divergence between price and RSI:
Bullish Divergence: Detected when the price forms a lower low but RSI fails to confirm with a corresponding lower low, with the RSI falling under a configurable threshold (d_below).
Bearish Divergence: Detected when the price forms a higher high while the RSI does not, with the RSI exceeding a configurable upper threshold (d_upper).
Optionally displays labels on the chart to alert the trader when divergence signals are detected.
Auto Support & Resistance on RSI:
Automatically calculates and plots support and resistance lines based on the RSI over different lookback periods (e.g., 34, 89, 200 bars).
Helps traders identify key RSI levels where price reversals or breakouts might occur.
Benefits for the Trader
This indicator is designed to assist traders in their decision-making process by integrating multiple technical analysis elements:
Identifying Market Trends:
By combining the RSI with its moving averages (EMA, WMA), traders can better assess market trends and the strength of these trends, thereby improving trade entry accuracy.
Early Reversal Signals via Divergence:
Divergence signals (both bullish and bearish) can help forecast potential reversals in the market, allowing traders to adjust their strategies timely.
Determining RSI-Based Support/Resistance Levels:
Automatic identification of support and resistance levels on the RSI provides key areas where a price reversal or breakout may occur, assisting traders in setting stop-loss and take-profit levels strategically.
Price Target Forecasting with the Price Ladder:
The target price labels calculated at important RSI levels provide insights into potential price objectives, aiding in risk management and profit planning.
Flexible Configuration:
Traders can customize key parameters such as the RSI period, lengths for EMA and WMA, target RSI levels, divergence conditions, and support/resistance settings. This flexibility allows the indicator to adapt to different trading styles and strategies.
How to read data
Some use-cases
Used to estimate price according to the RSI level.
When you trade using RSI, you want to set your stop-loss or take-profit levels based on RSI. By looking at the price ladder, you know the corresponding price level to enter a trade.
Used to determine the entry zone.
RSI often reacts to its own previously established support/resistance levels. Use the Auto SnR feature to identify those zones.
Used to determine the trend.
RSI and its moving averages help identify the price trend:
Uptrend: 3 lines separate and point upward.
Downtrend: 3 lines separate and point downward.
Use WMA45 to determine the trend:
Uptrend: WMA45 is moving upward or trading above the 50 level.
Downtrend: WMA45 is moving downward or trading below the 50 level.
Sideways: WMA45 is trading around the 50 level.
Use EMA9 to confirm the trend: A crossover of EMA9 through WMA45 confirms the formation of a new trend.
Configuration
The script allows users to configure a number of important parameters to suit their analytical preferences:
RSI Settings:
RSI Length (rsiLengthInput): The number of periods used to compute the RSI (default is 14, adjustable as needed).
RSI Source (rsiSourceInput): Select the price source (default is the closing price).
RSI Color (rsiClr): The color used to display the RSI line.
Moving Averages on RSI:
EMA Length (emaLength): The period for calculating the EMA on RSI (default is 9).
WMA Length (wmaLength): The period for calculating the WMA on RSI (default is 45).
EMA Color (emaClr) and WMA Color (wmaClr): Customize the colors of the EMA and WMA lines.
Price Ladder Settings:
Toggle Price Ladder (showPrice): Enable or disable the display of the price ladder.
Target RSI Levels: targetRSI1 through targetRSI7: RSI values at which target prices are calculated (default values range from 20, 30, 40, 50, 60, 70 to 80).
Price Label Color (priceColor): The text color for displaying the target price labels.
Divergence Settings:
Divergence Toggle (calculateDivergence): Option to enable or disable divergence calculation and display.
Divergence Conditions:
d_below: RSI level below which bullish divergence is considered.
d_upper: RSI level above which bearish divergence is considered.
Display Divergence Labels (showDivergenceLabel): Option to display labels on the chart when divergence is detected.
Auto Support & Resistance on RSI:
Toggle Auto S&R (enableAutoSnR): Enable or disable automatic plotting of support and resistance levels.
Lookback Periods for Support/Resistance:
L1_lookback: Lookback period for level 1 (e.g., 34 bars).
L2_lookback: Lookback period for level 2 (e.g., 89 bars).
L3_lookback: Lookback period for level 3 (e.g., 200 bars).
Support and Resistance Colors:
rsiSupportClr: Color for the support line.
rsiResistanceClr: Color for the resistance line.
Alerts:
Divergence Alerts: Alert conditions are set up to notify the trader when bullish or bearish divergence is detected, aiding in timely decision-making.
Global M2 Level + OffsetA simple Global M2 indicator with a configurable offset (default is 105 days) and a smoothing line.
If you like it, consider donating a few sats: talvasconcelos@nostr.com
MA ShiftMultiple Moving Averages combined which works on all time frames, Buy sell signal as per the change in the color of indicator, can be combined with RSI & MACD Leader
Pino Trend Pack (SMA/EMA + Bollinger)🔹 Pino Trend Pack is a compact trend-following and volatility indicator that includes:
📈 Moving Averages:
- SMA 10, SMA 30
- EMA 21, EMA 55, EMA 89
(All configured for short-term to mid-term trend analysis by default, but fully adjustable for user preference.)
📊 Bollinger Bands:
- Period: 20
- Standard Deviation: 2.0
- Includes Upper Band, Lower Band, and Basis (SMA 20)
This pack is designed for traders who want a clean visual of price dynamics across multiple short-term trend layers, combined with volatility tracking. It helps you identify compression, expansion, and trend shifts at a glance.
🧠 Ideal for swing trading, short- to mid-term setups, or as a supporting tool in any confluence-based strategy.
Multi TF Indicators [KS modded LazBear]Multi TF Indicators
all indicators are showed on table with hi-lighted bull-bear colors
Advanced MACD + MA + RSI + Trend Buy/SellThis advanced indicator combines MACD, dual moving averages, RSI, volume spikes, and a 200 EMA trend filter to generate high-confidence Buy/Sell signals. It aims to reduce false signals by aligning multiple technical conditions:
Liquidity Sweep + OB Trap"A high-precision smart money indicator that detects liquidity sweeps, volume divergence, and order block traps—filtered by trend—to catch false breakouts and sniper reversals."
DavidDias290 EMA StrategyNOT FINAL VERSION! Tested only for the GBPUSD pair, using the 1min chart.
We wait for the price to touch the EMA200 to enter a price rejection.
With a SL of 5Pips and a TP of 15pips, we have a Risk to Reward of 1:3, which gives us an incredible margin to profit in the long term. In all the tests I have developed, I strongly advise using it only in the hours from 00:00 to 2:00 and from 7:00 to 19:00.
EMA ChannelWhat This Indicator Shows:
EMA Center Line
Plots the Exponential Moving Average of the closing price over a user-defined period (length).
Reacts more quickly to price changes than a standard SMA.
Dynamic Channel Bands
Two bands are drawn above and below the EMA.
The distance from the EMA is based on the standard deviation of price over the same period, multiplied by a user-defined width multiplier (mult).
These bands adapt to market volatility — widening during high volatility, narrowing during calm periods.
Channel Fill Area
The space between the upper and lower bands is visually shaded.
Helps quickly identify when price is inside or breaking out of the channel.
Volatility Insights
Since the channel width is based on standard deviation, it indirectly shows market volatility.
Wide channel = high volatility; narrow channel = low volatility.
Potential Trading Zones
Price nearing the upper band may indicate overbought or strong upward pressure.
Price near the lower band might suggest oversold or downward pressure.
Useful for mean reversion or trend continuation strategies depending on your style.
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
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.
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 พร้อมกันได้
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
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.
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!