Kamal 8 Tick Trading Setup//@version=5
indicator("Kamal 8 Tick Trading Setup", overlay=true)
// Define the length for the lookback period
length = 8
// Calculate the highest high and lowest low of the previous 'length' candles, excluding the current candle
highestHigh = ta.highest(high , length)
lowestLow = ta.lowest(low , length)
// Initialize a variable to track the current position
var int position = 0 // 0 = no position, 1 = buy, -1 = sell
// Generate Buy and Sell signals
buySignal = (close > highestHigh) and (position != 1)
sellSignal = (close < lowestLow) and (position != -1)
// Update the position variable
if (buySignal)
position := 1
if (sellSignal)
position := -1
// Plot Buy and Sell signals on the chart
plotshape(series=buySignal, location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=sellSignal, location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// Debugging plots to check the highest high and lowest low
plot(highestHigh, color=color.blue, title="Highest High")
plot(lowestLow, color=color.orange, title="Lowest Low")
نماذج فنيه
Discount/Premium OTE LevelsThis indicator is created to identify discount/premium areas to provide additional confluence to trades taken. The underlying theory is that the trades taken in discounted areas are likely to have less risk due to a smaller stop loss and a higher reward/risk ratio.
The indicator operates by first identifying a zone between the last major swing high and low. These highs and lows are determined as price points that at the extremes within the number of bars to the left, as defined by the "Swing Sensitivity" setting.
Once a price zone is established, the indicator verifies that the zone meets the minimum size in points as configured via the "Minimum size" setting to be considered tradable. Zones that are too small may not provide a sufficient range even for scalping. The default value is 42 points based on Nasdaq, which means that the distance between inner most OTE levels (0.382 and 0.618) is at least 10 points.
When a valid zone is identified, it is then subdivided into areas of interest based on OTE levels, which can be configured/adjusted via the "Levels to Draw" setting. These levels represent the midpoint (50%), which distinguishes between premium and discount, and the three OTE levels 0.79, 0.705, 0.618, above the 50% for discount and below the 50% for premium.
For example, if a zone is formed initially by a swing low followed by a swing high with the assumption that the draw is higher, the indicator can be used to formulate long positions from below the 50% level starting at 0.38 OTE level, or ideally at 0.295 OTE level using 0 as a stop loss. Alternatively, if the 50% level is not yet tapped, short scalp positions can be made from 0.79-0.618 OTE levels with 50% as a partial or TP target.
See for long/short example
Typically, the indicator will show only a single zone. However, there may be cases with two zones: one larger parent zone containing a smaller, valid price zone within itself.
The indicator will automatically invalidate and remove the zone once the high/low of the zone is invalidated.
Configuration:
The indicator provides several visualization options for customization, including:
Color settings for OTE levels, with separate settings for edge/50% color, premium, and discount levels.
Settings for line style for OTE levels.
Settings to determine whether to show prices on level labels.
Settings to decide if lines should be extended to the right.
Virat Bharat Nifty Banknifty scalping indicatorsthis indicator is only for buy signala and only for intraday trading and this is only for educational purpose
SMA Crossover Strategy by AARYAN Buy Signal: When the 50-period SMA crosses above the 200-period SMA
Sell Signal: When the 50-period SMA crosses below the 200-period SMA
This script also includes:
✔️ Visual buy/sell markers on the chart
✔️ Alerts for buy and sell signals
✔️ Backtesting capability to analyze past performance
The CRT Indicator (1/2) @TorioTradesThis helps you trade crt with the help of ict and key levels with key time
Time-based Alerts for Trading Windows🌟 Time-based Alerts for Trading Windows 🌐📈
This Time-based Alerts for Trading Windows script is a highly customizable and reliable tool designed to assist traders in managing automated strategies or manually monitoring specific market conditions. Inspired by CrossTrade's Time-based Alert, this script is tailored for those who rely on precise time windows to trigger actions, such as sending webhook signals or managing Expert Advisors (EAs).
Whether you are a scalper, day trader, or algorithmic trader, this script empowers you to stay on top of your trades with fully customizable time-based alerts.
🛠️ Customizable Time Alerts
This indicator allows you to create up to 12 unique time windows by specifying the exact hour and minute for each alert. Each time window corresponds to an individual alert condition, making it perfect for managing trades during specific market sessions or key time periods.
For example:
Alert 1 can be set at 9:30 AM (market open).
Alert 2 can be set at 3:55 PM (just before market close).
Each alert can be toggled on or off in the indicator settings, allowing you to manage alerts without having to reconfigure your script.
You can adjust the colours to fit any colour scheme you like!
🕒 Odd and Even Time Alerts
The script comes with three built-in alert type categories:
Odd Alerts (marked with a green triangle on the chart): These correspond to odd-numbered inputs like Alert 1, Alert 3, Alert 5, and so on.
Even Alerts (marked with a red triangle on the chart): These correspond to even-numbered inputs like Alert 2, Alert 4, Alert 6, and so on.
You can also customize all 12 alerts individually to include a custom alert message
These alerts serve as a convenient way to differentiate between multiple trading strategies or market conditions. You can customize alert messages for odd and even alerts directly from TradingView’s alert panel.
🔗 Webhook Integration for Automation
This script is fully compatible with webhook-based automation. By configuring your alerts in TradingView, you can send signals to trading bots, EAs, or any third-party system. For example, you can:
Turn off an EA at a specific time (e.g., 3:55 PM EST).
Send buy/sell signals to your bot during predefined trading windows.
Simply use TradingView’s alert message editor to format webhook payloads for your automation system.
🌐 Timezone Flexibility
Trading happens across multiple time zones, and this script accounts for that. You can toggle between:
Eastern Time (New York): Ideal for most US-based markets.
Central Time (Exchange): Useful for futures and commodities traders.
This ensures your alerts are always in sync with your preferred time zone, eliminating confusion.
🎨 Visual Indicators
The script plots visual markers directly on your chart to indicate active alerts:
Up Facing Triangles: Represent odd-numbered alerts, providing a quick reference for these time windows.
Down Facing Triangles: Represent even-numbered alerts, helping you track different strategies or conditions.
These visual markers make it easy to see when alerts are triggered, even at a glance.
In our chart example above, the blue triangles indicate the odd-numbered alerts and the yellow triangles the even-numbered alerts. You can set them to the colours of green and red if you prefer that!
📈 Practical Use Case
Let’s say you’re trading the USTEC index on a 1-minute chart. You want to:
Turn off your trading bot at 16:55 EST to avoid after-market volatility.
Trigger a re-entry signal at 17:30 EST to capture moves during the Asian session.
Visually monitor these actions on your chart for easy reference.
This script makes it possible with precision alerts and webhook integration. Simply configure the time windows in the settings and set up your alerts in TradingView.
🚨 How to Set Up Alerts
Enable or Disable Alerts: Use the script’s settings to toggle specific alerts on or off as needed.
Set Custom Time Windows: Define the hour and minute for each alert in the settings panel.
Create Alerts in TradingView:
Go to the TradingView alert panel.
Select the condition (e.g., "Odd Time-based Alert (Green)" or "Even Time-based Alert (Red)").
Customize the alert message for webhook integration or personal notification.
Choose the trigger type: Once Per Bar or Once Per Bar Close to keep the alert active.
Integrate with Webhooks: Use the alert message field to format payloads for automation systems like MT4, MT5, or third-party bots.
📋 Key Notes
Alerts can trigger indefinitely if set to "Once Per Bar" or "Once Per Bar Close".
Always ensure the expiration date is set far in the future to avoid unexpected alert deactivation.
Test webhook messages and alert configurations thoroughly before using them in live trading.
This script is a powerful addition to your trading toolbox, offering precision, flexibility, and automation capabilities. Whether you’re turning off an EA, managing trades during market sessions, or automating strategies via webhooks, this script is here to support you.
Start using the Time-based Alerts for Trading Windows today and trade with confidence! 🚀✨
Acknowledgment
This indicator was created using the foundation code provided by CrossTrade.io . Huge thanks to their work for inspiring this customizable solution! Follow them here: @CrossTradeTeam
!! 🔥 Breakout Strategy with Trailing StopThis breakout strategy identifies trading opportunities when the price moves beyond the highest high or lowest low of the last N lookback bars and uses a trailing stop-loss mechanism for risk management. The strategy works best on TSLA (5 min or 1-hour chart) and NQ (15 min chart) and enforces a 1-hour cooldown between trades.
Key Features:
✅ Breakout Entry:
Buy if price breaks above the previous high by a certain breakout percentage.
Sell if price breaks below the previous low by a certain breakout percentage.
✅ Trailing Stop-Loss for Exits:
Activates only after reaching 1% profit.
Dynamically follows the price to lock in profits.
✅ Trade Cooldown:
Prevents re-entering a trade for 1 hour after an entry.
✅ Customizable Inputs:
Adjustable lookback period, breakout threshold, stop-loss percentage, and trailing stop percentage.
📊 Best for volatile assets like TSLA and NQ (15 min, 1 hour) on short to medium timeframes! 🚀
Ultimate T3 Fibonacci for BTC Scalping. Look at backtest report!Hey Everyone!
I created another script to add to my growing library of strategies and indicators that I use for automated crypto trading! This strategy is for BITCOIN on the 30 minute chart since I designed it to be a scalping strategy. I calculated for trading fees, and use a small amount of capital in the backtest report. But feel free to modify the capital and how much per order to see how it changes the results:)
It is called the "Ultimate T3 Fibonacci Indicator by NHBprod" that computes and displays two T3-based moving averages derived from price data. The t3_function calculates the Tilson T3 indicator by applying a series of exponential moving averages to a combined price metric and then blending these results with specific coefficients derived from an input factor.
The script accepts several user inputs that toggle the use of the T3 filter, select the buy signal method, and set parameters like lengths and volume factors for two variations of the T3 calculation. Two T3 lines, T3 and T32, are computed with different parameters, and their colors change dynamically (green/red for T3 and blue/purple for T32) based on whether the lines are trending upward or downward. Depending on the selected signal method, the script generates buy signals either when T32 crosses over T3 or when the closing price is above T3, and similarly, sell signals are generated on the respective conditions for crossing under or closing below. Finally, the indicator plots the T3 lines on the chart, adds visual buy/sell markers, and sets alert conditions to notify users when the respective trading signals occur.
The user has the ability to tune the parameters using TP/SL, date timerames for analyses, and the actual parameters of the T3 function including the buy/sell signal! Lastly, the user has the option of trading this long, short, or both!
Let me know your thoughts and check out the backtest report!
Smoothed Heiken Ashi Strategy Overlay ZonesThe Smoothed Heiken Ashi Strategy Overlay Zones is a custom TradingView indicator designed to refine trend analysis and provide clear buy/sell signals by leveraging smoothed Heiken Ashi calculations.
Key Features:
✅ Smoothed Heiken Ashi Candles
Traditional Heiken Ashi values are enhanced using a multi-layered EMA smoothing technique, reducing market noise and providing a clearer trend direction.
✅ Buy & Sell Zone Visualization
Background Color Highlights:
🟩 Green for Bullish Trends
🟥 Red for Bearish Trends
✅ Trade Signals & Alerts
🔼 Buy Signal: Triggers when a bullish trend starts.
🔽 Sell Signal: Activates when a bearish trend begins.
🔔 Custom Alerts: Notifies traders when buy or sell zones are activated.
This indicator is ideal for trend-following traders looking for a smoother representation of price action while reducing false signals in volatile markets.
Crt indicator 2This indicator helps you trade crt with the knowledge of ict and key time and key levels
Estrategia: Cruce de EMAs con MACD Explicación
Entradas basadas en Cruce de EMAs y MACD:
Se utiliza ta.crossover(ema_fast_val, ema_slow_val) para detectar cuando la EMA rápida cruza al alza la EMA lenta. Además, se verifica que el histograma del MACD sea mayor que 0 para confirmar una tendencia alcista.
De manera similar, se utiliza ta.crossunder(ema_fast_val, ema_slow_val) y se comprueba que el histograma sea negativo para una señal bajista.
Salidas mediante pivotes:
Se define la resistencia (máximo en un lookback) y el soporte (mínimo en un lookback) para determinar las salidas, lo que simplifica la toma de ganancias o la salida de la posición.
Gestión de Riesgo:
Se calcula un nivel de stop loss y take profit basado en el ATR y se muestran mediante etiquetas en el gráfico.
EMA Crossover StrategyThis is an indicator using the 9 EMA and 21 EMA when they crossover there is a buy and sell signal
Even vs Odd Weeks Performance█ OVERVIEW
The Even vs Odd Weeks Performance indicator is designed to visualise and compare the performance of even-numbered weeks versus odd-numbered weeks. This indicator explores one of the many calendar based anomalies that exist in financial markets.
In the context of financial analysis, a calendar based anomaly refers to patterns or tendencies that are linked to specific time periods, such as days of the week, weeks of the month, or months of the year. This indicator helps explore whether such a calendar based anomaly exists between even and odd weeks.
By calculating cumulative weekly performance and counting the number of weeks with positive returns, it provides a clear snapshot of whether one set of weeks tends to outperform the other, potentially highlighting a calendar based anomaly if a significant difference is observed.
█ FEATURES
Customisable time window through input settings.
Tracks cumulative returns for even and odd weeks separately.
Easily adjust table settings like position and font size via input options.
Clear visual distinction between even and odd week performance using different colours.
Built-in error checks to ensure the indicator is applied to the correct timeframe.
█ HOW TO USE
Add the indicator to a chart with a Weekly timeframe.
Choose your start and end dates in the Time Settings.
Enable or disable the performance table in the Table Settings as needed.
View the cumulative performance, with even weeks in green and odd weeks in red.
Stratégie E.M.S (M1)Stratégie E.M.S (M15-M1) - L'arme ultime pour le XAU/USD 🔥
( A combiner avec : Stratégie E.M.S (M15) sinon ça ne fonctionne pas)
La Stratégie E.M.S (East - Money - Stratégie) est une méthode de trading avancée conçue pour capturer les retournements puissants sur le marché, en particulier sur le XAU/USD (Or). Elle combine le timeframe M15 et M1 pour une précision chirurgicale, permettant d'exploiter les meilleurs points d'entrée tout en minimisant les faux signaux.
📌 Pourquoi la Stratégie E.M.S est ultra-efficace ?
✅ Double Confirmation (M15 + M1) → On attend une structure claire en M15 avant d'entrer en M1, garantissant une meilleure validation du signal.
✅ Repérage des Retournements Puissants → Attente de deux bougies consécutives dans une direction, suivie d’une bougie de retournement pour confirmer le changement de tendance.
✅ Entrée sur Retracement Optimal → L’entrée ne se fait pas immédiatement, mais après la validation complète d’une bougie englobante ou semi-englobante. Cela permet de réduire les faux signaux et d’optimiser les points d’entrée.
✅ Stop Loss & Take Profit Stratégiques → SL placé 5 pips sous la mèche de la bougie de signal et TP en ratio 1:3 pour maximiser le rendement.
✅ Une efficacité redoutable sur le XAU/USD → Cette stratégie a montré des performances exceptionnelles sur l’Or grâce à sa volatilité et ses retracements bien définis.
🎯 Comment ça fonctionne en 3 étapes ?
1️⃣ Repérer une tendance avec deux bougies successives de la même couleur sur le timeframe M15.
2️⃣ Attendre une bougie de retournement M15 (rouge après deux vertes ou verte après deux rouges).
3️⃣ Passer en M1 et entrer sur une bougie englobante ou semi-englobante dans la bonne direction.
🎯 Un SELL se déclenche si la dernière bougie M15 était rouge et une bougie englobante baissière apparaît en M1.
🎯 Un BUY se déclenche si la dernière bougie M15 était verte et une bougie englobante haussière apparaît en M1.
📈 Résumé des avantages :
✅ Stratégie simple et adapté aux débutants.
✅ Identification rapide des retournements les plus puissants.
✅ Ratio risque/récompense optimal (SL court, TP large).
✅ Filtrage intelligent des faux signaux avec les bougies englobantes.
✅ Parfaitement adaptée au scalping agressif en M1.
🔥 La Stratégie E.M.S n’est pas une simple méthode… C’est une approche redoutable qui exploite la dynamique des marchés avec une précision absolue et sans analyse.
📌 Prêt à l’essayer sur le XAU/USD ? 🚀💰
Quad Super Signal Strategy (Long & Short)The Quad Super Signal Strategy is a dual-directional trading system that identifies overbought and oversold conditions using multiple stochastic indicators. It enters long trades when all 4 stochastics indicate an oversold condition (≤ 20) and short trades when they signal an overbought condition (≥ 80). The strategy takes partial profits at key levels (80% at Stochastic 80) and uses a trailing stop to protect remaining capital. Additionally, it incorporates trend analysis using EMA (20, 50, and 200) to assess market conditions and optimize exits.
Key Features:
✔ Uses multiple stochastic indicators (9-3, 40-4, 60-10, and extra) to identify trade entries.
✔ Long entries occur when all stochastics are below 20; short entries trigger when they are above 80.
✔ Exits 80% of the position at Stochastic 80 and moves stop-loss to breakeven for the rest.
✔ Trailing stop dynamically adjusts based on trend strength (uptrend = wider stop).
✔ Final exit happens if price drops below key EMAs in a downtrend or stochastics weaken.
This strategy effectively captures momentum shifts while managing risk with a structured exit plan
Even vs Odd Days Performance█ OVERVIEW
The Even vs Odd Days Performance indicator is designed to visualise and compare the performance of even-numbered days versus odd-numbered days. This indicator explores one of the many calendar based anomalies that exist in financial markets.
In the context of financial analysis, a calendar based anomaly refers to patterns or tendencies that are linked to specific time periods, such as days of the week, weeks of the month, or months of the year. This indicator helps explore whether such a calendar based anomaly exists between even and odd days.
By calculating cumulative daily performance and counting the number of days with positive returns, it provides a clear snapshot of whether one set of days tends to outperform the other, potentially highlighting a calendar based anomaly if a significant difference is observed.
█ FEATURES
Customisable time window through input settings.
Tracks cumulative returns for even and odd days separately.
Easily adjust table settings like position and font size via input options.
Clear visual distinction between even and odd day performance using different colours.
Built-in error checks to ensure the indicator is applied to the correct timeframe.
█ HOW TO USE
Add the indicator to a chart with a Daily timeframe.
Choose your start and end dates in the Time Settings.
Enable or disable the performance table in the Table Settings as needed.
View the cumulative performance, with even days in green and odd days in red.
SuperTrend ULTIMATE RamiIndicators & Setup:
EMA (Exponential Moving Averages): Use 9 EMA & 21 EMA for trend direction.
VWAP (Volume Weighted Average Price): For price positioning relative to market strength.
RSI (Relative Strength Index - 14 period): Use for overbought/oversold conditions (above 70 = sell, below 30 = buy).
MACD (Moving Average Convergence Divergence): For momentum confirmation.
UT Bot Alerts + Bollinger BandsCombination of UT Bot with BB for trend identifier and possible reversal
Buy/Sell/Reversal with Support/Resistance & TrendlineIf the price is above the moving average and a bullish engulfing pattern forms, a BUY signal will appear.
If the price is below the moving average and a bearish engulfing pattern forms, a SELL signal will appear.
Swing Highs and Lows will be marked as RES and SUP, respectively.
Trendlines will be drawn between significant highs or lows.
Milana Trades - SFP ( with Alert)Swing Failure Pattern (SFP) is a powerful trading tool that helps identify liquidity grabs around swing points and potential price reversals.
How I Use the Indicator
Timeframe Selection:
I primarily focus on higher timeframes (30M and above).
If you're trading within a session, you can use shorter timeframes like 5M or 15M.
Entry Point Identification:
After an SFP forms on a higher timeframe, I switch to a lower timeframe.
On the lower timeframe, I look for confirmation signals indicating a reversal, such as:
iFVG (Imbalance / Fair Value Gap)
MSS (Market Structure Shift)
Breaker Block
Take-Profit Placement:
The ideal target for taking profit is the opposite liquidity zone.
Telegram : milanatrades
Instagram : milana.muslimova_
kaspa rainbow fib level KASPAPERO COPYPlease visit the original open source author script : Kaspapero
"This indicator, called RainbowChart, displays the Fair Value and multiple colored bands based on Fibonacci levels.
Key Features:
Fair Value:
A central line that represents the fair value of the asset.
The Fair Value is calculated using a regression model with two parameters: ln(a) and b. These parameters can be adjusted to fine-tune the model according to your needs.
Colored Bands:
Eight colored bands calculated as multiples of the Fair Value.
Each band's visibility can be toggled on or off according to user preferences.
Additionally, four customizable bands are available (disabled by default), allowing users to modify their multiplicative factors and colors for enhanced personalization."