Trend TraderThe Trend Trader indicator is a trend-following tool based on a triple EMA (Exponential Moving Average) setup designed to help traders identify market direction and potential reversal zones. It plots three customizable EMAs on the chart to highlight bullish and bearish momentum, then generates trade signals when price shows a strong likelihood of continuing in the direction of the prevailing trend.
EMA Alignment: The indicator checks for bullish stacking (fast EMA above medium, medium above slow) and bearish stacking (fast EMA below medium, medium below slow). This alignment defines the prevailing market trend.
Trend Validation: A user-defined lookback period ensures signals are only taken if the market recently displayed a stacked trend, thus filtering false entries during consolidations.
Signal Generation: Buy signals appear when price dips into the zone between the fast and medium EMAs during a bullish trend. Sell signals appear when price rallies into the zone between the fast and medium EMAs during a bearish trend.
Alerts: Built-in alerts notify traders of new trade opportunities without having to constantly watch the chart.
This indicator is suitable for swing trading and intraday strategies across multiple markets, including forex, stocks, indices, and crypto.
Suggested Strategy for Profitability
This tool is best used as part of a structured trend-trading plan. Below is a suggested framework:
Entry Rules
Long (Buy Trade):
Confirm that EMA alignment is bullish (EMA1 > EMA2 > EMA3).
Wait for a Buy Signal (triangle up below price).
Ensure the higher timeframe (e.g., 4H if trading 1H) trend is also bullish to filter trades.
Short (Sell Trade):
Confirm EMA alignment is bearish (EMA1 < EMA2 < EMA3).
Wait for a Sell Signal (triangle down above price).
Higher timeframe should also be bearish to increase probability.
Stop Loss
For long positions, place the stop loss just below EMA3 or the most recent swing low.
For short positions, place the stop loss just above EMA3 or the most recent swing high.
Take Profit
Conservative: Set TP at 1.5x to 2x the stop loss distance.
Aggressive: Trail stop loss below EMA2 (for longs) or above EMA2 (for shorts) to capture larger trends.
Risk Management
Use no more than 1–2% of account risk per trade.
Trade only when the signal aligns with overall market context (higher timeframe, support/resistance, or volume confirmation).
This indicator is very similar to the indicator "Trend Scalper" by the same developer, the difference is this indicator is used to just find the trade and hold the trade or to find the reversal of a trend instead of triggering alerts every time price enters between EMA1 and EMA2.
Indicateurs et stratégies
Lakshman Rekha Level IndicatorThis script gives the upper and lower limit, calculated by adding and subtracting the daily range from the close point
EMA Crossover Strategy (15m)50 and 200 ema crossing when leaving anchor. when 50 and 200 crosses will give you direction of where market is going. wait for a pull back and take trade. sl on highest or lowest point of apex tp open . when you see multiple equal ( low or High) get put of trade.
Top 6 Stocks Oscillator with VWAPai made this oscillator. only used on 1 min. not sure how it works so use at your own risk
Smart Session Levels - Step 1 (NY Prep Lines)It shows three vertical lines at 6 PM 12 AM and 6 AM for preparation at New York session to determine Asian high and Asia low levels also London high and London low levels
ORB + Prev Close — [GlutenFreeCrypto]Draws a red line at the high of the first 5 min candle, draws a green line at the bottom of the first 5 min candle, draws a grey line at midpoint. Lines extend until market close (4pm) or after-hours 98pm) or extend the next day pre-market (until 9:30am). Closing blue dotted line is drawn at closing price, and extends in after-hours and pre-market.
Integrated Rally + Price % Change DashboardIntroducing the Integrated Rally & Price % Change Dashboard 📊
Track market momentum like never before! This custom TradingView dashboard combines Price % Change, OBV (On-Balance Volume) trend, and ADX strength in one clean, configurable table.
✅ Features:
Price % change with immediate alerts
OBV rising/falling with actual % change
ADX strength to spot rally strength
Rally status: Strong or Weakening
Configurable vertical/horizontal layout, font size, and position on the chart
Perfect for active traders who want visual clarity and actionable insights at a glance.
Horario de para accionesThis indicator automatically plots the previous day’s high and low (RTH session in New York time) and keeps those levels visible on the chart from the close of the New York session until the next close.
🔹 Works for both stocks (16:00 NY close) and futures (16:15 NY close), with an option to use custom session hours.
🔹 The levels remain displayed overnight and throughout the following trading day, updating at every new NY close.
🔹 Customizable colors, line width, and optional labels at the start of each line.
🔹 Helpful for traders who want to track key reference levels from the prior session during pre-market, overnight, and the next day’s RTH session.
Phân tích Đa Khung Thời gian
//@version=5
indicator("Phân tích Đa Khung Thời gian", shorttitle="Manual Analysis", overlay=true)
// ============== INPUTS CHO BẢNG PHÂN TÍCH XU HƯỚNG ==============
monthlyTrend = input.string("Bullish", title="Xu hướng Monthly", options= )
weeklyTrend = input.string("Bullish", title="Xu hướng Weekly", options= )
dailyTrend = input.string("Bullish", title="Xu hướng Daily", options= )
h4Trend = input.string("Bullish", title="Xu hướng H4", options= )
h1Trend = input.string("Bullish", title="Xu hướng H1", options= )
m30Trend = input.string("Bullish", title="Xu hướng M30", options= )
m15Trend = input.string("Bullish", title="Xu hướng M15", options= )
m5Trend = input.string("Bullish", title="Xu hướng M5", options= )
m1Trend = input.string("Bullish", title="Xu hướng M1", options= )
// Mảng chứa nhãn và xu hướng
labels = array.from("Mn", "W", "D", "H4", "H1", "M30", "M15", "M5", "M1")
trends = array.from(monthlyTrend, weeklyTrend, dailyTrend, h4Trend, h1Trend, m30Trend, m15Trend, m5Trend, m1Trend)
// ============== TẠO VÀ CẬP NHẬT BẢNG DUY NHẤT ==============
// Sắp xếp bảng nằm ngang
var table manual_analysis_table = table.new(position.top_right, array.size(labels), 2, bgcolor=color.new(color.black, 80), border_width=1)
if barstate.islast
// TIÊU ĐỀ HÀNG ĐẦU TIÊN (Nhãn khung thời gian)
for i = 0 to array.size(labels) - 1
table.cell(manual_analysis_table, i, 0, array.get(labels, i), text_color=color.white, bgcolor=color.new(color.blue, 50), text_size=size.small)
// ĐỔ DỮ LIỆU XU HƯỚNG VÀO HÀNG THỨ HAI
for i = 0 to array.size(trends) - 1
trendStatus = array.get(trends, i)
trendColor = trendStatus == "Bullish" ? color.green : color.red
trendSymbol = trendStatus == "Bullish" ? "▲" : "▼"
table.cell(manual_analysis_table, i, 1, trendSymbol, text_color=trendColor)
Range Stats DashboardShows Range from last 5 days and tracks todays range to.
Let me know of any ideas or anything.
Candle count, with simple numberWhat it does
Counts the length of same-color candle streaks (consecutive bullish or bearish bars) and prints the running number above each bar:
e.g., “1, 2, 3…”; when color flips, it restarts at “1”.
Prime numbers (2, 3, 5, 7, 11, 13) are emphasized by rendering one size step larger and with a user-selected color.
Labels are pinned to each bar (anchored by bar index and price), so they do not drift when you pan or zoom the chart.
How it works
Determines candle direction: bullish if close > open, bearish if close < open.
If the current bar has the same direction as the previous bar, the counter increments; otherwise it resets to 1.
For values 2, 3, 5, 7, 11, 13 the number is highlighted (bigger + custom color).
Each number is drawn just above the bar’s High with a configurable offset.
The script does not repaint on history. During the live bar, the number updates in real time (as expected).
Settings
Digits size — Base text size (Tiny / Small / Normal / Large / Huge).
Prime numbers are automatically shown one step larger than the base size.
Offset above bar (ticks) — Vertical offset from the bar’s High, in instrument ticks.
Prime numbers color — Text color used specifically for prime numbers (non-prime digits are white).
How to read & use it
Rising momentum. Long streaks (e.g., 5–7+) suggest strong directional moves with few pullbacks.
Early pause/mean-reversion hints. After a long streak, the appearance of the opposite color (counter resets to “1”) often coincides with a pause or minor retrace.
Research & statistics. Quickly see which streak lengths are common on your market/timeframe (e.g., “How often do 3–5 bar runs occur?”).
Trade management. You can tie partial exits to specific streak lengths (2, 3, 5…) or reduce risk when the counter flips back to “1”.
Why it’s useful
Provides a clean, numeric view of momentum with zero smoothing or lag.
Works on any symbol and timeframe.
Prime-number emphasis makes important counts pop at a glance.
Pinned labels stay exactly above their bars, ensuring stable, readable visuals at any zoom level.
Notes
Doji bars (close == open) are treated as no direction and reset the streak.
This is a context tool, not a standalone buy/sell signal. Combine it with your entry/exit framework.
Very dense charts may hit platform label limits; the script raises the limit, but extremely long histories on very low timeframes can still be heavy.
Trend Takip Merdiven Ortalama StratejisiYou can adjust your trend-following strategy take profit and stop loss settings as you wish.
Bull/Bear Ownership — MTF Alignment (v6)Bull/Bear Ownership — MTF Alignment (v6)
Scores who “owns” the market (bulls vs bears) across multiple timeframes and rolls it into a single 0–100 alignment score (50 = neutral). Uses bullish-bar share, body dominance, and regression slope (ATR-normalized). Includes faint MTF trend lines, bar paints, mini table, badge, and 4 alert conditions.
Full description
What it does
This tool measures bull/bear ownership on up to 7 selectable timeframes and combines them into one easy alignment meter.
For each TF it computes:
Share of bullish bars over a lookback (0–1).
Body dominance (−1…+1) = avg(bull bodies) − avg(bear bodies) scaled by total bodies.
Trend slope (−1…+1) = linear regression slope normalized by ATR (dimensionless strength).
These pieces are blended into a per-TF score (−10…+10), weighted by your TF weights, and normalized to a composite 0…100:
Higher = stronger multi-TF bull ownership
Lower = stronger multi-TF bear ownership
50 = neutral / mixed
Visuals
Optional faint regression “trend lines” per TF (green/red by direction).
Bar paints on GO / NO-GO thresholds (default 70 / 30).
Floating badge with the live % and stack state.
Mini table showing each TF’s score % and notes (majority bull/bear, body Δ%, slope×ATR).
Inputs
Timeframes: 7 slots, each with enable + weight (1–5).
Ownership calc: Lookback (bars), slope length, ATR length, blend weights (body vs slope).
Display: trend lines toggle, opacity, bar paints, badge, table, table corner.
Thresholds: GO (bullish) / NO-GO (bearish).
Alerts
GO ✅ (composite ≥ threshold)
NO-GO 🛑 (composite ≤ threshold)
ALL TFs UP ✔ (every enabled TF bullish)
ALL TFs DOWN ✖ (every enabled TF bearish)
Tips
Use a ladder like 60/120/180/240/D (1h/2h/3h/4h/1D).
Give higher TFs more weight for trend trading; raise body dominance weight for “who’s in control,” or slope weight for momentum.
Set ownLen = 1 if you want “who owned the last bar” per TF.
Tune GO/NO-GO for your asset & timeframe; 70/30 is a solid start.
Notes
This is an analysis tool, not financial advice. Backtest and combine with your risk management. uwu 💜
Franja de pre-mercadoThis indicator highlights the entire period from the end of the regular New York trading session through the overnight and pre-market, until the market reopens the next morning.
By default, the highlighted band starts at 16:30 New York time (15 minutes after the official close at 16:15) and continues without interruption through the night until 09:30 New York time, when the regular session begins.
🔹 Works for both futures and stocks (you can adjust the closing time if needed: 16:15 for futures, 16:00 for equities).
🔹 Option to include or exclude weekends.
🔹 Optional highlight for the last hour of RTH (e.g. 15:15–16:15 NY).
🔹 Fully customizable colors and offsets.
This tool helps traders clearly separate the overnight activity and pre-market moves from the main session, making it easier to analyze price action and market structure.
Tight 5-10 SMA Wedge ScannerIndicator for helping filter out high growth momentum names to look for stocks that are consolidating near the 5 & 10 SMA. Do a general scan first using trading view scanner 1,3,6 month performance > 30%, Price > 20,50,200 SMA, ADR > 3%, Price * Vol > 5M. Copy this into a watchlist and head over to tradingview website and access Pine screener under Products -> Screeners -> Pine. Select your watchlist with your stocks and add this indicator after favoriting it, select SMA Spread % set to below value 3 or whatever number you want, select Price Diff % set to below value 5 or whatever number you want. Now you listed should be significantly reduced to names that are close to breaking out and flagging.
Supertrend Alignment Score — MTF Stack (v6)Supertrend Alignment Score — MTF Stack (v6)
Aggregates up to 7 Supertrends across custom timeframes, weights them, and converts the stack into a single 0–100 alignment score (50 = neutral). Includes faint MTF ST lines, GO/NO-GO bar paints, a per-TF mini table, a live score badge, and “All TFs Up/Down” stamps. Four alert conditions included.
How it works
Pulls Supertrend from up to 7 selectable TFs (e.g., 5/15/30/60/120/240/D).
For each TF it computes:
dir = ST direction (+1 bull, −1 bear)
prox = (close − ST) / ATR (distance in ATRs)
Per-TF score = dir * (0.7 + 0.3 * clamp01(dir*prox)) * 10 → −10…+10
Scores are weighted by your TF weights (1–5), summed, then normalized to 0…100.
All TFs Up/Down triggers when every enabled TF agrees.
Visuals
Optional faint ST lines per TF (color-coded by direction).
Bar paints on GO/NO-GO thresholds (defaults: GO ≥ 70, NO-GO ≤ 30).
Badge showing live composite % and stack state.
Mini table listing each TF’s score % and note (↑/↓ plus ATR proximity).
Inputs
Supertrend: Factor & ATR Length
7 TF slots with enable toggles & weights
Display toggles: bar paints, badge, table, ST lines, line opacity
GO / NO-GO thresholds (editable)
Alerts
GO (score ≥ threshold)
NO-GO (score ≤ threshold)
ALL TFs UP
ALL TFs DOWN
(Also posts a bar-close alert message with the current %.)
Tips
Use a logical TF ladder (e.g., 5m/15m/30m/1h/2h/4h/1D).
Give higher TFs more weight if you’re trend-following.
Tune GO/NO-GO to your market & timeframe; 70/30 is a solid starting point.
Consider confluence with volume/structure before entries.
Notes
This is an analysis tool, not financial advice. Backtest & validate before live use.
Requires real-time data on higher TFs for timely MTF updates.
BarCounterTrack up to 3 horizontal lines and see how many bars each level has hit 📈. Color-code lines 🎨 and monitor bar counts in a floating table. Perfect for spotting key price levels and their historical frequency!
ASILTURK GrandASILTURK GRAND: The Ultimate Weekly Trend Master
Strategy Overview
ASILTURK GRAND is our flagship trend-following strategy, meticulously designed to bypass the noise of daily market fluctuations and capture the most substantial, reliable movements driven by macro trends.
By basing all trading decisions exclusively on Weekly (W) timeframe data, the bot filters out small-timeframe volatility, resulting in unparalleled risk control and exceptional, verifiable profitability.
🔥 Why ASILTURK GRAND is the Market Leader
The true value of the GRAND strategy lies not just in its high returns, but in the extraordinary low risk required to achieve them.
Market-Leading Risk/Reward Profile: This is the strategy's most powerful selling point. In BTC/USDT testing, it achieved an incredible +57.85% Net Profit while maintaining a Maximum Drawdown of only 9.64%. This risk-to-reward balance is virtually unmatched in the market.
Exceptional Profit Factor (4.26): A Profit Factor above 4.0 is extremely rare and signifies a superior strategy. It proves that the bot's gross gains are over four times its gross losses, ensuring long-term, sustainable profitability.
Strict Trend Validation (ADX Filter): The bot will only enter a trade when the Weekly ADX is confirmed above 24. This critical filter ensures you are only trading during periods of strong, committed market momentum, protecting capital during choppy consolidation phases.
Aggressive Target Capture: It utilizes a disciplined 12% SL to navigate expected volatility and an aggressive 50% TP to ensure the majority of the major trend move is captured.
Net Profit +57.85% Highest Achieved Profitability for our trend models.
Max Drawdown 9.64% Outstanding Risk Control. This low figure is a testament to the strategy's stability.
Profit Factor 4.26 Unrivaled Reliability. The strongest indicator of long-term sustainability.
ASILTURK GRAND offers a rare combination of high returns and market-leading risk management. It is the perfect tool for traders who demand performance with peace of mind.
Asilturk Swift ASILTURK is a high-performance trend-following bot engineered to eliminate market noise and focus exclusively on high-conviction movements driven by institutional capital.
Unlike bots that get lost in low-timeframe fluctuations, ASILTURK uses the Weekly (W) timeframe as its primary filter, ensuring every trade decision is based on macro, reliable data. The result is superior risk management and exceptional profitability.
🔥 Key Competitive Advantages
ASILTURK stands out because it doesn't just look for a trend—it verifies the Strength and Legitimacy of that trend before entering a trade:
Weekly Trend Strength (ADX Filter): The bot strictly requires the Weekly ADX to be above 24. This ensures we only engage when the market has established a powerful, confirmed trend, effectively eliminating trading during choppy, sideways markets.
Weekly Directional Confirmation (HA & WT_LB): Signals are generated only when the Heikin Ashi and WT_LB indicators align on the Weekly timeframe, providing dual confirmation that the momentum and direction are unified.
Exceptional Risk/Reward Ratio: The strategy is designed to tolerate small, necessary volatility (SL: 12%) to capture massive trend moves (TP: 50%). This setup is the secret behind its high Profit Factor.
Conclusion: Own Your Trading Discipline
ASILTURK is not just a trading bot; it’s a tool that imposes weekly discipline on the chaos of the market. It’s ideal for traders who want to capture significant trend movements with confidence and highly controlled risk.