Custom MA Crossover with Time and +100 LabelThis is a buy and sell signal with the moving average, every time it cross over it will tell you to buy or sell, with 100 points at take profit
Indicators and strategies
EST Morning Session ColumnsThis is a simple indicator that shows the market open every weekday morning and a Red Wednesday column marketing the middle of the week. I se this to watch the open easily on any time frame as generally, Monday sets a trend until Wednesday which typically starts a reversal into the weekend.
I may continue adding to this over time as I find other elements to create a confluence.
cryptocrow.io
Palfrey Ltd: CBT Navigator Legacy🧭 How to Use the CBT Navigator Legacy Indicator
The CBT Navigator Legacy is designed to assist long-term Bitcoin holders with structured exit planning across the capital cycle. It overlays key price zones and ROI thresholds to help you manage conviction, de-risk responsibly, and navigate euphoric conditions with clarity.
🔹 Setup & Inputs
Average Entry: Input the average USD price at which you acquired your BTC position.
Cycle Peak Estimate: Set a hypothetical top for the current market cycle (e.g. $250,000).
Funding Rate Proxy: Enter a manually observed or estimated annualized funding rate (e.g. 0.12 for 12%).
🔹 What It Displays
The indicator renders horizontal lines at:
Sell Zone 1 (72% of peak): Early de-risking for disciplined capital preservation.
Sell Zone 2 (90% of peak): Start reducing core positions.
Sell Zone 3 (100% of peak): Near peak euphoria—high-risk environment.
Sell Zone Max (110% of peak): Blow-off top zone—exit remaining speculative exposure.
ROI Multiples (2x to 10x): Visualize profit multiples based on your entry price.
A small dashboard on-screen summarizes which zones price has entered and whether funding rates are elevated (above 10%).
🔹 How to Use It
Strategic Planning: Use the tool to define your sell zones before the market gets volatile.
Psychological Anchor: The visual zones provide a reference point when sentiment becomes irrational.
Non-Overfitting: It works without relying on live market data proxies or on-chain feeds—ideal for legacy views.
For deeper insights into how this framework fits into broader cycle structure, macro analysis, and risk models, refer to the articles at
📬 coinandcapital.substack.com
Pip Badan Candle Terakhir//@version=5
indicator("Pip Badan Candle Terakhir", overlay=true)
badan = math.abs(close - open)
pip = badan * 100
textPip = str.tostring(pip, "#.0") + " pip"
var label lbl = na
if not na(lbl)
label.delete(lbl)
lbl := label.new(bar_index, (high + low) / 2, textPip,
style=label.style_label_up,
textcolor=color.white,
size=size.normal,
color=close > open ? color.green : color.red)
SMA Cross 20x50 CryptoSMA 20 SMA 50, whenever they cross the chart will display a GOLDEN CROSS or CROSS of DEATH.
The user will have the option to choose the SMA values as well as, the option to show crosses or text is available.
Color-Coded LVN MarkerThis Pine Script simulates a mini Volume Profile using standard OHLC candles, identifies Low Volume Nodes (LVNs) — price levels with relatively low traded volume — and marks them as dashed red horizontal lines on the chart.
Open Lines (Bruins.J)Session breaks, open lines, each trading session hour can be marked with an independant open line.
cloud shift alertsMA Cloud Pairs + Price Signal Pro
Overview:
This advanced multi-MA tool visualizes key crossover interactions between short- and long-term moving averages, along with precise price-to-MA breakouts. Designed for trend-followers and breakout traders, it highlights actionable cloud shifts and crossover events with built-in volume filtering and cooldown logic.
🔧 Key Features:
🔁 MA Pair Clouds:
Visual cloud zones formed by:
MA1 vs MA4
MA2 vs MA5
MA3 vs MA6
Customizable colors for bullish, bearish, and neutral states
📈 Cross Signals:
Detects crossovers between each MA pair (e.g., MA1 crossing MA4)
Volume-based validation and cooldown timers prevent signal spam
📍 Price-to-MA Breakout Alerts:
Separate signals for price crossing above/below MA4, MA5, and MA6
Helpful for tracking breakout and breakdown zones
🎨 Full Visual Customization:
Toggle MA lines, clouds, and signal types
Individual color settings for each MA and cloud state
Líneas Sutiles - Aperturas y Cierres (Londres & NY)//@version=6
indicator("Líneas Sutiles - Aperturas y Cierres (Londres & NY)", overlay=true)
// Función para verificar si el timestamp pertenece al día actual o al anterior
isTodayOrYesterday(ts) =>
tsYear = year(ts, "America/New_York")
tsMonth = month(ts, "America/New_York")
tsDay = dayofmonth(ts, "America/New_York")
today = dayofmonth(timenow, "America/New_York")
thisMonth = month(timenow, "America/New_York")
thisYear = year(timenow, "America/New_York")
tsYear == thisYear and tsMonth == thisMonth and (tsDay == today or tsDay == today - 1)
// Horarios clave (en horario de Nueva York)
londonOpen = timestamp("America/New_York", year, month, dayofmonth, 2, 0)
londonClose = timestamp("America/New_York", year, month, dayofmonth, 5, 0)
preNY = timestamp("America/New_York", year, month, dayofmonth, 7, 0)
nyOpen = timestamp("America/New_York", year, month, dayofmonth, 7, 0)
nyDayStart = timestamp("America/New_York", year, month, dayofmonth, 17, 0) // 🔶 NUEVA línea 5PM NY
// Dibujar líneas sutiles solo si son del día actual o anterior
if (isTodayOrYesterday(londonOpen) and time == londonOpen)
line.new(x1=londonOpen, y1=low, x2=londonOpen, y2=high, xloc=xloc.bar_time, extend=extend.both, style=line.style_dotted, color=color.new(color.blue, 45), width=1)
if (isTodayOrYesterday(londonClose) and time == londonClose)
line.new(x1=londonClose, y1=low, x2=londonClose, y2=high, xloc=xloc.bar_time, extend=extend.both, style=line.style_dotted, color=color.new(color.blue, 45), width=1)
if (isTodayOrYesterday(preNY) and time == preNY)
line.new(x1=preNY, y1=low, x2=preNY, y2=high, xloc=xloc.bar_time, extend=extend.both, style=line.style_dotted, color=color.new(color.orange, 45), width=1)
if (isTodayOrYesterday(nyOpen) and time == nyOpen)
line.new(x1=nyOpen, y1=low, x2=nyOpen, y2=high, xloc=xloc.bar_time, extend=extend.both, style=line.style_dotted, color=color.new(color.red, 45), width=1)
// 🔶 Línea amarilla a las 5PM NY (inicio del día operativo)
if (isTodayOrYesterday(nyDayStart) and time == nyDayStart)
line.new(x1=nyDayStart, y1=low, x2=nyDayStart, y2=high, xloc=xloc.bar_time, extend=extend.both, style=line.style_dotted, color=color.new(color.yellow, 25), width=1)
ALETHES_LEGACY_Investments_LibLibrary "ALETHES_LEGACY_Investments_Lib"
f_getLimitRight(bars)
Parameters:
bars (int)
f_getLineStyle(lineStyleX)
Parameters:
lineStyleX (string)
f_getLineWidth(lineWidth)
Parameters:
lineWidth (string)
f_adjustLabel(labelText)
Parameters:
labelText (string)
f_levelMerge(pricearray, labelarray, currentprice, currentlabel, currentcolor)
Parameters:
pricearray (array)
labelarray (array)
currentprice (float)
currentlabel (label)
currentcolor (color)
f_plotLineAndLabel(startTime, lineLevel, lineColor, lineStyle, lineWidth, labelText, labelColor, labelOffset)
Parameters:
startTime (int)
lineLevel (float)
lineColor (color)
lineStyle (string)
lineWidth (string)
labelText (string)
labelColor (color)
labelOffset (int)
f_labelOnRight(plotSeries, labelText, labelStyle, labelColor, showLabel, labelOffset)
Parameters:
plotSeries (float)
labelText (string)
labelStyle (string)
labelColor (color)
showLabel (bool)
labelOffset (int)
f_getMovingAverage(maType, MaLength)
Parameters:
maType (string)
MaLength (simple int)
f_newBar(res)
Parameters:
res (simple string)
f_drawPivot(pivotLevel, res, pivotText, pivotColor, pivotLabelColor, pivotStyle, pivotWidth, pivotExtend, isLabelValid, isValidTf, levelStart, pivotLabelXOffset)
Parameters:
pivotLevel (float)
res (simple string)
pivotText (simple string)
pivotColor (simple color)
pivotLabelColor (simple color)
pivotStyle (simple string)
pivotWidth (simple int)
pivotExtend (simple string)
isLabelValid (simple bool)
isValidTf (simple bool)
levelStart (int)
pivotLabelXOffset (int)
f_avgRangeHiLo(length, barsBack, fromOpen)
Parameters:
length (simple int)
barsBack (simple int)
fromOpen (simple bool)
f_splitSessionString(sessXTime)
Parameters:
sessXTime (simple string)
f_calcSessionStartEnd(sessXTime, gmt)
Parameters:
sessXTime (simple string)
gmt (simple string)
f_drawOpenRange(sessXTime, sessXcol, showOrX, gmt)
Parameters:
sessXTime (simple string)
sessXcol (simple color)
showOrX (simple bool)
gmt (simple string)
f_drawSessionHiLo(sessXTime, showSession, showLabelX, sessXcolLabel, sessXLabel, gmt, sessionLineStyle, sessionLineWidth)
Parameters:
sessXTime (simple string)
showSession (simple bool)
showLabelX (simple bool)
sessXcolLabel (simple color)
sessXLabel (simple string)
gmt (simple string)
sessionLineStyle (simple string)
sessionLineWidth (simple string)
f_calcDst()
CrumpBot
Main functions of the indicator:
Filters candles based on volume:
Can compare the launch volume to the basic volume of the next date (e.g. 20 or 50 candles), excluding extremely high values so that the average is not distorted.
Can also have, if the volume exceeds the set, utility value.
Analyzes shaped candles:
Checks if the lower node of the candle is long enough in relation to its body (e.g. at least 50%), which can occur with strong demand and rejection of generated prices.
RSI indicator indicator:
Optionally filters only when RSI is below the basic level (e.g. 50), which is an external oversold market.
Additional conditions:
Can generate a signal only if the candle is covered by a percentage of candles.
Optionally requires that the price has fallen by a percentage (e.g. at least 3%) in the last 15 minutes, which could be a potential low and a chance to reject the trend.
Signal:
Draws on the chart as a green triangle below the candle when all the required candle requirements are connected.
Additional draws a blue circle above the candle if the candle meets the candle cover condition.
JEYOUNG MADE20일선 위로올라갈때 매수표시 20일선 아래로내려갈때 매도 표시 5일 20일 120일 200일선 포함됨
("Show a buy signal when the price moves above the 20-day moving average, and a sell signal when it falls below the 20-day moving average. Include the 5-day, 20-day, 120-day, and 200-day moving averages."
Let me know if you want this formatted for a trading script or chart annotation as well.)
CEYLON Golden Indicator Buy & SellDesigned to provide traders with clear, high-probability trading signals, this indicator helps you identify key market levels
RSI SMA Inflection AlertFor trading a 1-min chart, the alert triggers when the SMA (smooth line) of the RSI turns up (bullish) in the oversold zones and turns down (bearish) in the overbought zones.
This largely fires as trends show weakness and/or divergences are forming in overbought or oversold territory, suggesting a reversal may be near. It acts as confirmation, rather than entering a trade before true divergences/weakness has formed.
It also helps define an extremely clear and tight stop (local high/low) often providing good R:R (very often 2+) even in relatively choppy PA.
Standard Deviation + Z-scoreThis indicator calculates the standard deviation of close prices over the last N periods, where N is a user-defined input. Three rays above and below the current price indicate three standard deviations. The summary in the top right corner shows the number of bars N, the mean value over the period, standard deviation as percentage and Z-score of the current price.
PRO Investing - LevelPRO Investing - Level
📊 Dynamic Support/Resistance
This indicator plots the PRO Investing Level, defined as the midpoint between the highest high and lowest low over the past 252 trading days (default lookback period, equivalent to ~1 year). It acts as a key mean-reversion reference level, useful for identifying potential support/resistance zones or market equilibrium levels.
Features:
🕰️ Option to display only today’s level or historical levels.
⚙️ Customizable lookback period for flexibility across timeframes and strategies.
📉 Teal line plotted directly on the chart, highlighting this institutional-grade level.
Ideal for traders looking to anchor price action to significant historical ranges—particularly useful in mean-reversion, breakout, or volatility compression strategies.
Rifle SHORT OSVuka's Rifle Shooter Indicator
TODO fill out description of input settings
See to complement this rifle indicator.
BK AK-SILENCER (P8N)🧩 BK AK-SILENCER (P8N)
CVD Bollinger Band Engine | Dynamic Flash | Structure Zones | Divergence Panel
🧠 Introduction
This is the second half of the AK-SILENCER system: BK AK-SILENCER (P8N) — a standalone CVD panel that amplifies stealth detection with volatility-based bands, dynamic flash alerts, and smart structural analysis.
This panel works on its own, but was engineered to pair perfectly with BK AK-SILENCER overlay.
🔎 What “P8N” Means
P8N = Precision. 8 Dimensions. Noise-filtered.
8 represents balance, cycles, infinite feedback, and control — all concepts deeply tied to Gann, geometry, and institutional rhythm.
This engine reads volume through volatility — not price. It detects shifts where real moves begin — quietly.
⚙️ Core Weapon Systems
✅ CVD Line + MA + Fill Logic
See the cumulative volume delta with trend tracking and real-time color fills.
✅ Bollinger Bands
Standard deviation bands built around the signal line — not price. Shows real overbought/oversold based on volume movement.
✅ Dynamic Flash Backgrounds
When CVD pressure reaches extremes, the background flashes — silently warning of potential pivots or continuation.
✅ Divergence Detection
Automatic structural divergence plotted between price and CVD — with configurable pivot logic.
✅ Structure Lines (optional)
Visual anchors: session opens, POC, deviation bands, value zones, and structural support/resistance pivots.
🎯 How to Use It
Flash + CVD breaches upper band = momentum continuation
Flash + divergence = prepare for mean-reversion
Divergence + POC/value area = sniper entry
Combine with BK AK-SILENCER overlay bar colors = full market read
💡 Perfect For
Momentum traders who wait for pressure confirmation
Reversal traders looking for structure + volume misalignment
Pattern and time traders syncing Gann, Elliott, and Fib setups
Swing traders seeking multi-layered confirmation
🔧 Customize It. Share It. Grow It.
No tool is perfect out of the box — it must fit your flow.
🛠️ Test your BB deviation values. Adjust dynamic flash settings. Tune pivot logic.
💬 Then share your favorite combos in the comments.
What worked for you might unlock clarity for someone else.
If this helped you — return the favor. Drop your blueprint.
🔗 Works Best With
➡️ BK AK-SILENCER
Together, they detect what price alone cannot. One sees aggression. One sees intent.
Overlay + Panel = Total Edge.
🙏 Pay It Forward
This was built through the lessons of a mentor who gave selflessly — and the blessing of Gd who gave structure to the chaos.
If this gave you insight:
🔹 Teach someone
🔹 Post your best settings
🔹 Share what you've learned
🔹 Help the next person trade with discipline
We’re not here just to win. We’re here to evolve — and bring others with us.
To my mentor — A.K. — this is yours.
To Gd — the source of wisdom — this is for Your glory.
—
Silent. Steady. Strategic.
🎯 BK AK-SILENCER (P8N) — See what others miss.
Gd bless your precision, purpose, and patience. 🙏
Flow & Analytics (Normalized)Flow & Analytics (Normalized)
A multi‐metric lower‐pane indicator that condenses volume imbalances and flow dynamics into four normalized measures—Δ %, Ratio, Z-Score, and Cumulative Δ—plus optional buy/sell “flow” bars. All series are scaled to –1…+1 for direct comparison.
How to Add & Configure
Add the script to your chart (overlay = false).
In Settings → Inputs, toggle on/off the four metrics and the background flow bars.
Adjust look-back windows:
Flow Lookback controls how much history the bars normalize over.
Z Window sets the period for the Z-Score’s mean/standard deviation.
Cum Δ Lookback determines how reactive the cumulative Δ line is.
Choose colors, line widths, and opacity to match your style.
Reading the Metrics
Flow Bars (teal/green & red overlay):
Plotted as vertical columns from –1…+1, they show buy vs. sell pressure each bar.
The taller bar is drawn behind, the shorter in front—so you always see both sides of the fight.
Use: Quickly spot bars where one side dominates (e.g. an all-green or all-red bar).
Δ % (orange line, thick):
(
B
u
y
s
−
S
e
l
l
s
)
/
(
B
u
y
s
+
S
e
l
l
s
)
(Buys−Sells)/(Buys+Sells).
Measures net imbalance as a percentage of total flow.
Crosses of 0 indicate a shift from selling to buying pressure (or vice versa).
Values near ±1 reveal nearly pure one-sided flow.
Ratio (purple dashed):
Defined as
(
B
/
S
−
1
)
/
(
B
/
S
+
1
)
(B/S−1)/(B/S+1), which algebraically equals Δ %.
Plotted separately so you can style or overlay it for confirmation.
Note: It will track exactly on top of Δ %, so if you need a distinct signal consider replacing it with a “raw” B/S ratio or a different transform.
Z-Score (yellow):
Standardizes the bar’s raw Δ (
B
−
S
B−S) versus its recent mean/σ over Z Window.
Caps at ±Z Cap Threshold, then scales back to ±1.
Highlights bars that are unusually imbalanced compared to recent history.
Bar-coloring marks extreme |Z| > 1 in solid yellow.
Cumulative Δ (teal):
A running sum of bar-by-bar Δ, normalized to its peak absolute over Cum Δ Lookback.
Tracks whether buying or selling has been dominant over the last N bars.
Values above zero show net buying accumulation; values below, net selling.
Putting It All Together
Trend Entry/Exit
A sustained positive Cum Δ plus repeated high-Z bars confirms institutional buying.
Conversely, negative Cum Δ with extreme Z down-bars signals strong selling.
Divergence
When price makes new highs but Δ % or Cum Δ fails to follow, suspect weakening momentum.
A Z-Score peak without corresponding price movement often precedes reversals.
Micro-structure
Single-bar Flow Bars show quick supply/demand switches.
Use the opacity controls to “ghost” the losing side behind the winner—ideal for scalping or order-flow analysis.
Pro Tips
Align Look-back Windows with your chart timeframe (e.g. 20–50 bars on a 1 min chart).
Combine with price support/resistance zones: an extreme Z-Score at a pivot often marks a high-probability turn.
Customize the Ratio plot to raw buy/sell ratio if you need a different sensitivity curve.
Use this tool as a real-time “flow compass”—it blends volume, imbalance, and statistical context into one clean pane, helping you spot when buying or selling truly takes over.
Auto TrendlinesAuto Trendline – Indicator Description
The Auto Trendline indicator automatically draws trendlines based on recent swing highs and lows using pivot analysis. It helps traders quickly identify short-term and long-term market trends without manual drawing.
✅ Features:
Automatic drawing of trendlines based on pivot points (highs and lows)
Custom timeframe support: Use higher timeframe pivot data while working on lower charts
Trendlines update dynamically as new pivots are formed
Lines extend only to the current bar, keeping the chart clean
⚙️ How It Works:
The indicator detects recent swing highs and lows using pivot strength
Two most recent pivot points are connected to form each trendline:
Uptrend line from two higher lows
Downtrend line from two lower highs
Trendlines are redrawn as new pivots appear
MACD-VWAP-BB IndicatorThe Scalping Rainbow MACD-VWAP-BB Indicator is a simple tool for beginners to scalp (make quick trades) on a 1-minute chart in TradingView. It helps you decide when to buy or sell assets like forex (EUR/USD), crypto (BTC/USD), or stocks by showing clear signals directly on the candlestick chart. Here’s how to use it for scalping, explained in the easiest way:
Setup: Open TradingView, choose a 1-minute chart for a liquid asset (e.g., EUR/USD). Copy the indicator code into the Pine Editor (bottom tab), click “Add to Chart.” You’ll see green triangle-up signals below candles for buying and red triangle-down signals above candles for selling.
Buy Signal (Green Triangle Up): When a green triangle appears below a candle, it means the MACD, VWAP, and Bollinger Bands all suggest the price may rise. Action: Buy immediately, aiming for a small profit (5-10 pips in forex, 0.1-0.5% in crypto/stocks). Set a stop-loss 2-5 pips below the recent low to limit losses.
Sell Signal (Red Triangle Down): A red triangle above a candle signals a potential price drop. Action: Sell or short the asset, targeting a quick profit. Set a stop-loss 2-5 pips above the recent high.
Scalping Tips: Trade during busy market hours (e.g., 5:30 PM–9:30 PM IST for forex). Exit trades within 1-5 minutes. Only risk 1-2% of your account per trade. Check for support/resistance levels or candlestick patterns to confirm signals.
Practice: Use a demo account to test the indicator. Stick to 3-5 trades per session to avoid overtrading. If signals are too frequent, adjust “Signal Delay” to 2 in settings.
This indicator simplifies scalping by combining three reliable tools into clear buy/sell signals, perfect for beginners.