pinstraticoestrategia de compra y venta
................
.............
..........
........
.....
...
..
תבניות גרפים
Multi-Stock Cross SignalsBased on the high probability of future trading, use premium and discount to increase accuracy.
Buy Signal with FVG Confirmation (1h,15m,5m)Key Changes:
FVG Conditions Added to buySignal:
The buy signal now requires FVGs on all three timeframes (1h, 15m, 5m) in addition to your original criteria.
buySignal = ... and fvg1h and fvg15m and fvg5m
Simplified FVG Detection:
The detectFVG function now only returns the fvgBullish boolean (no need to return price levels).
How to Use:
Apply to 1-Hour Chart:
The script works best on a 1-hour chart since it combines daily, hourly, and lower timeframe (15m/5m) logic.
Interpret Signals:
A green triangle appears below the price bar when all conditions align, including FVGs on 1h, 15m, and 5m.
Use the shaded FVG zones (teal, orange, purple) to visually confirm gaps.
Set Alerts:
Create an alert in TradingView to notify you when the buySignal triggers.
Important Notes:
Multi-Timeframe Limitations:
Lower timeframe FVGs (15m/5m) are fetched using request.security, which may cause slight repainting on the 1-hour chart.
FVGs are evaluated based on the most recent completed bar in their respective timeframes.
Strategy Strictness:
Requiring FVGs on three timeframes makes the signal very selective. Adjust the logic (e.g., fvg1h or fvg15m) if you prefer fewer restrictions
candle close alarmA simple Alarm to each candle close, helpfull to keep your eye in the right moment to open a position.
VWAP Trading Signalsシグナルの動作イメージ
チャートに表示される内容:
VWAPライン(オレンジ)。
買いエントリー(緑ラベル)と売りエントリー(赤ラベル)。
利確または損切時のラベル。
シグナル例:
価格がVWAPを下回ると、BUYシグナル。
価格がVWAPを上回ると、SELLシグナル。
利確または損切条件を満たすと対応するシグナルを表示。
Blue & White 4 MA 3 SMA w/Buy & Sell at crossover IndicatorKeeping this simple. I have used this on the 1HR and 4HR, however lower time frames could be good. The indicator works on the premise of a fast 4MA crossing over a 3 SMA putting out buy and sell signals at those crossovers. I have a 15 and 50 ma to use as direction cutter lines. Wherein "buys" ONLY qualify when above said 15 and/or 50 ma, and "Sells" ONLY qualify when signal is below 15 and/or 50 ma. The buy and sell price is indicated by the "Dotted" Line whereas the flag is there merely to indicate the line itself. As usual and with anything and everything consolidation is a killer...
Engulfing and ATR-Imbalance [odnac]This Pine Script indicator combines two powerful concepts—Engulfing Candlestick Patterns and ATR Imbalance—to identify potential market reversal points with increased precision.
Engulfing Candlestick Patterns:
Bullish Engulfing: Identified when a candle closes higher than it opens, and it completely engulfs the previous candle (previous close is lower than the current open, and previous high is lower than the current close).
Bearish Engulfing: Identified when a candle closes lower than it opens, and it completely engulfs the previous candle (previous close is higher than the current open, and previous low is higher than the current close).
Bar Coloring: These patterns are highlighted with a customizable color (light gray by default) to make them easily identifiable.
ATR-Based Imbalance:
The Average True Range (ATR) is used to measure market volatility, and this script checks if the current candle’s range (difference between high and low) exceeds a defined multiple of the ATR, indicating a possible imbalance.
Imbalance Detection: If the current candle’s range is greater than ATR * imbalance multiplier (default multiplier: 1.5), it is marked as an ATR imbalance.
Bar Coloring: Candles with a significant imbalance (greater range than the ATR-based threshold) are highlighted in yellow, indicating an outlier or extreme price movement.
Engulfing + ATR Imbalance:
When both a Bullish Engulfing pattern and an ATR Imbalance are detected, a green triangle up is plotted below the bar, signaling a potential bullish reversal.
Conversely, when both a Bearish Engulfing pattern and an ATR Imbalance occur, a red triangle down is plotted above the bar, signaling a potential bearish reversal.
User Inputs:
Engulfing Plot: Enable or disable the plotting of Engulfing Candles.
ATR Length: Set the period used to calculate the ATR (default is 5).
Imbalance Multiplier: Adjust the multiplier to define the threshold for ATR imbalance detection (default is 1.5).
Bar Colors: Customizable color for both Engulfing candles and Imbalance candles.
Engulfing & Imbalance Plot: Enable or disable plotting of the combined conditions (Engulfing + ATR Imbalance) with arrows.
How This Indicator Helps:
By combining price action patterns with volatility analysis, this indicator highlights high-probability reversal points where significant price movement (imbalance) coincides with a clear Engulfing pattern. Traders can use these signals to time entries or exits based on both price action and market volatility.
Strategy EngulfingThis script implements a trading strategy that identifies "engulfing" candlestick patterns and uses the Supertrend indicator to enter and exit trades.
PP High Low + SMAsHai,
Here i alter an indicator which have pivot point high low with alteration and additional SMA With different period
Ebuka Moving Average Crossover Strategy with Volume FilterThe provided Pine Script defines a trading strategy that can generate buy and sell signals on TradingView charts. If you'd like to automate the strategy to trade on Binance while you sleep, follow these steps:
Improved Scalping Strategy with Alerts//@version=5
indicator("Improved Scalping Strategy with Alerts", overlay=true)
// EMA Settings for Scalping
emaLength = input.int(9, title="EMA Length")
emaValue = ta.ema(close, emaLength)
plot(emaValue, title="EMA", color=color.blue, linewidth=2)
// Volume Analysis for Scalping
volumeThreshold = input.float(2.0, title="Volume Threshold")
volumeSignal = volume > ta.sma(volume, 10) * volumeThreshold
bgcolor(volumeSignal ? color.new(color.blue, 90) : na, title="Volume Signal")
// RSI Settings for Scalping
rsiLength = input.int(9, title="RSI Length")
rsiValue = ta.rsi(close, rsiLength)
overbought = 70
oversold = 30
plot(rsiValue, title="RSI", color=color.purple, linewidth=2)
hline(overbought, "Overbought", color=color.red)
hline(oversold, "Oversold", color=color.green)
// MACD Settings for Scalping
fastLength = input.int(6, title="MACD Fast Length")
slowLength = input.int(13, title="MACD Slow Length")
signalSmoothing = input.int(5, title="MACD Signal Smoothing")
= ta.macd(close, fastLength, slowLength, signalSmoothing)
plot(macdLine, title="MACD Line", color=color.blue, linewidth=1)
plot(signalLine, title="Signal Line", color=color.red, linewidth=1)
// Strong Bullish and Bearish Conditions for Scalping
strongBullish = rsiValue > 70 and macdLine > signalLine and close > emaValue and volumeSignal
strongBearish = rsiValue < 30 and macdLine < signalLine and close < emaValue and volumeSignal
// Buy/Sell Signals for Scalping
buySignal = strongBullish
sellSignal = strongBearish
// Plot Buy/Sell Signals on Chart
plotshape(series=buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="LONG")
plotshape(series=sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SHORT")
// Alerts for Scalping
alertcondition(buySignal, title="Long Trade Alert", message="Strong Bullish Signal: Consider LONG Trade")
alertcondition(sellSignal, title="Short Trade Alert", message="Strong Bearish Signal: Consider SHORT Trade")
// Additional Alerts for Confirmation
confirmationBullish = ta.crossover(macdLine, signalLine) and rsiValue > 50 and close > emaValue and volumeSignal
confirmationBearish = ta.crossunder(macdLine, signalLine) and rsiValue < 50 and close < emaValue and volumeSignal
alertcondition(confirmationBullish, title="Confirmation Bullish Alert", message="Confirmation Bullish Signal: Consider LONG Trade")
alertcondition(confirmationBearish, title="Confirmation Bearish Alert", message="Confirmation Bearish Signal: Consider SHORT Trade")
Indecisive Candle Buy/Sell Signals by VIKKAS VERMAUsing Hieken Ashi candle sticks @ 15 mins timeframe
9-20 EMA Crossover with TP and SL9-20 EMA Crossover: This script tracks the crossover of the 9-period EMA and the 20-period EMA.
When the 9 EMA crosses above the 20 EMA, a buy signal is triggered.
When the 9 EMA crosses below the 20 EMA, a sell signal is triggered.
Take Profit and Stop Loss Levels:
The take profit for a long position is set at 3% above the entry price (close * 1.03).
The stop loss for a long position is set at 1% below the entry price (close * 0.99).
The take profit for a short position is set at 3% below the entry price (close * 0.97).
The stop loss for a short position is set at 1% above the entry price (close * 1.01).
Leverage: The strategy uses 20x leverage for both long and short positions (leverage=20).
Alerts: Alerts are set up for the buy signal when the 9 EMA crosses above the 20 EMA and the sell signal when the 9 EMA crosses below the 20 EMA. These alerts can be used with a webhook to trigger trades on Binance Futures.
Strategy:
For long trades: The strategy enters a long position and sets a take profit at 3% above the entry price and a stop loss at 1% below the entry price.
For short trades: The strategy enters a short position and sets a take profit at 3% below the entry price and a stop loss at 1% above the entry price.
SQZMOM_LB StrategyUtiliza el indicador sqzmom, abriendo operaciones cuando el indicador cambia al color 3 y cerrandolas cuando cambia al color 1
Institutional Momentum IndicatorThe Institutional Momentum Indicator is a simple yet powerful tool designed for traders seeking clarity and precision in their trading decisions. This indicator combines key technical analysis elements to deliver actionable buy and sell signals:
Buy and Sell Signals: Clearly marked on the chart when the price crosses above or below the Exponential Moving Average (EMA), signaling potential upward or downward momentum.
Volume Spike Detection: Enhances reliability by considering high-volume activity, often indicative of institutional participation.
EMA Trend Analysis: Tracks price momentum with a customizable EMA length.
Visual Highlights: Background colors (green for buy and red for sell) make it easy to identify trading opportunities at a glance.
Alerts Ready: Stay informed with built-in alerts for both buy and sell signals.
This indicator is optimized for traders looking to capitalize on momentum-based strategies while simplifying decision-making. Perfect for intraday and swing trading across various markets.
New Higher High - Dynamic TimeframeThis indicator allows you to see when the chart is making higher highs. Hope you enjoy and find some value from this indicator.
APE1 - Smart Money Concepts and EMAs This indicator is based on the SMC of Lux ALGO but I have added the exponential emas 9, 20, 50, 100 and 200, you can configure it as you like, including labels, prices and discount zones, balance and premium. IT WORKS IN ALL TIMEFRAMES.
9/21 EMA Support & Resistance By DSWIf you're looking to plot two lines on an EMA crossover strategy, you can do that by using two EMAs and then plotting them on the chart. You can also highlight the crossover signals where one EMA crosses over or under the other