Patrones de gráficos
Coin Flip Strategylets se how this plays out by trading random with a hih RR.. this should be interesting to see
BB% Crossing Bollinger Bands AlertsThis script focuses exclusively on the behavior of the BB% indicator. It signals a SELL alert when the BB% value crosses upward through 1.0 (meaning it has breached the top Bollinger Band) and a BUY alert when the BB% crosses downward through 0.0 (meaning it has fallen below the bottom Bollinger Band). The script is fully customizable through its inputs and provides clear visual indicators alongside conditions you can use to trigger alerts on TradingView.
Condition Check- Latest Open < 1 day ago High
- Latest Close < 1 day ago High
- Latest Open > Latest Low
- Latest Close > 1 day ago Low
- 1 day ago Open < Latest High
- 1 day ago Open < Latest High ( duplicate condition)
- 1 day ago Open > Latest Low
- 1 day ago Close > Latest Low
Bar Count - WBBar Count for futures day trading. It counts bars from 6:30 am (PST) to 1:10 pm (PST) resulting in 1..81 bars. Folks can use it to understand open, middle, and ending candles and ranges for the day trading sessions.
Swing Break Indicator//@version=5
indicator("Swing Break Indicator", overlay=true)
// Input for swing length
swingLength = input(5, title="Swing Length")
// Identify swing high and swing low
swingHigh = ta.highest(high, swingLength)
swingLow = ta.lowest(low, swingLength)
// Store previous swing values
var float prevSwingHigh = na
var float prevSwingLow = na
var float lastSwingHigh = na
var float lastSwingLow = na
if high == swingHigh
prevSwingHigh := lastSwingHigh
lastSwingHigh := swingHigh
if low == swingLow
prevSwingLow := lastSwingLow
lastSwingLow := swingLow
// Conditions for Buy and Sell signals
buySignal = low < prevSwingHigh and ta.crossover(low, prevSwingHigh)
sellSignal = high > prevSwingLow and ta.crossunder(high, prevSwingLow)
// Plot Buy and Sell labels
labelPosition = 20 // Offset for label placement
if buySignal
label.new(bar_index, low - labelPosition * syminfo.mintick, "BUY", color=color.green, textcolor=color.white, style=label.style_label_down)
if sellSignal
label.new(bar_index, high + labelPosition * syminfo.mintick, "SELL", color=color.red, textcolor=color.white, style=label.style_label_up)
RIFMA - Ruiz Icochea Fibonacci MA"RIFMA, created by Pharaoh BRC-20, is a powerful technical analysis tool harnessing Fibonacci sequence-aligned moving averages (5, 8, 13, 21, 55, 89, 144, 233, 377, 610, 987, 1597). Designed for precision, it dynamically adjusts colors—vivid green for short periods, transitioning through red to deep brown for longer ones—reflecting trends against a dark backdrop. With thin lines for short-term MAs and thicker ones for long-term, RIFMA excels at identifying trends, supports, and resistances across any market. Optimized for TradingView, it’s an essential companion for traders seeking clarity and actionable insights in their charts."
QQE Reversal Strategy for GoldThis script provides a solid foundation for using the QQE indicator to identify potential reversal points in Gold. Always backtest the strategy and combine it with other tools (e.g., support/resistance, trendlines) for better accuracy.
Optimized Target Trend Strategy v2This script works well for 15 min timeframe on NQ chart with with rate over 74 percent and profit factor 2.4
Nobitadqt trading systemXác nhận có quán tính hoặc cấu trúc đỉnh đáy
Xác định xu hướng chính trên khung D1/D2
Điều kiện vào lệnh Long & Short
Wick Reversal Strategy with Body ConditionThe Wick Reversal strategy identifies potential trend reversals by analyzing candlestick patterns, focusing on wick length and body closure. When a candle closes near its high or low after forming a long wick, it signals a possible reversal. A long upper wick with a close near the low suggests bearish reversal potential, while a long lower wick with a close near the high indicates bullish reversal potential. This code automates the detection of such patterns, enabling traders to capitalize on early reversal signals. By incorporating body closure direction, it enhances accuracy, providing actionable insights for both uptrend and downtrend scenarios.
It is recommended to use this on 15 minutes, 30 minutes and 1hr time frames.
Alden Trading SystemĐây là một chỉ báo kết hợp RSI,để xác định tín hiệu giao dịch chính xác hơn nobitadinhquoctuan
Black Rhino : EMA and SMAUsed to determine the underlying trend direction.
Day Trade - 5 EMA over 10 EMA
Short Term Uptrend - 20 EMA over 40 EMA
Medium Term Uptrend - 50 SMA over 150 SMA
Long Term Uptrend - Price over 200 SMA
Long Term Uptrend Order
50 SMA over 100 SMA; 100 SMA over 150 SMA, 150 SMA over 200 SMA
Watch for Dip on Uptrend - Price bounce of 50/100/150 or 200 SMA
Alden Trading SystemĐây là một chỉ báo kết hợp RSI, EMA, WMA, SMC, FVG và CVD để xác định tín hiệu giao dịch chính xác hơn - nobitadinhquoctuan
ICP Staking Dashboard - EnhancedScript for ICP Based of staking supply and real supply etc, then calulated the real pirce
Scalp Precision Matrix//@version=5
indicator("Scalp Precision Matrix", overlay=true)
// EMA
emaFast = ta.ema(close, 5)
emaSlow = ta.ema(close, 13)
plot(emaFast, color=color.green)
plot(emaSlow, color=color.red)
// Volume Filter
volAvg = ta.sma(volume, 10)
volSurg = volume > volAvg * 1.2
// Levels
support = ta.lowest(low, 20)
resistance = ta.highest(high, 20)
// ATR Filter
atr = ta.atr(14)
atrAvg = ta.sma(atr, 20)
atrConf = atr > atrAvg
// RSI
rsi = ta.rsi(close, 7)
// Signals
buySignal = ta.crossover(emaFast, emaSlow) and volSurg and close > support and atrConf and rsi < 70
sellSignal = ta.crossunder(emaFast, emaSlow) and volSurg and close < resistance and atrConf and rsi > 30
plotshape(buySignal, title="Buy", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
plotshape(sellSignal, title="Sell", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small)
Bitcoin HODL Indicator// Bitcoin Buy & Hold Indicator (HODL Signal)
//@version=5
indicator("Bitcoin HODL Indicator", overlay=true)
// Moving Averages
ma_200w = ta.sma(close, 1400) // Approximate 200-week MA for daily chart
plot(ma_200w, color=color.blue, linewidth=2, title="200WMA")
// MVRV Z-Score Approximation (Using RSI as a Proxy for Simplicity)
mvrv = ta.rsi(close, 90)
low_mvrv = 25 // Adjust based on BTC history
high_mvrv = 70 // Overbought zone
// Pi Cycle Bottom Approximation
ma_111 = ta.sma(close, 111)
ma_350x2 = ta.sma(close, 350) * 2
// Buy Signal Logic
buy_signal = ta.crossover(close, ma_200w) or (mvrv < low_mvrv and ta.crossover(ma_111, ma_350x2))
// Plot Buy Signals
plotshape(buy_signal, location=location.belowbar, color=color.green, style=shape.labelup, size=size.small, title="BUY Signal")
// Alerts
alertcondition(buy_signal, title="Bitcoin Buy Signal", message="Bitcoin is in an accumulation zone! 🚀")
// Background Color for Accumulation Zones
bgcolor(buy_signal ? color.green : na, transp=90)
RSI + EMA + WMA + SMC + FVG + CVDĐây là một chỉ báo kết hợp RSI, EMA, WMA, SMC, FVG và CVD để xác định tín hiệu giao dịch chính xác hơn. nbt
RSI + EMA + WMA + SMC + FVG + CVDĐây là một chỉ báo kết hợp RSI, EMA, WMA, SMC, FVG và CVD để xác định tín hiệu giao dịch chính xác hơn
FractalsThis indicator is based on the classic Williams Fractals concept. It scans the price chart to identify potential reversal points by looking for fractal patterns in the highs and lows. Here's what it does:
Customizable Periods: You can set the number of bars (using the n input) that the indicator examines on both sides of a central bar.
Up Fractals: An up fractal is detected when the current bar's high is higher than the highs of the preceding n bars, and it is also confirmed by additional conditions checking the following bars.
Down Fractals: Similarly, a down fractal is identified when the current bar's low is lower than the lows of the preceding n bars, with further validation from subsequent bars.
Visual Markers: Once identified, up fractals are marked by a small upward-pointing triangle above the bar, while down fractals are marked by a small downward-pointing triangle below the bar. The shapes are kept minimal (using size.auto) to avoid cluttering the chart.
This setup helps traders spot potential support and resistance areas, providing visual cues for possible trend reversals.