EMA+BB+ST+CPR+PivotsEMA 20-50-100-200
Bollinger Bands
Super Trend
CPR with Pivot Points Daily, Weekly & Monthly
אינדיקטורים ואסטרטגיות
Scalping Strategy with EMA, RSI, MACD & VWAP//@version=5
indicator("Scalping Strategy with EMA, RSI, MACD & VWAP", overlay=true)
// Define EMA 9 & 21
ema9 = ta.ema(close, 9)
ema21 = ta.ema(close, 21)
// RSI Calculation
rsiLength = 14
rsi = ta.rsi(close, rsiLength)
// MACD Calculation
= ta.macd(close, 12, 26, 9)
// VWAP Calculation
vwap = ta.vwap(close)
// Buy and Sell Conditions
longCondition = ta.crossover(ema9, ema21) and rsi < 30 and macdLine > signalLine and close > vwap
shortCondition = ta.crossunder(ema9, ema21) and rsi > 70 and macdLine < signalLine and close < vwap
// Stop Loss and Take Profit
longSL = close * 0.98 // 2% stop loss
longTP = close * 1.02 // 2% take profit
shortSL = close * 1.02 // 2% stop loss
shortTP = close * 0.98 // 2% take profit
// Plot EMAs
plot(ema9, title="EMA 9", color=color.yellow)
plot(ema21, title="EMA 21", color=color.purple)
// Plot Buy and Sell Signals
plotshape(series=longCondition, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal")
plotshape(series=shortCondition, location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal")
// Alerts (Fixed)
alertcondition(longCondition, title="Buy Alert", message="🚀 Buy Signal!")
alertcondition(shortCondition, title="Sell Alert", message="🔻 Sell Signal!")
// Display SL & TP using Labels
if longCondition
label.new(bar_index, high, "Buy SL: " + str.tostring(longSL) + " TP: " + str.tostring(longTP), color=color.green, textcolor=color.white, size=size.small, style=label.style_label_down)
if shortCondition
label.new(bar_index, low, "Sell SL: " + str.tostring(shortSL) + " TP: " + str.tostring(shortTP), color=color.red, textcolor=color.white, size=size.small, style=label.style_label_up)
AKS-Supertrend-TradingThis indicator uses SuperTrend indicator pine script developed by @KivancOzbilgic. It plots Long / Short entries & exits and other information as label on the chart between a date range specified by the user.
It provides a visual representation of Trades based on change in SuperTrend.
Long Entry -
When Super-Trend changes from Red to Green will be a Long Entry signal and entry will be immediately after close of the signal candle.
Long Exit -
When Super-Trend changes from Green to Red will be a Long Exit signal and exit will be immediately after close of the signal candle.
Short Entry -
When Super-Trend changes from Green to Red will be a Short Entry signal and entry will be immediately after close of the signal candle.
Short Exit -
When Super-Trend changes from Red to Green will be a Short Exit signal and exit will be immediately after close of the signal candle.
Enhanced Multi-Indicator Trend Following 5m ETHThis is for ETH, backtest base on 1month from today. good profit too
Full Breakout Alert (Yesterday’s Open & Close)asdasdlasdpojawfj;omag;lm/asfg;jlmawpjod;amwld;'mlawm ,.;'/fs;lmkf;asf;kawf n;k/awg'l/awgawg
Enhanced Multi-Indicator Trend Following 5mshooting to the moon lol, works perfect and crazy on 5m chart. it goes even more crazy on 15m and 1h and 4h and so, but the backtest for over 15m is taking a year long data so not for me. High frequency trade and it hit 121.8% profit in a month.
Algo Scalping Pro Enhanced🔹 Algo Scalping Pro Enhanced 🔹
🚀 Optimized for High-Precision Scalping 🚀
Algo Scalping Pro Enhanced is an advanced indicator designed for day traders and scalpers looking for clear and effective trading signals. Its intelligent algorithm detects optimal buy and sell opportunities, filtering out market noise and maximizing trading efficiency.
✅ Strategy based on key price movements
✅ Dynamic risk optimization with automatic Stop-Loss and Take-Profit levels
✅ Compatible with automated trading systems
✅ Ideal for high-volatility markets: Crypto, Forex, and Futures
📊 Optimized for fast and efficient execution 📊
⚠️ Disclaimer: This indicator does not guarantee profitability and should be used with proper risk management.
The Scalper 5The Scalper 5 – Premium Trading Indicator for Crypto & Forex
Boost your trading with The Scalper 5 – a powerful Pine Script™ strategy designed for high-precision scalping on TradingView!
🚀 Key Features:
✅ Smart RSI & EMA Signals – Detects trend reversals for precise entries & exits
✅ Automated Alerts & Webhook Integration – Connect directly to Bitget for seamless trading
✅ Capital Management – Uses a % of your equity for optimal risk control
✅ Works on Any Market – Perfect for crypto, forex, and stocks
🔑 Subscription Includes:
🔹 Access to the private TradingView indicator
🔹 Step-by-step setup guide
🔹 Customer support for technical assistance
📈 Start Trading Smarter – Subscribe Now!
Nifty50 Intraday RSI Strategy//@version=5
strategy("Nifty50 Intraday RSI Strategy", overlay=true, initial_capital=100000, commission_type=strategy.commission.cash_per_order, commission_value=0.03)
// Input parameters
rsiLength = input.int(14, title="RSI Length", minval=1)
rsiLower = input.int(20, title="Oversold Level")
rsiUpper = input.int(60, title="Take Profit Level")
// Calculate RSI
rsiValue = ta.rsi(close, rsiLength)
// Time condition for Indian market hours (9:15 AM to 3:30 PM IST)
inSession = time(timeframe.period, "0915-1530", "Asia/Kolkata")
// Entry condition: RSI below 20 during market hours
enterLong = rsiValue < rsiLower and inSession
// Exit condition: RSI reaches 60 or market closing time
exitLong = ta.crossover(rsiValue, rsiUpper) or not inSession
// Execute trades
if (enterLong)
strategy.entry("Buy", strategy.long)
if (exitLong)
strategy.close("Buy")
// Plotting
plot(rsiValue, title="RSI", color=color.blue)
hline(rsiLower, title="Oversold", color=color.red, linestyle=hline.style_dashed)
hline(rsiUpper, title="Take Profit", color=color.green, linestyle=hline.style_dashed)
RSI(2) with MA(5) Strategy (Limit Orders)Understand the Indicator's Functionality
Buy Signal:
A green label ("BUY") appears below the bar when:
The RSI is above 80.
The RSI-based moving average (MA) is trending upward.
The low price of the bar reaches or falls below the calculated limit entry price (low - tickOffset).
Sell Signal:
A red label ("SELL") appears above the bar when:
The RSI is below 20.
The RSI-based moving average (MA) is trending downward.
The high price of the bar reaches or exceeds the calculated limit entry price (high + tickOffset).
Customize Your Settings
Click on the gear icon next to the indicator name in the chart's legend to open its settings.
Adjust the following inputs as needed:
RSI Length: The period for calculating RSI (default: 2).
MA Length: The period for calculating the moving average of RSI (default: 5).
Middle Band: The RSI threshold for signals (default: 20).
Tick Offset: The number of ticks above/below high/low for limit entry prices (default: 3).
samc sessionsI used to manually draw lines to indicate impact zoones of sessions aand so i made this indicator to automatically ark up session lines at impact zones
which helps in visualizing historical data per day when viewd in TF like 5mins.
also tells you live as a session lapses.
this works fully on IDC and Pepperstone charts
it might not visualize Asian session for some brokers due to their price compiling standards: like using different day breaks etc.
i marked the sessions as following :
colors
ASIAN : YELLOW
EURO : BLUE
US : Red /pink
Dr. Madhavi Akka V4 RSI(2) with MA(5)Understand the Indicator's Functionality
Buy Signal:
A green label ("BUY") appears below the bar when:
The RSI is above 80.
The RSI-based moving average (MA) is trending upward.
The low price of the bar reaches or falls below the calculated limit entry price (low - tickOffset).
Sell Signal:
A red label ("SELL") appears above the bar when:
The RSI is below 20.
The RSI-based moving average (MA) is trending downward.
The high price of the bar reaches or exceeds the calculated limit entry price (high + tickOffset).
Customize Your Settings
Click on the gear icon next to the indicator name in the chart's legend to open its settings.
Adjust the following inputs as needed:
RSI Length: The period for calculating RSI (default: 2).
MA Length: The period for calculating the moving average of RSI (default: 5).
Middle Band: The RSI threshold for signals (default: 50).
Tick Offset: The number of ticks above/below high/low for limit entry prices (default: 3).
Trend Classification Successfull)Timeframe-Based Considerations
Because lower timeframes tend to have more noise and quicker price moves, you may want to use shorter MA lengths and adjust ADX thresholds. Conversely, higher timeframes often smooth out noise, so you might use longer MA periods and possibly more stringent ADX levels.
15-Minute Chart
Moving Averages:
Short-term: Consider 5–7
Mid-term: Around 15–20
Long-term: Perhaps 30–50
ADX/DMI:
ADX Period: 7–10
Strong Trend Threshold: 25–30
Weak Trend Threshold: 15–20
Rationale: Shorter periods help capture the rapid moves while avoiding too many whipsaws.
45-Minute Chart
Moving Averages:
Short-term: About 8–10
Mid-term: Around 25–30
Long-term: Approximately 60–100
ADX/DMI:
ADX Period: 10–12
Strong Trend Threshold: 30–35
Weak Trend Threshold: 20–25
Rationale: Slightly longer periods than the 15-minute chart to reduce noise, but still sensitive enough for intraday trends.
1-Hour Chart
Moving Averages:
Short-term: 10 (as per default)
Mid-term: 50
Long-term: 200
ADX/DMI:
ADX Period: 14
Strong Trend Threshold: 40
Weak Trend Threshold: 20
Rationale: These settings are common on hourly charts and offer a good balance between responsiveness and filtering noise.
2-Hour Chart
Moving Averages:
Short-term: 10–15
Mid-term: 50–60
Long-term: 200–250
ADX/DMI:
ADX Period: 14
Strong Trend Threshold: 40–45
Weak Trend Threshold: 20
Rationale: With fewer but more significant moves, slightly increasing the long-term MA can help capture broader trends.
3-Hour and 4-Hour Charts
Moving Averages:
Short-term: 10–15
Mid-term: 50–60
Long-term: 250–300 (or even higher, depending on the asset)
ADX/DMI:
ADX Period: 14–20
Strong Trend Threshold: 45–50
Weak Trend Threshold: 20–25
Rationale: On these higher timeframes, trends are slower-moving. Longer MAs and slightly higher ADX thresholds help to avoid false signals.
Final Thoughts
Backtesting & Forward Testing:
Use historical data to test these settings on your chosen asset. Markets vary, so what works for one symbol or market condition may not work for another.
Optimization:
Consider using TradingView’s optimization features or your own parameter sweep to find the settings that deliver the best risk-adjusted performance on each timeframe.
Adaptability:
Remain flexible—market conditions change over time, so what works now might need adjustment in the future.
By starting with these suggestions and fine-tuning based on your backtest results, you can determine the optimal settings for each timeframe (15m, 45m, 1h, 2h, 3h, and 4h).
MK_Capital GradusThis indicator allows users to analyze price levels determined by specific angles. It uses maxPrice and minPrice values to calculate resistance and support levels, then displays them on the chart. Users can customize angles and colors to make their visual analysis more convenient.
Additionally, the indicator includes various settings to tailor it to individual needs. For instance, users can adjust the line length, text size, and distance between the line and text. This flexibility ensures a cleaner, clearer presentation on the chart.
Scientific purposes only. This indicator is not intended for making trading decisions.
Multi TimeFrame MTF EMAMulti Time Frame EMA (MTF EMA)
==========================
The Multi Time Frame EMA indicator is a powerful tool designed to help traders analyze Exponential Moving Averages (EMAs) across multiple timeframes simultaneously. By overlaying EMAs from different timeframes on a single chart, this indicator provides a comprehensive view of market trends, enabling you to make more informed trading decisions.
Key Features:
==========
Customizable Timeframes: Choose up to four different timeframes to display EMAs on your
chart. Perfect for identifying short-term and long-term trends at a glance.
Flexible EMA Settings: Adjust the EMA length and source to suit your trading strategy.
Candle Close Option: Toggle the "Wait for Candle to Close" feature to control whether the
indicator updates in real-time or waits for the candle to close.
Color-Coded EMAs: Easily distinguish between timeframes with customizable colors for each
EMA line.
User-Friendly Interface: Simple and intuitive settings make it easy to configure the indicator
to your preferences.
How to Use:
=========
Select Timeframes: Choose the timeframes you want to analyze (e.g., 1-minute, 15-minute,
1-hour, 4-hour).
Customize EMA Length: Set the EMA length to match your trading strategy (default is 200).
Analyze Trends: Observe how the EMAs interact across different timeframes to identify
potential entry and exit points.
//HorizonThe //Horizon Indicator is a straightforward yet effective tool for traders looking to spot trend changes and trading opportunities. It relies on a fixed set of moving averages to deliver clear signals you can trust.
Central to the indicator is the Horizon Line, which acts as a key decision point:
Above the Horizon Line , conditions favor long positions (calls).
Below the Horizon Line , it tilts toward short positions.
Another standout feature is divergences . When the price and the indicator move in opposite directions, it often hints at a potential reversal—giving you a heads-up to act before the market shifts.
Designed to be user-friendly, the //Horizon Indicator works right out of the box, making it suitable for traders of all experience levels.
More additions are coming, so expect this tool to grow even more useful over time. For now, it’s a reliable way to keep your trading on track.