Strong volume and FVG-highlight candle that has strong volume where big player activated their position
-signal activated when it breakout strong volume candle with an Fair value gap
Indicatori e strategie
TRAMA Cross Pivot Points📌 Description: TRAMA Cross Pivot Points
This indicator combines the powerful Trend Regularity Adaptive Moving Average (TRAMA) with dynamic pivot point.
🔍 What It Does:
Calculates a long-term TRAMA (default length 278) to filter trend direction and smooth volatility. I mostly use the lengths 20, 50, 100, 200, 278, and 314 to mark areas of retest.
Detects bullish and bearish price crossovers above and below the TRAMA.
Plots real-time pivot levels when a crossover occurs.
Draws a dashed horizontal pivot line only at the most recent crossover, keeping your chart clean and focused.
Includes alert conditions so you never miss a strategic moment.
⚙️ How It Works:
Bullish TRAMA Cross: When price crosses above the TRAMA, the script:
Calculates a potential pivot low using DM-style Logic.
Plots a green dashed line at that pivot level.
Optionally triggers an alert.
Bearish TRAMA Cross: When price crosses below the TRAMA:
A pivot high is calculated and plotted as a red dashed line.
Optional alert lets you know of a possible top.
📈 Pivot Logic:
Uses real-time candle data (OHLC) to adjust pivot points dynamically.
These pivots can act as potential support/resistance levels or entry zones.
🔔 Alerts:
Triggered when price crosses the TRAMA up or down.
Ideal for traders looking to enter on structure-based momentum.
BTC Correlation CoefficientThe BTCUSDT Correlation Coefficient indicator measures the strength and direction of the relationship between the selected asset (e.g., a stock or altcoin) and the price of BTCUSDT over a chosen time period. It uses a custom correlation function to calculate how closely the asset's price movements align with Bitcoin, returning a value between -1 and +1. A coefficient near +1 indicates strong positive correlation, while values near -1 indicate inverse correlation. This helps traders assess whether the asset tends to follow Bitcoin’s price trends or behave independently, enabling more informed decisions on portfolio diversification and market sentiment alignment.
NFP RangesThis simple indicator will mark the high and low prices during NFP days. You an choose how many NFP days you want to go back and a gradient to use for the levels.
The NFP dates are hard coded from 2023 through 2029. If this script survives past 2029, it should be simple to add more dates.
✅ SMA20 Trend Table -(MAJOAK)Trend table of Bullish or Bearish to the SMA 20. Displays 1 Day, 1Hr, 15 Min and 5 min.
9AM–11AM NAS100 Session Box//@version=5
indicator("9AM–11AM NAS100 Session Box", overlay=true)
// Define session times in New York (EST)
session_start = timestamp("America/New_York", year, month, dayofmonth, 09, 0)
session_end = timestamp("America/New_York", year, month, dayofmonth, 11, 0)
// Detect if we're inside the session window
in_session = (time >= session_start) and (time < session_end)
// Track high/low of the session
var float session_high = na
var float session_low = na
if (in_session)
session_high := na(session_high) ? high : math.max(session_high, high)
session_low := na(session_low) ? low : math.min(session_low, low)
else
session_high := na
session_low := na
// Draw the session box
bgcolor(in_session ? color.new(color.blue, 85) : na)
// Optionally draw lines at session high/low
plot(in_session ? session_high : na, title="Session High", color=color.green, linewidth=1)
plot(in_session ? session_low : na, title="Session Low", color=color.red, linewidth=1)
OTE+STDV MultiTF IndicatorVERY ROUGH DRAFT OF INDICATOR EXPECTS BUGS. I AM NOT A CODER SO THIS SHOULD NOT BE PERFECT.
Place limit orders on yellow lines. You will get a buy signal only during perfect A+ setups.
PLEASE MESSAGE ME IF YOU ARE A CODER AND CAN FIX THIS OR MAKE IT BETTER
Discord: itscwiby
Orange Lines are Rejection Zones
Yellow Lines are Limit order spots. Usually you want to take this with a 40 tick SL. You can also use a Fib tool on the green box to get a better entry.
Generally you want to look at the 30m chart or higher for these zones and find a optimal entry on a smaller timeframe.
Turtle God Indicator (Đức Anh Trader)Description:
The Turtle God Indicator is a minimalist tool that provides quick visual feedback on the latest candle's momentum while remaining compliant with TradingView's visual guidelines.
🔹 The turtle appears only on the latest candle, keeping the chart clean and uncluttered.
🔹 Includes a 14-period Simple Moving Average (SMA) to help track trend direction.
🔹 Ideal for traders who want fun, subtle alerts without distracting overlays or indicators.
Inspired by Đức Anh Trader, this playful yet practical indicator is perfect for identifying momentum with a smile. 🐢
EMA 9/21 Crossover Indicator w/ Shading9 and 21 ema cross over with buy and sell signals. No close signal so you will need to trail your stop manually
Quốc Phạm 0766638883Includes advanced features such as:
Dynamic RSI coloring based on level zones
Divergence detection between price and RSI
Smart alerts when RSI enters extreme zones or changes trend direction
First 15 Min High/Low//@version=5
indicator("First 15 Min High/Low", overlay=true)
// Define the session start time (adjust according to your market)
startHour = 9
startMinute = 30
endMinute = startMinute + 15
// Track the first 15 minutes of the day
isFirst15 = (hour == startHour and minute >= startMinute and minute < endMinute)
// New day logic
newDay = ta.change(time("D"))
// Hold values
var float first15High = na
var float first15Low = na
var bool isLocked = false
// Capture high/low during first 15 min
if newDay
first15High := na
first15Low := na
isLocked := false
if isFirst15 and not isLocked
first15High := na(first15High) ? high : math.max(high, first15High)
first15Low := na(first15Low) ? low : math.min(low, first15Low)
if not isFirst15 and not isLocked and not na(first15High) and not na(first15Low)
isLocked := true
// Plot
plot(isLocked ? first15High : na, title="First 15 Min High", color=color.green, linewidth=2, style=plot.style_line)
plot(isLocked ? first15Low : na, title="First 15 Min Low", color=color.red, linewidth=2, style=plot.style_line)
Khối Lượng WyckoffThis indicator combines Wyckoff logic, Smart Money Concepts (SMC), Order Blocks, Breaker Blocks, and Volume Trap detection.
It automatically highlights key market manipulation zones like Spring, Upthrust, and Break of Structure.
Ideal for traders following institutional footprints with multi-timeframe filtering
HAPatternsLibrary "HAPatterns"
isBearishRSIDivergence(price, rsi, pricePrevHigh, rsiPrevHigh)
Parameters:
price (float)
rsi (float)
pricePrevHigh (float)
rsiPrevHigh (float)
shouldExitSteepRise(curveShrinking, rsi, rsiPrev, adx, adxPrev, divergenceDetected)
Parameters:
curveShrinking (bool)
rsi (float)
rsiPrev (float)
adx (float)
adxPrev (float)
divergenceDetected (bool)
plotSteepRiseDebug(isSteep, shrinkExit, rsiExit, divergenceExit, adxExit)
Parameters:
isSteep (bool)
shrinkExit (bool)
rsiExit (bool)
divergenceExit (bool)
adxExit (bool)
The SamuraiBeta testing a strategy! We are testing a new strategy that is finding a sophisticated breakout with GJ! We will continue to add to this strategy as it looks very good at first glance. we have profitability for more than 5+ years! Take a look at the chart
New MA Cross Strategy V6 By BRC Different MA added with resolution to improve performance using higher time frame
SequentialSMT+TCISDAn Extreme thought of Daye's Quarterly theory and SSMT + True Change In State of Delivery. this indicator detects SSMT between two pair on Daily cycle M5 and detecting the True Change In State of Delivery as entry point.