Trend Break + Fibonacci + RSI Filter//@version=5
indicator("Trend Break + Fibonacci + RSI Filter", overlay=true)
// === INPUTS ===
lookback = input.int(100, title="Lookback период для минимума/максимума")
rsiLen = input.int(14, title="RSI Length")
rsiShortLevel = input.int(55, title="RSI Min для Шорта (на ретесте)")
rsiLongLevel = input.int(45, title="RSI Max для Лонга (на ретесте)")
// === PRICE EXTREMES ===
var float hi = na
var float lo = na
hi := ta.highest(close, lookback)
lo := ta.lowest(close, lookback)
// === FIB LEVELS ===
fib0 = hi
fib1 = lo
fib0382 = fib1 + (fib0 - fib1) * 0.382
fib05 = fib1 + (fib0 - fib1) * 0.5
fib0618 = fib1 + (fib0 - fib1) * 0.618
// === RSI ===
rsi = ta.rsi(close, rsiLen)
// === EMA TREND (вместо трендовой линии как пример) ===
fastEMA = ta.ema(close, 8)
slowEMA = ta.ema(close, 21)
// === CONDITIONS ===
// Пробой EMA-линии (как замена отбойной трендовой)
breakDown = ta.crossunder(fastEMA, slowEMA)
breakUp = ta.crossover(fastEMA, slowEMA)
// Ретест фибо зоны (внутри 0.382–0.5)
inFibZoneShort = close < fib0382 and close > fib05
inFibZoneLong = close > fib0382 and close < fib05
// RSI фильтр
validRSI_short = rsi > rsiShortLevel
validRSI_long = rsi < rsiLongLevel
// === TRADING SIGNALS ===
shortSignal = breakDown and inFibZoneShort and validRSI_short
longSignal = breakUp and inFibZoneLong and validRSI_long
// === PLOTS ===
plotshape(shortSignal, location=location.abovebar, color=color.red, style=shape.labeldown, text="SHORT")
plotshape(longSignal, location=location.belowbar, color=color.green, style=shape.labelup, text="LONG")
plot(fib0, title="Fibo 0", color=color.gray)
plot(fib0382, title="Fibo 0.382", color=color.orange)
plot(fib05, title="Fibo 0.5", color=color.orange)
plot(fib0618, title="Fibo 0.618", color=color.orange)
plot(fib1, title="Fibo 1", color=color.gray)
// === ALERTS ===
alertcondition(shortSignal, title="Short Signal", message="💥 SHORT сигнал!")
alertcondition(longSignal, title="Long Signal", message="🚀 LONG сигнал!")
Indicators and strategies
Cloud Chart w/ Previous RangeThis indicator is used to visualize three different timeframes at once. The current timeframe your chart is set to, a larger timeframe outline (cloud) updated in real-time on top of the timeframe your chart is set to, and a larger previous timeframe period that has already completed. Plus, it shows the larger timeframe outline of the current period as its forming in the period ahead. This is especially helpful to see where price is currently at when the next period opens (the flip).
The two timeframes which this indicator provides are called Bull/Bear Clouds for the real-time overlay, and Previous Range Cloud. You can select the timeframe you want and change color of each Cloud including the outline and the midline (50% level).
EMA + MA + Daily Pivot Levels + Supertrend
🔹 20 EMA – A fast-moving average to track short-term trend
🔹 100 & 200 SMA – Long-term trend indicators
🔹 Daily Pivot Levels – PDH, PDL, Pivot Point, R1, S1
🔹 Supertrend (10, 2) – Trend-following signal with color-coded direction
Custom NYSE Hourly Intervals (Gris Extra Claro/T)NYSE Custom Hourly Intervals (Background Shading)
Indicator Overview:
This TradingView indicator visually highlights specific hourly intervals during the NYSE trading session (9:30 AM - 4:00 PM ET) using background shading. Its purpose is to help traders easily identify these key periods while analyzing price action.
Features:
Hourly Segmentation: Clearly marks the following hourly blocks within the NYSE session:
9:30 - 10:00 ET
10:00 - 11:00 ET
11:00 - 12:00 ET
12:00 - 13:00 ET
13:00 - 14:00 ET
14:00 - 15:00 ET
15:00 - 16:00 ET
Alternating Background: Uses a subtle, alternating background pattern for visual distinction:
Transparent: Applied during the 9:30-10:00, 11:00-12:00, 13:00-14:00, and 15:00-16:00 intervals (shows your default chart background).
Very Light Gray: Applied during the 10:00-11:00, 12:00-13:00, and 14:00-15:00 intervals.
Timeframe Restriction: The background shading is active only on chart timeframes of 30 minutes or less (e.g., 30m, 15m, 5m, 1m). It will not appear on higher timeframes.
Session Restriction: Shading only occurs during the defined NYSE session hours (9:30 AM - 4:00 PM ET).
Customization: The color and transparency level of the "Very Light Gray" shading can be adjusted in the indicator's settings.
Purpose & Use Case:
This indicator is ideal for intraday traders who want a clean visual guide to track price movement within specific hourly segments of the NYSE trading day, without needing complex overlays.
Relative Strength IndexRSI means "Relative Strength Index". It’s a momentum indicator in trading that shows if an asset is overbought or oversold. It moves between 0 and 100—above 70 means maybe too high (overbought), below 30 maybe too low (oversold). Traders use it to spot possible reversals.
Calculate Lot Size- with comissionThe indicator created calculates the value of the ideal lot discounting the commission paid to the prop. For example, if your stop is $300 (let's consider 1 pip to make it easier, which would be 30 lots), you would actually pay $300+ the prop's commission, let's assume $100. Now, using the indicator, it would calculate your stop, minus the configured commission. Assuming your commission is $5 per lot, your ideal lot will be $20, not $30. Therefore, you are lowering $300 from your bankroll, not $300 + the commission, which would be more than $400.
SmallCapToLargecapRatioThis Ratio Shows when to shift your allocation from Small Cap to Large Cap before a potential crash. So that you can protect your wealth.
Ex. When the ratio is around 2 (1.6-1.8) (Shift from SMALL CAP to LARGE CAP )
When the ratio is 1 or below (Shift from LARGE CAP to SMALL CAP )
5M Pro Toolkit Ultimate by dnnfafx🎯 Script Purpose
This script is a multi-indicator trading toolkit designed for use on the 5-minute chart (5M timeframe). It combines trend filters, momentum indicators, volume spikes, support/resistance levels, and candlestick pattern detection to assist in technical analysis and provide potential confluence signals for entries.
📌 Main Components
1. User Inputs
Allows users to customize key indicator settings:
EMA lengths (Short and Long)
RSI period
MACD parameters (fast, slow, signal)
Volume spike multiplier
Pivot left/right bar count
2. Trend Filter: EMA 50 and EMA 200
pine
Salin
Edit
emaShort = ta.ema(close, emaShortLen)
emaLong = ta.ema(close, emaLongLen)
Determines the trend direction.
EMA 50 (orange) and EMA 200 (blue) are plotted on the main chart.
3. RSI (Relative Strength Index)
pine
Salin
Edit
rsi = ta.rsi(close, rsiLen)
Measures price momentum.
Horizontal lines at 70 (Overbought) and 30 (Oversold) for quick reference.
4. MACD Histogram
pine
Salin
Edit
= ta.macd(close, macdFast, macdSlow, macdSignal)
macdHist = macdLine - signalLine
Plots the MACD histogram as vertical bars.
Useful for identifying trend strength and potential reversals.
5. Volume Spike Detection
pine
Salin
Edit
volSpike = volume > volMA * volMultiplier
Detects significant volume surges compared to the 20-period volume average.
Displays a red triangle below the candle when a spike occurs.
6. Support & Resistance (Pivot High/Low)
pine
Salin
Edit
pivotHigh = ta.pivothigh(high, pivotLeft, pivotRight)
pivotLow = ta.pivotlow(low, pivotLeft, pivotRight)
Automatically detects local highs (resistance) and lows (support) using pivot logic.
Resistance lines in red, Support lines in green.
7. Candlestick Pattern Detection
Identifies four popular patterns:
Bullish Engulfing (green label "Engulf" below the bar)
Bearish Engulfing (red label "Engulf" above the bar)
Hammer (lime triangle)
Shooting Star (fuchsia triangle)
8. Confluence Entry Logic (Incomplete)
pine
Salin
Edit
buyCond = rsi
This section is currently incomplete.
It's likely intended to define a buy condition based on the confluence of RSI, MACD, EMA trend, volume spike, and candlestick patterns.
🧩 Conclusion
This toolkit is an all-in-one solution for intraday 5-minute trading, combining trend, momentum, volume, price action, and pattern recognition. While the entry logic (buyCond) is not yet finished, the structure is well laid out and can serve as the foundation for a manual or automated trading strategy.
Simple Moving Averageimport yfinance as yf
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
Bollinger Bands Indicator80 hr
I have converted your strategy into indicators and added breakout signals:
Upward breakout (blue mark)
Downward breakout (red mark)
This can be used to observe market trends without directly influencing trades. If you need to tweak any details, please let me know!
✅ Enhanced Daily FVG & Gaps ❌this is an enhanced daily fvg and gaps and it shows previous fvg and gaps if it was successful support or resistance
Oat Trade Setup Version 1 2025Oat Trade Setup Version 1
-Trend Following in Down Trend
-Open Short Position in EMA 20 or EMA60 at TF 120
-Last Open Short Position in EMA 89
Run Trend Until Breaking Upon Dow Theory
EMA12 Trend IndicatorA simple alarm system
When the price is above the EMA, it indicates a long position. When the price is below the EMA, it indicates a short position.
RSI MA Distance IndicatorRSI MA Distance Indicator shows the distance of the RSI 14 to the MA 12 of the RSI
5 Moving Average5 Moving Averages configurable by moving average type (SMA, EMA, WMA)
Also configurable by input type for the calculation (CLOSE, HIGH, LOW,
RSI + MACD Strategy (15min)Dieser Chart dient einem Test.
In diesem Indikator wird der RSI und MDAC genutzt.
crypto_sectors_requestLibrary "crypto_sectors_request"
TODO: add library description here
getGaming()
Saeki Hisoka's Crypto Market SessionsSaeki Hisoka’s Crypto Trading Sessions Indicator Documentation
🚨 Attention Crypto Traders : Timing is everything in the market. 🚨
Crypto markets are active 24/7, but specific regions experience more liquidity and volatility at certain times. Knowing these active periods can be the difference between successful trades and missed opportunities. That's why we developed **Saeki Hisoka’s Crypto Trading Sessions Indicator**—to help you track when the major market sessions are active.
💡 Purpose of This Indicator
The Crypto market never sleeps. However, certain regions like Asia, Europe, and the US have distinct active hours that influence volatility and liquidity. This indicator helps you easily visualize these timeframes so you can align your trading strategy with peak market activity.
🌍 T rading Sessions Covered :
- Asia Session (00:00 - 09:00 UTC) :
- Key Hubs: Tokyo, Hong Kong, Singapore, Shanghai, Seoul
- Asia sets the tone for the day's price action with high liquidity and institutional movements.
- Europe Session (07:00 - 16:00 UTC) :
- Key Hubs: London, Frankfurt, Zurich, Paris, Amsterdam
- Europe drives significant volatility, especially during overlaps with the Asia session.
- US Session (13:00 - 22:00 UTC) :
- Key Hubs: New York, Chicago, Toronto, San Francisco
- The US session is often where the final big moves happen, driven by major institutional players.
🔧 Setup Instructions
This indicator is plug-and-play and easy to use! Once added to your chart, the indicator will automatically highlight the three key trading sessions with corresponding labels:
- Asia : Light blue background with an "Asia" label
- Europe : Light green background with a "Europe" label
- US : Light red background with a "US" label
How to Add :
Follow these simple steps to add the Crypto Trading Sessions Indicator to your TradingView chart:
1. Open TradingView :
- Log into your TradingView account or create one if you haven’t already.
- Open the chart of your choice.
2. Go to the Pine Script Editor :
- At the top of your TradingView chart, click on the **Pine Editor** tab.
3. Copy and Paste the Provided Code :
- Copy the code provided for the **Saeki Hisoka’s Crypto Trading Sessions Indicator**.
- Paste the code into the Pine Script Editor window.
4. Add to Chart :
- After pasting the code, click on **Add to Chart** at the top of the editor.
- The indicator will now be applied to your chart, automatically highlighting the trading sessions for Asia, Europe, and the US with corresponding labels and background colors.
5. Adjust and Customize (Optional) :
- You can customize the appearance of the indicator by modifying the color settings or label positions directly in the script.
- If you wish to modify time settings for the trading sessions, adjust the times in the session definitions within the code.
6. Verify :
- Once the indicator is added, the chart will automatically show the regions with background colors and labels for Asia , Europe , and US trading sessions.
- The sessions will be clearly marked, giving you insight into when liquidity and volatility are expected to be highest.
Important Note:This version of the indicator is currently restricted to timeframes up to 8 hours . Future updates and versions will enable support for all timeframes.
How to Use
* Strategic Entry & Exit Points : With the indicator showing you the exact active times for each session, you can time your entries and exits around periods of high liquidity and volatility.
* Identify Key Breakouts & Volatility Shifts : The Asia session often opens with slower movements, the Europe session may bring consolidation or reversals, and the US session typically results in more volatile moves. Use this information to plan your trades effectively.
* Risk Management : During volatile periods (such as the overlap between the European and US sessions), manage your risk by setting stop losses and take profits before sharp price movements.
Key Takeaways:
- Crypto markets never sleep**, but each region has its most active time periods.
- Timing your trades** around these sessions can give you a competitive edge.
- This indicator helps align your strategy with the market’s natural flow, reducing emotional trading and increasing profitability.
Conclusion: A Strategic Edge for Every Trader
By knowing when the major trading regions are active, you gain a tactical advantage in your trading. This tool isn't just for retail traders—it's how the major institutional players navigate the market.
Stay ahead. Trade smart. Leverage the Saeki Hisoka’s Crypto Trading Sessions Indicator.
-
Disclaimer:
The system is rigged, but we can play the game better.* This indicator is a tool for precision. It’s not just about speculation—it’s about control. Follow Saeki Hisoka for more insights on the markets.
Feel free to share this documentation with your audience. The tool is ready for plug-and-play use, and future updates will ensure more functionality across all timeframes.
3SMA +30 Stan Weinstein +200WMA +alert-crossingIndicator Description: Stan Weinstein Strategy + Key Moving Averages
🔹 Introduction
This indicator combines the Classic Stan Weinstein Strategy with a modern update based on the author’s latest recommendations. It includes key moving averages that help identify trends and potential entry or exit points in the market.
📊 Included Moving Averages (Fully Customizable)
All moving averages in this indicator have modifiable parameters, allowing users to adjust values in the input settings.
1️⃣ 30-Week SMA (Stan Weinstein): A long-term trend indicator defining the asset’s main trend.
2️⃣ 40-Week SMA (Weinstein Update): An adjusted version recommended by the author in his recent updates.
3️⃣ 10-Day SMA: Displays short-term price action and helps confirm trend changes.
4️⃣ 100-Day SMA: A medium-term trend measure used by traders to assess trend strength.
5️⃣ 200-Day WMA (Weighted Moving Average): A very long-term indicator that filters market noise and confirms solid trends.
🔍 How to Interpret It
✔️ 30/40-Week SMA in an uptrend → Confirms an accumulation phase or an upward price trend.
✔️ Price above the 200-WMA → Indicates a strong and healthy long-term trend.
✔️ 10-SMA crossing other moving averages → Can signal an early entry or exit opportunity.
✔️ 100-SMA vs. 200-WMA → A breakout of the 100-SMA above the 200-WMA may signal a new bullish phase.
🚨 Built-in Alerts (Key Crossovers)
The indicator includes automatic alerts to notify traders when key moving averages cross, allowing timely reactions:
🔔 10-SMA crossing the 40-SMA → Possible medium-term trend shift.
🔔 10-SMA crossing the 200-WMA → Confirmation of a stronger trend.
🔔 40-SMA crossing the 200-WMA → Long-term trend reversal signal.
💡 Customization: All moving average periods can be adjusted in the input settings, making the indicator flexible for different trading strategies.
Open Vertical Lines [TradeWithRon]This indicator allows traders to draw vertical lines manually or automatically based on the current or specified higher timeframes. It is a versatile tool designed to help users identify and mark significant changes in the market, such as new candle formations, based on a selected or auto-adjusted timeframe.
Open Source
Features:
Timeframe Customization: Users can either manually specify a desired timeframe (e.g., 1-hour, 1-day, etc.) or enable the "Auto" feature, which automatically adjusts the timeframe based on the current chart's timeframe for better alignment with different trading strategies.
Customizable Line Style: The vertical line can be drawn in three different styles: Solid, Dashed, or Dotted, giving users the flexibility to choose their preferred appearance for better chart readability.
Line Color: Users can select the color of the vertical line with transparency options to match their chart's visual preferences.
Auto Timeframe Adjustments: The "Auto Align" option dynamically adjusts the timeframe used for vertical lines depending on the chart's current timeframe. For example, if you’re using a lower timeframe (e.g., 5 minutes), the indicator will automatically switch to a higher timeframe (e.g., 1 hour or daily) to mark vertical lines, ensuring the lines correspond to higher timeframe price action.
Vertical Line Placement:
A vertical line is placed each time a new candle appears on the chart, marking key moments for the user to analyze market movements. This can be helpful for marking the start of new trading sessions or significant events in the market.
How to Use:
1. Apply the indicator to your chart.
2. Configure the preferred timeframe settings (either fixed or auto-align).
3. Customize the line style and color according to your visual preference.
4. The indicator will automatically place vertical lines on the chart when a new candle is formed, based on your selected timeframe.