Swingteller//@version=5
indicator("Swingteller", shorttitle="Swingteller", overlay=true)
var int count = 0
var int swingCounter = 0
swingCounter := na(swingCounter ) ? 0 : swingCounter
if (close > close )
count := nz(count) + 1
else if (close < close )
count := nz(count) - 1
else
count := 0
swingCounter := count > 9 ? 0 : count < -9 ? 0 : swingCounter
plot(swingCounter, style=plot.style_line, color=color.green, linewidth=2)
دورات
Daily COC Strategy with SHERLOCK WAVESThis indicator implements a unique trading strategy known as the "Daily COC (Candle Over Candle) Strategy" enhanced with "SHERLOCK WAVES" for pattern recognition. It's designed for traders looking to capitalize on specific candlestick formations with a negative risk-reward ratio, with the aim of achieving a high win rate (over 70%) through numerous trading opportunities, despite each trade having a higher risk relative to the reward.
Key Features:
Pattern Recognition: Identifies a setup based on three consecutive candles - a red candle followed by a shooting star, then an entry candle that does not break below the shooting star's low.
Negative Risk/Reward Trade Selection: Focuses on entries where the potential stop loss is greater than the take profit, banking on a high win rate to offset the individual trade's negative risk-reward ratio.
Visual Signals:
Green Label: Marks potential entry points at the high of the candle before the entry.
Green Dot: Indicates a winning trade closure.
Red Dot: Signals a losing trade closure.
Blue Circle: Warns when the current candle is within 2% of breaking above the previous candle's high, suggesting a potential setup is developing.
Green Circle: Plots the take profit level.
Red Circle: Plots the stop loss level.
Dynamic Statistics: A live updating label showing the number of trades, wins, losses, open trades, current account balance, and win percentage.
Customizable Parameters:
Risk % per Trade: Adjust the percentage of your account balance you're willing to risk on each trade.
Initial Account Balance: Set your starting balance for tracking performance.
Start Date for Strategy: Define when the strategy should start calculating from, allowing for backtesting.
Alerts:
An alert condition is set for when a potential trade setup is developing, helping traders prepare for entries.
Usage Tips:
This strategy is predicated on the idea that a high win rate can compensate for the negative risk-reward ratio of individual trades. It might not suit all market conditions or traders' risk profiles.
Use this strategy in conjunction with other analysis methods to validate trade setups.
Note: Always backtest thoroughly before applying to live markets. Consider this tool as part of a broader trading strategy, not a standalone solution. Monitor your win rate and adjust your risk management accordingly to ensure the strategy remains profitable over time.
This description now correctly explains the purpose behind the negative risk-reward ratio in the context of your trading strategy.
Market Structure Breakout//@version=5
strategy("Market Structure Breakout", overlay=true)
// تعیین سقف و کف روز جاری
highDay = ta.highest(high, 288)
lowDay = ta.lowest(low, 288)
// رسم سقف و کف روز
plot(highDay, color=color.red, title="High of Day", linewidth=2)
plot(lowDay, color=color.blue, title="Low of Day", linewidth=2)
// شناسایی اُردربلاک (ناحیههای چرخش بازار)
orderBlockHigh = ta.highest(high, 20) // سقف اُردربلاک
orderBlockLow = ta.lowest(low, 20) // کف اُردربلاک
// نمایش اُردربلاک روی چارت (بهعنوان ناحیه)
bgcolor(orderBlockHigh > orderBlockLow ? color.new(color.green, 80) : na)
// بررسی شکست سقف یا کف روز
breakHigh = ta.crossover(close, highDay)
breakLow = ta.crossunder(close, lowDay)
// تایمر ۵ ثانیهای برای تایید شکست
var float breakTime = na
if breakHigh or breakLow
breakTime := timenow
confirmBreak = (timenow - breakTime) >= 5000 // تایید شکست بعد از ۵ ثانیه
// شناسایی شکست خط روند
trendLine = ta.sma(close, 10)
breakTrendUp = ta.crossover(close, trendLine)
breakTrendDown = ta.crossunder(close, trendLine)
// ورود به معامله در جهت شکست
longCondition = breakHigh and confirmBreak and breakTrendUp
shortCondition = breakLow and confirmBreak and breakTrendDown
// شناسایی شکست فیک (Fake Breakout)
fakeBreakHigh = ta.crossunder(close, highDay) and not confirmBreak
fakeBreakLow = ta.crossover(close, lowDay) and not confirmBreak
// ورود به معامله در خلاف جهت فیک بریکاوت
reverseLong = fakeBreakLow and breakTrendUp
reverseShort = fakeBreakHigh and breakTrendDown
// استاپلاس و تارگت
stopLossLong = low - ta.atr(5) // استاپ پشت کندل شکست
stopLossShort = high + ta.atr(5)
takeProfitLong = close + 2 * ta.atr(5) // نسبت سود به ضرر ۲:۱
takeProfitShort = close - 2 * ta.atr(5)
// اجرای معاملات
strategy.entry("Long", strategy.long, when=longCondition)
strategy.exit("Exit Long", from_entry="Long", stop=stopLossLong, limit=takeProfitLong)
strategy.entry("Short", strategy.short, when=shortCondition)
strategy.exit("Exit Short", from_entry="Short", stop=stopLossShort, limit=takeProfitShort)
// اجرای فیک بریکاوتها
strategy.entry("RevLong", strategy.long, when=reverseLong)
strategy.exit("Exit RevLong", from_entry="RevLong", stop=stopLossLong, limit=takeProfitLong)
strategy.entry("RevShort", strategy.short, when=reverseShort)
strategy.exit("Exit RevShort", from_entry="RevShort", stop=stopLossShort, limit=takeProfitShort)
DMI Crosses with OBV and MACD ConfirmationDMI crosses as start then obv divergence and MACD crosses as confirmation,
don't use as primary trading strategy
feedback welcome!
Autotrade.it DCAAutoTrade.it DCA Strategy Setup Guide
Overview:
The AutoTrade.it DCA Strategy is designed to automate your trading using the powerful Dollar-Cost Averaging (DCA) method. It increases your position size every time the asset price decreases, helping you average down your entry price over time. This strategy is perfect for traders looking to capitalize on market dips, minimize risks, and maximize potential returns.
[ b]Recommended Timeframe
15-Minute (15m) Timeframe
Ideal for capturing short-term market movements while reducing noise.
Provides sufficient data to identify price trends and adjust positions.
Helps balance risk management and responsiveness to price fluctuations without over-trading.
Step-by-Step Tutorial
Step 1: Create an Account
Sign up at autotrade.it.com
Step 2: Connect Your TradingView Account
Use an alternative email to connect your TradingView account to AutoTrade.it.
Note: This is free and doesn't require a TradingView Pro subscription.
Step 3: Connect Your Desired Exchange
Link your exchange to autotrade.it using API keys for seamless trade execution.
Step 4: Copy the Alert Name
Copy the alert name provided by AutoTrade.it. This will be used to trigger your strategy.
Step 5: Add the Alert on the Indicator
Go to the indicator on TradingView and add an alert.
Choose " Alert Function calls only " as the type of alert.
Step 6: Paste the Alert Name
Paste the copied alert name into the alert name field.
Click "Create" to finalize the alert setup.
Step 7: Set Up Notifications
Make sure to enable "Send Plain Text" in the notification settings to ensure the alert is properly executed.
Double-check all settings to make sure everything is in place.
Final Step: Sit and relax
Once you've completed the steps above, your trades will be automated. The AutoTrade.it DCA strategy will begin executing trades based on the alerts you’ve set up.
Unix Time (Seconds)This is a simple indicator that places the current UNIX time down to the seconds for the current candle on your chart. It updates with every new candle.
Table can be customized to fit chart layout.
Silver Bullet ICT Strategy [TradingFinder] 10-11 AM NY Time +FVGthis is a stratergy which is based on nasdaq 100 on peak hours in which you can gain insightas on ict silver bullet stratergy.
Accumulation Phase & Breakout ScannerBlue Background = Accumulation Phase (Stock consolidating, preparing for a move)
Green Background = Breakout Confirmed (Stock breaking resistance with volume surge)
AyebaleJohnBob-Trading-BotAyebale John Bob - Trading-Bot Overview:
This trading strategy is designed to automate trades based on the "Smart Money Concepts" and "Fair Value Gaps" (FVG). The bot leverages multiple technical indicators and logic to execute buy and sell trades with dynamic stop-loss and take-profit (TP) levels.
Key Features:
User Inputs:
Bull & Bear Colors: Customizable colors for bullish and bearish trends.
Fair Value Gap (FVG) Color: Customizable color for visualizing FVG zones.
ATR Multiplier: Defines the sensitivity of stop-loss calculations based on Average True Range (ATR).
Take-Profit Multipliers: A set of five multipliers that scale take-profit levels dynamically.
Trade Signals:
Buy Signal: Generated when the price crosses above a certain low or when a bullish Fair Value Gap (FVG) is detected.
Sell Signal: Triggered when the price crosses below a high or when a bearish FVG is identified.
Stop-Loss & Take-Profit Logic:
Stop-loss levels are calculated using ATR and the specified multiplier.
Take-profit levels are dynamically determined based on the ATR multipliers, with five different levels for each trade.
Trade Execution:
The strategy allows for five simultaneous buy or sell entries, with each having its own take-profit and stop-loss levels.
The bot operates continuously, without any session restrictions, allowing trades at any time.
Visual Indicators:
Entry Signals: Visual shapes (green for buy and red for sell) appear on the chart to indicate entry points.
Progress Bar: A real-time progress bar is plotted, tracking the percentage gain/loss from the entry price.
Trade Information Table:
A dynamic table is used to display important trade information, including entry price, take-profit levels, and stop-loss. This table updates for each new trade (buy or sell), and shows real-time trade progress.
Risk Management:
The stop-loss is dynamically adjusted based on the ATR calculation, ensuring that the bot adapts to changing market volatility.
Take-profit levels are spread across five increments, offering multiple opportunities for profit capture.
Summary:
The Ayebale John Bob - Trading-Bot is designed to implement a sophisticated strategy that combines smart money concepts, fair value gap analysis, and robust risk management. It provides real-time trade information, progress tracking, and a flexible approach to stop-loss and take-profit strategies. The bot is ideal for traders looking to automate trades and visually track their progress directly on the chart.
RJ Best Strategy - CCI VWEMA RSI Buy SignalRJ Best Strategy - CCI VWEMA RSI Buy Signal, This is a very useful one, just see the lines cross over of 5min, 15mins and 1hour CCI time frames and take the trade
Refined Trend and Consolidation with MACD, RSI, OBV, and VolumeWe are implementing a trend analysis system using multiple technical indicators to determine the market state. We calculate two Simple Moving Averages (SMA 9 and SMA 21), the Relative Strength Index (RSI), the On-Balance Volume (OBV), and the MACD. Based on these indicators, we classify the market into three states: uptrend, downtrend, or consolidation. The script then changes the background color of the chart to visually represent the current market state: green for uptrend, red for downtrend, and yellow for consolidation. The transparency of the background is adjusted for a clear view of the price action.
The uptrend is identified when the short-term SMA (SMA 9) is above the long-term SMA (SMA 21), RSI is above 55 (indicating strong bullish momentum), OBV is rising, MACD line is above the signal line and zero, and volume is higher than the average.
The downtrend is recognized when the short-term SMA is below the long-term SMA, RSI is below 45 (indicating bearish momentum), OBV is falling, MACD line is below the signal line and zero, and volume exceeds the average.
Consolidation occurs when none of the uptrend or downtrend conditions are met, indicating range-bound movement. This is signified by the SMAs being close to each other, RSI near 50, OBV flat, MACD oscillating around zero, and volume either below average or neutral.
This provides a clear, visual representation of the market's current state by dynamically changing the chart's background color. The uptrend is shown with a green background, indicating a strong bullish market, while the downtrend is represented with a red background, signaling a bearish market. A yellow background marks consolidation, suggesting a period of sideways or range-bound movement with no clear direction. By using a combination of SMAs, RSI, OBV, MACD, and volume, the script helps traders quickly identify the prevailing market conditions, allowing them to make more informed decisions based on current trends and potential consolidations.
V's GoldA Basic buy sell indicator for Gold.
Works on moving averages, works well when Gold is in trend, retraces and indicates re entry.
Leo's prefered manipulation times9:45 - 10 am purple vertical channel skibidi skibidiskibidiskibidiskibidiskibidiskibidiskibidiskibidiskibidiskibidiskibidiskibidiskibidiskibidiskibidiskibidiskibidi
European/US Opening RangeCaractéristiques principales :
Détection précise des plages horaires en UTC
Calcul dynamique des plus hauts/bas pendant les 15 minutes d'ouverture
Trace des lignes horizontales persistantes
Gestion mémoire optimisée avec suppression des anciennes lignes
Adapté à tous les instruments et timeframes
Les lignes bleues représentent le range européen (09:00-09:15 UTC) et les rouges le range américain (14:30-14:45 UTC). Les niveaux se mettent à jour chaque jour et restent visibles jusqu'à la session suivante.
Stunden/Halbstunden-WarnungTradingview does not enable time-based alarms. However, the indicator can be used to remind you five minutes before a new hour and five minutes before a new half hour that a new hour or half hour is about to begin. Simply activate the warning in the indicator and then create an alarm for the indicator.
MarketSentinelMarketSentinel is a powerful, well-rounded trading indicator designed for both novice and professional traders who want to gain an edge in the market. Inspired by the strategies employed by institutional traders, MarketSentinel combines multiple critical technical analysis tools into a single, intuitive system, helping you make informed and timely decisions in any market condition.
What Does MarketSentinel Do?
MarketSentinel is a trend-following and sentiment-tracking indicator that integrates:
Exponential Moving Averages (EMAs): These EMAs track both short-term (Fast EMA) and long-term (Slow EMA) trends, helping you understand the immediate price action and the broader market direction. The crossover of these EMAs signals potential reversals in trend, providing clear entry and exit points for trades.
Volume-Weighted Average Price (VWAP): VWAP is a highly regarded tool among institutional traders, as it helps identify average price levels weighted by trading volume. When the price is above VWAP, it suggests a bullish market, while below VWAP signals bearishness. MarketSentinel uses VWAP to confirm trend strength and validate price direction.
Relative Strength Index (RSI) (Optional): As an additional layer of confirmation, MarketSentinel incorporates the RSI, a popular momentum indicator that shows whether an asset is overbought or oversold. This helps to spot potential reversal points, so you can avoid buying into a market that's overheated or selling into a market that's bottomed out.
How to Use MarketSentinel:
Buy Signal:
Fast EMA crosses above Slow EMA, suggesting a bullish trend.
Price is above the Slow EMA and VWAP, reinforcing the bullish sentiment.
If the RSI is below 30, the market may be oversold and poised for a reversal to the upside.
Sell Signal:
Fast EMA crosses below Slow EMA, indicating a bearish trend.
Price is below the Slow EMA and VWAP, confirming the bearish market condition.
If the RSI is above 70, the market is overbought and could be ready for a downward correction.
Why MarketSentinel Works:
Comprehensive Trend Analysis: By using both fast and slow EMAs, MarketSentinel provides you with a full picture of both immediate and longer-term market conditions. You can quickly detect short-term trends and align them with the broader market sentiment to make smarter trades.
Volume-Weighted Insight: Unlike many traditional price-based indicators, the VWAP considers volume, giving you a better sense of where institutional traders are positioning themselves. This makes MarketSentinel a powerful tool for detecting bullish or bearish pressure in the market, allowing you to trade with the institutional flow.
Momentum Confirmation: The inclusion of the RSI further refines the decision-making process by offering you a momentum snapshot. It helps you avoid entering trades that are too extended or losing out on trades that are about to reverse.
Clear Entry and Exit Signals: With MarketSentinel, you get clear signals to enter long or short positions based on trend reversals, price action, and market sentiment. This helps eliminate guesswork and provides a more structured approach to your trading.
Flexibility and Precision: Whether you are trading forex, stocks, or crypto, MarketSentinel adapts to all asset classes. It offers a precision-driven approach, cutting through noise and helping you focus on what truly matters—profitable trade setups.
In Conclusion:
MarketSentinel brings together the best of trend-following, volume analysis, and momentum-based strategies into one easy-to-use indicator. It is designed to give you the clarity, precision, and insight you need to make more informed trading decisions, just like the professionals.
By combining dynamic trend tracking, volume-weighted pricing, and momentum insights, MarketSentinel provides a comprehensive market view that lets you align with market sentiment, identify trend changes, and make timely entries and exits.
MarketSentinel is the perfect tool for traders who want to stay ahead of the curve and trade with confidence.
Fshariar_Enhanced Quasimodo Pattern**Enhanced Quasimodo Pattern Indicator**
The **Enhanced Quasimodo Pattern Indicator** is a powerful technical analysis tool designed for **TradingView** users. This script identifies the **Quasimodo pattern**, a key reversal formation used by professional traders to anticipate market turning points with high accuracy.
### **Features:**
✅ **Quasimodo Pattern Detection**: Automatically spots **bullish and bearish Quasimodo setups** on the chart.
✅ **Multi-Confirmation Signals**: Incorporates **RSI divergence, volume spikes, and trend filters** to enhance reliability.
✅ **Fibonacci-Based Entry & Exit**: Uses **61.8% and 78.6% Fibonacci retracement levels** for optimal trade entries.
✅ **Dynamic Take Profit & Stop Loss Levels**: Plots **161.8% Fibonacci extensions** as TP targets and SL based on the X-point.
✅ **Multi-Timeframe Trend Analysis**: Uses **EMA 50 & EMA 200** to filter trades in line with the prevailing trend.
✅ **Real-Time Alerts**: Get notified instantly when a **buy or sell signal** is detected.
### **How It Works:**
- **Bearish Quasimodo (Sell Signal)**: Triggered when a higher high is followed by a lower low, indicating a reversal.
- **Bullish Quasimodo (Buy Signal)**: Triggered when a lower low is followed by a higher high, signaling a potential uptrend.
- **Confirmation Criteria**: RSI divergence, volume spikes, and EMA-based trend analysis help filter out false signals.
### **Who Can Benefit?**
- **Day Traders & Swing Traders** looking for high-probability reversal setups.
- **Price Action Traders** who rely on **support & resistance** structures.
- **Fibonacci Traders** seeking **retracement & extension-based entries.**
This indicator is fully customizable, allowing traders to adjust **swing length, RSI settings, and Fibonacci levels** to match their trading strategy. 🚀
📌 **Try it on your TradingView chart today and enhance your technical analysis!**
Developed by **FShariar**
Overnight vs Intra-day Performance█ STRATEGY OVERVIEW
The "Overnight vs Intra-day Performance" indicator quantifies price behaviour differences between trading hours and overnight periods. It calculates cumulative returns, compound growth rates, and visualizes performance components across user-defined time windows. Designed for analytical use, it helps identify whether returns are primarily generated during market hours or overnight sessions.
█ USAGE
Use this indicator on Stocks and ETFs to visualise and compare intra-day vs overnight performance
█ KEY FEATURES
Return Segmentation : Separates total returns into overnight (close-to-open) and intraday (open-to-close) components
Growth Tracking : Shows simple cumulative returns and compound annual growth rates (CAGR)
█ VISUALIZATION SYSTEM
1. Time-Series
Overnight Returns (Red)
Intraday Returns (Blue)
Total Returns (White)
2. Summary Table
Displays CAGR
3. Price Chart Labels
Floating annotations showing absolute returns and CAGR
Color-coded to match plot series
█ PURPOSE
Quantify market behaviour disparities between active trading sessions and overnight positioning
Provide institutional-grade attribution analysis for returns generation
Enable tactical adjustment of trading schedules based on historical performance patterns
Serve as foundational research for session-specific trading strategies
█ IDEAL USERS
1. Portfolio Managers
Analyse overnight risk exposure across holdings
Optimize execution timing based on return distributions
2. Quantitative Researchers
Study market microstructure through time-segmented returns
Develop alpha models leveraging session-specific anomalies
3. Market Microstructure Analysts
Identify liquidity patterns in overnight vs daytime sessions
Research ETF premium/discount mechanics
4. Day Traders
Align trading hours with highest probability return windows
Avoid overnight gaps through informed position sizing
Highlight Candles - France Winter HoursCet indicateur met en évidence (colorie) automatiquement les bougies correspondant à cinq créneaux horaires précis : 8h, 9h, 14h, 14h30 et 15h30, selon l’heure d’hiver en France (Europe/Paris). Il fonctionne sur toute unité de temps (M1, M5, H1, etc.) et met en surbrillance les bougies sélectionnées en jaune.
Triple Sync StrategyThe Triple Sync Strategy is a comprehensive technical analysis tool designed to combine three powerful indicators: the ADX (Average Directional Index), Stochastic RSI, and CCI (Commodity Channel Index). By synthesizing these indicators into a single line, referred to as the Snake Line, this strategy identifies strong market trends and potential reversal points with high accuracy.
Key Features:
ADX helps measure the strength of a trend, ensuring that trades are executed in trending conditions.
Stochastic RSI smoothens the RSI values to detect overbought and oversold conditions, offering entry and exit signals.
CCI highlights price deviation from the average, providing insights into potential trend changes.
Dynamic Levels automatically adjust to market conditions, with overbought and oversold levels plotted as entry and exit zones.
Entry Signals: The strategy generates buy (long) and sell (short) signals when the Snake Line crosses the defined upper or lower levels.
Performance Optimization: Designed to filter noise and focus on high-probability trade opportunities by combining multiple indicators for a holistic view of the market.
This strategy is ideal for traders looking to identify trend reversals, capitalize on strong market moves, and avoid choppy or sideways price action. With dynamic levels and multiple confirmation points, the Triple Sync Strategy aims to improve trade accuracy and enhance overall trading performance.
200MA x3 Investor Tool with Undervaluation LineThis is the 200 day moving average with a 3x take profit line and a 2x undervalued line. Great for pretty much all volitile assets.
ADF Mod (EMA + Hline Crossover)This script is designed to make analysing trending vs ranging market conditions easier.
Users can modify Hline value inputs.