9 & 15 EMA Scalping StrategyScalping Strategy on 9 & 15 EMA
📌 How to Use This Script
Copy & Paste into TradingView’s Pine Editor.
Click "Add to Chart" to apply it.
Set Alerts to get notified of trade signals.
Adjust Risk-Reward Ratio (1:1.5 default) & ATR-based SL if needed.
📌 Features of This Script
✅ Clear Buy/Sell Entries after confirmation
✅ Dynamic Stop-Loss using ATR for better risk management
✅ Take-Profit set to 1:1.5 RR by default (adjustable)
✅ Alerts for automated notifications
Would you like any modifications, such as higher timeframe confirmation? 🚀
You said:
add this script to your created 9 15 ema scalping strategy combine it
ChatGPT said:
Here's your complete 9 & 15 EMA Scalping Strategy combined with the TradingView Pine Script for easy execution. 🚀
It includes:
✅ Buy/Sell rules for scalping
✅ TradingView Pine Script with proper arguments
✅ Entry after candle closes above/below EMAs
✅ Stop-loss & take-profit (1:1.5 RR)
✅ Alerts for trade signals
📌 9 & 15 EMA Scalping Strategy
🔹 Timeframe:
📌 1-minute / 3-minute (for scalping)
🔹 Indicators Required:
✅ 9 EMA (Fast EMA)
✅ 15 EMA (Slow EMA)
✅ ATR (for stop-loss calculation)
✅ Support & Resistance (Optional for confluence)
🟢 Buy Side (Long Entry)
1️⃣ 9 EMA crosses above 15 EMA (Bullish crossover).
2️⃣ Price closes above both EMAs (Confirmation).
3️⃣ Enter BUY on next candle open after confirmation.
4️⃣ Stop-loss: Below recent swing low OR 1x ATR below entry.
5️⃣ Take-profit: 1:1.5 risk-reward ratio.
6️⃣ Exit: When 9 EMA crosses below 15 EMA.
🔴 Sell Side (Short Entry)
1️⃣ 9 EMA crosses below 15 EMA (Bearish crossover).
2️⃣ Price closes below both EMAs (Confirmation).
3️⃣ Enter SELL on next candle open after confirmation.
4️⃣ Stop-loss: Above recent swing high OR 1x ATR above entry.
5️⃣ Take-profit: 1:1.5 risk-reward ratio.
6️⃣ Exit: When 9 EMA crosses above 15 EMA.
Moving Averages
EMA Crossover StrategyHow It Works
Long Entry: When EMA 5 crosses above EMA 20 and the close is above EMA 20, the strategy enters a long position with 1 contract.
Short Entry: When EMA 5 crosses below EMA 20 and the close is below EMA 20, the strategy enters a short position with 1 contract.
Position Reversal: If already in a long position and a sell signal occurs, the long position closes, and a short position opens (and vice versa).
Visualization: The chart shows EMA lines, buy/sell signals, and a colored background reflecting the current position.
Crypto Futures Day Trading StrategySummary of the Strategy
Chart: 15-minute
Buy Signal:
5 SMA > 20 SMA
RSI < 70
Price not above upper BB
Sell Signal:
5 SMA < 20 SMA
RSI > 30
Price not below lower BB
Stop-Loss: 2 ATR from entry
Take-Profit: 4 ATR from entry
Risk: 1% of account per trade
Ghost MA + Momentum + Fib TP/SL + DashboardSOP
1. Trend:
🟢 UPTREND – Price is forming higher highs and higher lows.
🔴 DOWNTREND – Price is forming lower highs and lower lows.
⚪️ SIDEWAYS or Wait – No clear structure, wait for confirmation.
✅ This helps determine your bias: Only Buy in uptrend, only Sell in downtrend.
IWMA - DolphinTradeBot1️⃣ WHAT IS IT ?
▪️ The Inverted Weighted Moving Average (IWMA) is the reversed version of WMA, where older prices receive higher weights, while recent prices receive lower weights. As a result, IWMA focuses more on past price movements while reducing sensitivity to new prices.
2️⃣ HOW IS IT WORK ?
🔍 To understand the IWMA(Inverted Weighted Moving Average) indicator, let's first look at how WMA (Weighted Moving Average) is calculated.
LET’S SAY WE SELECTED A LENGTH OF 5, AND OUR CURRENT CLOSING VALUES ARE .
▪️ WMA Calculation Method
When calculating WMA, the most recent price gets the highest weight, while the oldest price gets the lowest weight.
The Calculation is ;
( 10 ×1)+( 12 ×2)+( 21 ×3)+( 24 ×4)+( 38 ×5) = 10+24+63+96+190 = 383
1+2+3+4+5 = 15
WMA = 383/15 ≈ 25.53
WMA = ta.wma(close,5) = 25.53
▪️ IWMA Calculation Method
The Inverted Weighted Moving Average (IWMA) is the reversed version of WMA, where older prices receive higher weights, while recent prices receive lower weights. As a result, IWMA focuses more on past price movements while reducing sensitivity to new prices.
The Calculation is ;
( 10 ×5)+( 12 ×4)+( 21 ×3)+( 24 ×2)+( 38 ×1) = 50+48+63+48+38 = 247
1+2+3+4+5 = 15
IWMA = 247/15 ≈ 16.46
IWMA = iwma(close,5) = 16.46
3️⃣ SETTINGS
in the indicator's settings, you can change the length and source used for calculation.
With the default settings, when you first add the indicator, only the iwma will be visible. However, to observe how much it differs from the normal wma calculation, you can enable the "show wma" option to see both indicators with the same settings or you can enable the Show Signals to see IWMA and WMA crossover signals .
4️⃣ 💡 SOME IDEAS
You can use the indicator for support and resistance level analysis or trend analysis and reversal detection with short and long moving averages like regular moving averages.
Another option is to consider whether the iwma is above or below the normal wma or to evaluate the crossovers between wma and iwma.
Scalping Strategy by danzysScript Explanation:
Calculating Moving Averages (SMA):
short_sma: The short-term moving average (9 candles).
long_sma: The long-term moving average (21 candles).
Calculating the RSI Indicator:
rsi: Standard RSI using 14 candles.
Entry Conditions:
Long (Buy): The price should cross above the short-term SMA from below, and the RSI should be below 30 (indicating an oversold market).
Short (Sell): The price should cross below the short-term SMA from above, and the RSI should be above 70 (indicating an overbought market).
Stop Loss and Take Profit:
Stop Loss is set to 0.5% below the entry price for long positions, and 0.5% above the entry price for short positions.
Take Profit is set to 1% above the entry price for long positions, and 1% below the entry price for short positions.
Plotting the SMAs on the Chart:
Both the short-term and long-term SMA levels are plotted on the chart to visually monitor the positions.
Dynamic EMA/WMAThe Dynamic EMA/WMA indicator is designed to provide a clear visual representation of market trends using two key moving averages:
🔹 12 EMA (Exponential Moving Average) – A faster-moving average that reacts quickly to price changes.
🔹 200 WMA (Weighted Moving Average) – A long-term trend indicator that smooths out price fluctuations.
Key Features:
✅ Dynamic Color Changes – The EMA and WMA lines change color based on price action:
Blue EMA: Price is fully above the 12 EMA (bullish signal).
Red EMA: Price is fully below the 12 EMA (bearish signal).
Yellow WMA: Price is above the 200 WMA (bullish signal).
Red WMA: Price is below the 200 WMA (bearish signal).
✅ Trend Confirmation – identify bullish and bearish momentum by analyzing how candles interact with the moving averages.
✅ Customizable Settings – Modify the EMA and WMA lengths to suit different trading strategies.
Quickly assess the market direction and filter out weak trends. Perfect for intraday, swing, and long-term trading strategies. 🚀
Bim EMA 35 NavigatorBim EMA 35 Navigator
The Bim EMA 35 Navigator is a powerful trend-following and pullback-based trading indicator designed to help traders identify key buy and sell opportunities using the Exponential Moving Average (EMA 35).
Key Features:
✅ EMA 35 Trend Detection – The EMA line changes color: Green for an uptrend and Red for a downtrend.
✅ Buy & Sell Alerts – Generates alerts when price crosses above or below the EMA 35.
✅ Pullback Detection – Identifies pullbacks to the EMA within a trend, providing additional trade opportunities.
✅ Customizable Parameters – Users can fine-tune pullback thresholds and confirmation candles.
How It Works:
Trend Confirmation: The EMA 35 helps determine whether the market is in an uptrend or downtrend.
Entry Signals: A buy signal appears when price crosses above the EMA in an uptrend, and a sell signal appears when price crosses below the EMA in a downtrend.
Pullback Opportunities: Detects pullbacks to the EMA and confirms them with recent price action, making it easier to enter trades at better prices.
This indicator is ideal for traders looking to follow trends while also capitalizing on pullback entries. It works well across multiple timeframes and asset classes, including stocks, forex, and crypto.
🚀 Use the Bim EMA 35 Navigator to refine your strategy and improve your trade timing!
Enhanced MACDHere’s a polished description of the **"Enhanced MACD Indicator"** in English for publishing:
---
### Description:
The **"Enhanced MACD Indicator"** is a sophisticated momentum analysis tool, building upon the classic Moving Average Convergence Divergence (MACD) indicator. Designed with traders in mind, this version introduces advanced features and refined visualization to elevate trading strategies.
---
### Key Features:
1. **Customizable Histogram:**
- Dynamic color changes for the histogram to clearly show bullish (rising) and bearish (falling) momentum.
- Fully adjustable EMA lengths and histogram smoothing for tailored analysis.
2. **Alerts and Signal Triggers:**
- Real-time alerts for bullish and bearish MACD-Signal line crossovers.
- Quick identification of potential buy and sell opportunities.
3. **Smoothed Histogram Moving Average:**
- An optional moving average of the histogram to highlight long-term trends and filter short-term noise.
4. **User-Friendly Design:**
- Intuitive customization options for colors, line thickness, and more.
- Clear and precise visual representation to simplify decision-making.
---
Perfect For:
This indicator is ideal for traders seeking:
- Accurate momentum-based trading signals through MACD and Signal line crossovers.
- Improved visibility into market trends with a color-coded histogram.
- A reliable tool for both intraday and swing trading.
EMA + RSI + MACD StrategyThe EMA + RSI + MACD strategy combines three powerful indicators to identify trend direction, confirm momentum, and filter out false signals. This strategy works exceptionally well for scalping, day trading, and swing trading in volatile markets like Bitcoin and other cryptocurrencies.
Custom Trading Strategyihave tryed to include the moving averages and moving averages channel alon with super trend to strde when above super trend and sell when below supertrend .
Combined Up down with volumeDescription of the Script: "Combined Up Down with Volume"
This Pine Script v5 indicator is designed to analyze price movements, volume conditions, and trend direction using moving averages (MA). It overlays key indicators on the chart to help traders identify potential signals based on price momentum and volume levels.
Key Features & Functionality:
1. User Inputs
use → Enables or disables the combination of momentum and volume conditions.
vol → Defines the minimum volume threshold (default: 1,000,000).
per → Specifies the minimum price change percentage (default: 5%).
2. Momentum & Volume Conditions
Rate of Change (ROC) Check:
Uses ta.roc(close, 1), measuring the percentage change in price over one bar.
If the absolute value of ROC is greater than or equal to the input percentage, it triggers a signal.
Volume Check:
If the volume of the current candle is greater than or equal to the specified threshold, it triggers a signal.
Plot Signals (Circles Below Candles):
If use = false:
ROC-based condition → Plots a circle below bars where the price change meets the threshold.
Volume-based condition → Plots a circle for bars where the volume exceeds the threshold.
If use = true:
Plots a small purple circle only when both conditions (ROC & Volume) are met.
3. Moving Averages (Trend Analysis)
20-period SMA (ma20) → Short-term trend indicator.
50-period SMA (ma50) → Medium-term trend indicator.
Color-coded 20-period SMA:
If the SMA is rising for 3 bars, it is Green (Uptrend).
If the SMA is falling for 3 bars, it is Red (Downtrend).
Otherwise, it is Gray (Neutral/Sideways market).
Both 20 and 50 SMAs are plotted on the chart, helping traders identify crossovers and overall trend direction.
Use Case:
This indicator helps traders spot: ✅ Strong price movements (+/- 5%) along with high volume, which could indicate breakouts or reversals.
✅ Trends & momentum shifts using color-coded moving averages.
✅ Potential trading opportunities when volume and momentum align.
budget cydynamic fib + ma cloud for trend spotting
auto retraced dynamic fib using SMA or EMA
adjustable ma cloud
Supply & Demand Zones + SMA CrossoverSupply & Demand Zones + SMA Crossover
This script combines Supply & Demand Zones with a 50 SMA and 100 SMA crossover strategy to identify key trading opportunities.
🔹 Features:
✅ Plots Supply (Resistance) and Demand (Support) zones based on swing highs and lows.
✅ Highlights zones dynamically with background colors.
✅ Includes 50 SMA and 100 SMA to track trend direction.
✅ Generates Buy signals (green arrow) when the 50 SMA crosses above the 100 SMA.
✅ Generates Sell signals (red arrow) when the 50 SMA crosses below the 100 SMA.
✅ Provides alert conditions for automatic notifications.
This tool is ideal for traders looking to combine price action with moving average crossovers to identify potential trade entries and exits. 🚀📈
Supply & Demand Zones + SMA CrossoverSupply & Demand Zones + SMA Crossover
This script combines Supply & Demand Zones with a 50 SMA and 100 SMA crossover strategy to identify key trading opportunities.
🔹 Features:
✅ Plots Supply (Resistance) and Demand (Support) zones based on swing highs and lows.
✅ Highlights zones dynamically with background colors.
✅ Includes 50 SMA and 100 SMA to track trend direction.
✅ Generates Buy signals (green arrow) when the 50 SMA crosses above the 100 SMA.
✅ Generates Sell signals (red arrow) when the 50 SMA crosses below the 100 SMA.
✅ Provides alert conditions for automatic notifications.
This tool is ideal for traders looking to combine price action with moving average crossovers to identify potential trade entries and exits. 🚀📈
🌰Chestnut Trend Zones🌰Chestnut Trend Zones
Confirm new trend impulses using the indicator
Mark the trend line on the indicator from the beginning of the trend and connect the following impulses. This will allow you to identify a potential new momentum zone as you approach the marked line.
The indicator consists of an indexed modifiable SMA 300
Line Break Chart StrategyKey Features
Trend-Based Trading:
Uses 20-period SMA (short-term) and 50-period SMA (long-term) to identify the trend direction.
Buy signals occur only in a bullish trend (when the short-term SMA is above the long-term SMA).
Sell signals occur only in a bearish trend (when the short-term SMA is below the long-term SMA).
Breakout Confirmation with Visual Cues:
If the price breaks out above resistance in an uptrend, a green thick line is plotted.
If the price breaks down below support in a downtrend, a red thick line is plotted.
Risk Management (Optional):
Uses the Average True Range (ATR) to determine a maximum risk threshold (adjustable by the user).
Ensures that only signals within the acceptable risk-reward range are executed.
Alerts for Trade Execution:
Sends alerts only when a valid buy or sell signal is confirmed in the direction of the trend.
Helps traders act quickly on high-probability opportunities.
How It Works
The script checks the trend direction using moving averages.
It detects buy/sell signals when the price crosses the short-term SMA in the direction of the trend.
If the breakout condition is met, it draws colored lines and triggers an alert for potential trades.
The strategy ensures risk is controlled by filtering out high-risk trades beyond the ATR threshold.
Nifty Indices ScalpApply only for Nifty Options charts.
This script is a multi-component trading indicator for TradingView, incorporating various trading techniques and visualization tools. Here's a breakdown of its major sections:
1. User Inputs & Settings
Users can toggle different features like SuperTrend, Reversal Signals, PSAR-based Bar Coloring, and Z-score Bar Coloring.
Allows selection of calculation basis for Buy/Sell levels from today's open, previous day’s high/low/close.
Configurable line style, label size, and label position.
2. Gann-Based Buy/Sell Levels
Calculates Gann-style price levels based on the selected price reference (Todays Open, Previous Day High, etc.).
Uses the square root of the chosen price reference to derive different levels (support, buy levels, targets).
Plots these levels using lines and labels.
3. Daily Open Line
Plots the daily open as a white-dotted line.
4. Reversal System
Uses a 10-period EMA (Exponential Moving Average) to identify reversal signals:
A Signal Candle is a candle that does not touch the EMA.
A Confirmation Candle is one that touches the EMA after the signal candle.
If a confirmation candle appears, it marks a potential trend reversal.
Plots buy/sell triangles and stop-loss lines for reversal trades.
5. PSAR-Based Bar Coloring
Implements three different PSAR (Parabolic SAR) values with different acceleration factors.
Bars are colored purple for bullish trends and blue for bearish trends if all three PSAR values confirm the direction.
7. Z-Score Calculation (Partially Cut Off)
A Z-score function is included but seems to be used for weighting calculations.
10,20 EMA with Buy/Sell SignalsExplanation:(Create by Samaresh Panda)
The script calculates the 10-period and 20-period EMAs using the ta.ema function.
A buy signal is generated when the 10 EMA crosses above the 20 EMA (ta.crossover).
A sell signal is generated when the 10 EMA crosses below the 20 EMA (ta.crossunder).
The signals are plotted as shapes on the chart:
Green up-arrow for buy signals.
Red down-arrow for sell signals.
MACD + RSI + 200EMA Filtered SignalsMACD HAS RSI filter and EMA filter which gives good buy and sell signals.
Several indicators combine Moving Average Convergence Divergence (MACD) with Relative Strength Index (RSI) and Exponential Moving Average (EMA) filters to generate potential buy and sell signals . These enhanced indicators use the EMA to filter signals based on the trend, only considering buy signals when the price is above the EMA and sell signals when it's below . The RSI helps identify overbought and oversold conditions, improving the accuracy of trade entries .
Min-Max | Buy-Sell Alert with LevelsMin-Max | Buy-Sell Alert with Levels
Description:
The Min-Max | Buy-Sell Alert with Levels indicator is a powerful tool designed to help traders identify key levels of support and resistance based on the previous day's high and low prices. It plots horizontal lines for the previous day's minimum (Min) and maximum (Max) prices, along with four intermediate levels (Stop Loss 1 to Stop Loss 4) calculated as equal percentage steps between the Min and Max.
This indicator is perfect for traders who want to:
Identify potential entry points when the price returns within the Min-Max range.
Set stop-loss levels based on the calculated intermediate levels.
Receive alerts for buy, sell, and stop-loss conditions.
Key Features:
Previous Day's Min and Max Lines:
Automatically plots the Min (red line) and Max (green line) of the previous day.
These levels act as dynamic support and resistance zones.
Intermediate Stop Loss Levels:
Calculates and plots four intermediate levels (Stop Loss 1 to Stop Loss 4) between the Min and Max.
Each level is equally spaced, representing potential stop-loss or take-profit zones.
Customizable Alerts:
Buy Alert: Triggered when the price returns within the Min-Max range after breaking below the Min.
Sell Alert: Triggered when the price returns within the Min-Max range after breaking above the Max.
Stop Loss Alerts: Triggered when the price reaches any of the four intermediate levels (Stop Loss 1 to Stop Loss 4).
Customizable Appearance:
Adjust the thickness, color, and style (solid, dashed, dotted) of the lines.
Customize the colors of the Stop Loss labels for better visualization.
Labels on the Chart:
Displays "Buy" and "Sell" labels on the chart when the respective conditions are met.
Labels for Stop Loss levels are also displayed for easy reference.
How to Use:
Add the indicator to your chart.
Customize the settings (line colors, thickness, and alert preferences) in the indicator's settings panel.
Use the Min and Max lines as dynamic support and resistance levels.
Monitor the intermediate levels (Stop Loss 1 to Stop Loss 4) for potential stop-loss or take-profit zones.
Set up alerts for Buy, Sell, and Stop Loss conditions to stay informed about key price movements.
Why Use This Indicator?
Simple and Effective: Focuses on the most important levels from the previous day.
Customizable: Tailor the indicator to match your trading style and preferences.
Alerts: Never miss a trading opportunity with customizable alerts for key conditions.
Settings:
Line Thickness: Adjust the thickness of the Min, Max, and intermediate lines.
Line Colors: Customize the colors of the Min, Max, and intermediate lines.
Line Style: Choose between solid, dashed, or dotted lines.
Stop Loss Label Colors: Customize the colors of the Stop Loss labels.
Alerts: Enable or disable alerts for Buy, Sell, and Stop Loss conditions.
Ideal For:
Day traders and swing traders.
Traders who rely on support and resistance levels.
Anyone looking for a clear and customizable tool to identify key price levels.
Disclaimer:
This indicator is for educational and informational purposes only. It does not constitute financial advice. Always conduct your own analysis and trade responsibly.
Get Started Today!
Add the Min-Max | Buy-Sell Alert with Levels indicator to your chart and take your trading to the next level. Customize it to fit your strategy and never miss a key trading opportunity again!
rizvan scalpingTitle: Rizvan Scalping Strategy – SMA + Engulfing Pattern
Description:
This scalping strategy combines the 22-period Simple Moving Average (SMA) and Engulfing Candlestick Patterns to generate trade signals.
✅ How It Works:
A Buy Signal appears when a Bullish Engulfing pattern forms below the SMA, indicating a potential upward reversal.
A Sell Signal appears when a Bearish Engulfing pattern forms above the SMA, signaling a possible downtrend.
The SMA dynamically changes color:
Green: When the trend is moving up.
Red: When the trend is moving down.
This strategy helps traders identify potential trend reversals using a combination of price action (engulfing patterns) and trend confirmation (SMA direction). Suitable for short-term scalping in trending markets.
Horizontal EMADesigned to plot a horizontal Exponential Moving Average (EMA) line on a TradingView chart. The script allows users to specify the period and source for the EMA calculation. The line remains fixed at the calculated EMA value, providing a visual reference for the trend over the specified period. The script uses version 5 of Pine Script and draws a blue horizontal line at the EMA value on the chart, updating as new data is available.