Angkol StrategyKey Components:
Time Zones:
Kill Zone: A specific time window during which the strategy tracks price action for potential signals.
You can modify the start and end time of this kill zone with a time zone offset for your preferred market hours (e.g., New York).
Entry Restriction Zone: A time window during which entry signals are restricted (i.e., no entries are allowed). You can modify the start and end time for this restriction.
Trade Biases:
Sell Bias: Occurs when the price breaks the previous day's kill zone high.
Buy Bias: Occurs when the price breaks the previous day's kill zone low.
Trade Signals:
Bearish Signal (Sell): Triggered when:
A Bearish Engulfing pattern occurs (where the current bar closes lower than it opens and it engulfs the previous bar).
A Bearish Order Block forms (where the previous candle is bullish and the current one closes below the previous low).
The price breaks the previous day’s kill zone high.
The signal is outside the entry restriction window.
Bullish Signal (Buy): Triggered when:
A Bullish Engulfing pattern occurs (where the current bar closes higher than it opens and it engulfs the previous bar).
A Bullish Order Block forms (where the previous candle is bearish and the current one closes above the previous high).
The price breaks the previous day’s kill zone low.
The signal is outside the entry restriction window.
Plotting:
Kill Zone Background: The chart’s background turns blue during the kill zone to visually highlight the target time window.
Buy/Sell Signals: Buy and sell signals are marked on the chart using small upward and downward labels.
Previous Day's High/Low: The high and low from the previous day’s kill zone are plotted on the chart for reference.
Alerts:
Alerts for Buy and Sell Signals: Alerts are triggered when either buy or sell signals are generated, based on your conditions.
Customization:
Time Zone Offset: Adjusts the entire strategy to the desired time zone (e.g., New York time).
Kill Zone: You can adjust the start and end times of the kill zone, reflecting the active market session.
Entry Restriction Window: You have control over the start and end times of the entry window, ensuring no trades are executed during this period.
Goal:
Your strategy aims to capture buy or sell opportunities after the price breaks key levels (previous day’s high/low) within specific time windows (the kill zone and entry restriction zone). You focus on order block and engulfing candle patterns to validate entries.
תבניות גרפים
prevdayhighlowstrategyjjjj.bjbioıbioıbgiıgbiıuhbi.oujhbioujhbioh
dfisşd,fisşd,fisşd,fisşd,fisdşf,sidfşs,id4
sd,ifsd,fisdşf,isdfşsdfs
MACD Histogram Strategy by Narsa MACD Histogram Strategy Description:
This strategy uses the MACD histogram to identify potential buy and sell signals based on momentum shifts in the market. It operates as follows:
- **Entry Signal (Long):** The strategy enters a long position when the MACD histogram crosses above the zero line, indicating a shift towards bullish momentum.
- **Exit Signal:** The strategy exits the long position when the MACD histogram crosses below the zero line, suggesting a potential shift towards bearish momentum or weakening bullish momentum.
The strategy aims to capitalize on momentum trends by entering trades when upward momentum strengthens and exiting when it weakens. It is designed to work best in trending markets, where momentum shifts are more pronounced.
NY Gold Trading EATrade Gold it seems like it is acting in the direction of a moving trade. Now that there is a gist of it running parallel to it
B20 by Nulytrading The "B20" defines the intraday trend. It displays 20 candles on the M15 timeframe from 7:00 AM to 12:00 PM. When the price breaks above the highest point or below the lowest point of these 20 candles, it is called a "B20 breakout." The price tends to move toward Fibonacci extension levels of 1.618, 2.618, and 4.238, also referred to as B1, B2, and B3 levels. These levels represent reaction zones, support, and resistance areas, helping to determine take-profit points. Additionally, this indicator assists in identifying bottoms and tops, reducing the risk of significant losses. Currently, this indicator is best used exclusively with the XAUUSD (gold) pair. Combine it with key levels, trendlines, and order clusters to enhance its effectiveness.
Biên 20 xác định xu hướng trong ngày. Hiển thị 20 nến khung m15 từ 7h sáng đến 12h trưa. Khi giá phá vỡ điểm cao nhất hoặc thấp nhất của trong 20 cây nến đó, gọi là phá vỡ biên. Giá có xu hướng tiến đến các mốc fibo mở rộng 1,618 và 2,618 và 4,238. Còn gọi là mốc B1, B2, B3. Các B này hiển thị vùng phản ứng, kháng hỗ. Xác định điểm take profit. Và còn giúp bạn bắt đáy, đỉnh đỡ cháy hơn, hiện chỉ báo này chỉ nên sử dụng với sản phẩm XAUUSD (vàng). Kết hộ với key level, trendline, bộ tố lệnh để tăng hiệu quả.
wuyx 59 imbwuy59 dùng break nến,
ema 5
ema 9
FVG
nến
Chủ yếu là cây nến đó phải tạo dc giao cắt của 2 EMA 5-9 thì xác suất win cao, hoặc nằm 1 bên của 2 EMA đang có độ dốc
Simple Reversal Point - v2感谢原作者 @Dreadblitz , 我在其脚本之上进行了优化
原脚本链接:
1. 不使用当前k线以避免重绘或者警告频繁触发且与绘图不一致的情况
2. 增加连续三根k线的触发反转条件
3. 使信号交替进行, 不会出现连续的信号
Thanks to the original author @Dreadblitz I optimized it on top of his script
Original script link:
1. Do not use the current K-line to avoid redrawing or warnings that are triggered frequently and are inconsistent with the drawing.
2. Add triggering reversal conditions for three consecutive K lines
3. Make the signals alternate and there will be no continuous signals.
Danish Algo - BTC V- 1.2.1 //@version=6
strategy('Danish Algo - BTC V- 1.2.1 ', overlay = true)
// Input periods for top and bottom signals
bottom_period = input(14, title = 'Bottom Period')
top_period = input(14, title = 'Top Period')
// Default target points at 500, but adjustable
target_points = input(500, title = 'Target Points (Default 500)')
stop_loss_points = input(0, title = 'Additional SL Points (0 for 2-candle SL only)') // Additional points for SL adjustment
// Calculate bottom and top conditions
bottom_condition = low < ta.lowest(low , bottom_period) and low <= ta.lowest(low , bottom_period)
top_condition = high > ta.highest(high , top_period) and high >= ta.highest(high , top_period)
// Signal times since last condition met
bottom_signal = ta.barssince(bottom_condition)
top_signal = ta.barssince(top_condition)
// BUY-SELL Conditions
Buy = ta.crossover(bottom_signal, top_signal)
Sell = ta.crossunder(bottom_signal, top_signal)
// Define stop loss and target levels based on 2 candles back high/low
buy_sl = Buy ? low - stop_loss_points : na // Buy पर 2 candles पीछे का low SL के साथ custom adjustment
buy_target = Buy ? close + target_points : na // Fixed 500 points TP for Buy (adjustable)
sell_sl = Sell ? high + stop_loss_points : na // Sell पर 2 candles पीछे का high SL के साथ custom adjustment
sell_target = Sell ? close - target_points : na // Fixed 500 points TP for Sell (adjustable)
// Signal cancellation logic
if Buy and strategy.position_size < 0 // Close Sell if Buy signal appears
strategy.close('Sell')
if Sell and strategy.position_size > 0 // Close Buy if Sell signal appears
strategy.close('Buy')
// Strategy Entry and Exit for Buy
if Buy
strategy.entry('Buy', strategy.long)
strategy.exit('Sell Target/SL', 'Buy', stop = buy_sl, limit = buy_target)
// Strategy Entry and Exit for Sell
if Sell
strategy.entry('Sell', strategy.short)
strategy.exit('Buy Target/SL', 'Sell', stop = sell_sl, limit = sell_target)
// Plot Buy/Sell Signals on chart
plotshape(Buy, title = 'BUY', location = location.belowbar, color = color.new(color.green, 0), style = shape.labelup, text = 'BUY', textcolor = color.new(color.black, 0))
plotshape(Sell, title = 'SELL', location = location.abovebar, color = color.new(color.red, 0), style = shape.labeldown, text = 'SELL', textcolor = color.new(color.black, 0))
// Background Color for Buy and Sell Zones
bgcolor(Buy ? color.new(color.blue, 85) : Sell ? color.new(color.red, 85) : na)
// Alert Conditions for Buy and Sell
alertcondition(Buy, title = 'Buy Signal', message = 'Buy signal detected')
alertcondition(Sell, title = 'Sell Signal', message = 'Sell signal detected')
Monthly Vertical Lines//@version=5
indicator("Monthly Vertical Lines", overlay=true)
month_change = (month != month ) // Detects a new month
if month_change
line.new(x1=bar_index, y1=na, x2=bar_index, y2=na, extend=extend.both, color=color.gray, style=line.style_dotted, width=1)
Monthly Vertical Lines//@version=5
indicator("Monthly Vertical Lines", overlay=true)
month_change = (month != month ) // Detects a new month
if month_change
line.new(x1=bar_index, y1=na, x2=bar_index, y2=na, extend=extend.both, color=color.gray, style=line.style_dotted, width=1)
CandelaCharts - Swing Failure Pattern (SFP)# SWING FAILURE PATTERN
📝 Overview
The Swing Failure Pattern (SFP) indicator is designed to identify and highlight Swing Failure Patterns on a user’s chart. This pattern typically emerges when significant market participants generate liquidity by driving price action to key levels. An SFP occurs when the price temporarily breaks above a resistance level or below a support level, only to quickly reverse and return within the previous range. These movements are often associated with stop-loss hunting or liquidity grabs, providing traders with potential opportunities to anticipate reversals or key market turning points.
A Bullish SFP occurs when the price dips below a key support level, triggering stop-loss orders, but then swiftly reverses upward, signaling a potential upward trend or reversal.
A Bearish SFP happens when the price spikes above a key resistance level, triggering stop-losses of short positions, but then quickly reverses downward, indicating a potential bearish trend or reversal.
The indicator is a powerful tool for traders, helping to identify liquidity grabs and potential reversal points in real-time. Marking bullish and bearish Swing Failure Patterns on the chart, it provides clear visual cues for spotting market traps set by major players, enabling more informed trading decisions and improved risk management.
📦 Features
Bullish/Bearish SFPs
Styling
⚙️ Settings
Length: Determines the detection length of each SFP
Bullish SFP: Displays the bullish SFPs
Bearish SFP: Displays the bearish SFPs
Label: Controls the size of the label
⚡️ Showcase
Bullish
Bearish
Both
📒 Usage
The best approach is to combine a few complementary indicators to gain a clearer market perspective. This doesn’t mean relying on the Golden Cross, RSI divergences, SFPs, and funding rates simultaneously, but rather focusing on one or two that align well in a given scenario.
The example above demonstrates the confluence of a Bearish Swing Failure Pattern (SFP) with an RSI divergence. This combination strengthens the signal, as the Bearish SFP indicates a potential reversal after a liquidity grab, while the RSI divergence confirms weakening momentum at the key level. Together, these indicators provide a more robust setup for identifying potential market reversals with greater confidence.
🚨 Alerts
This script provides alert options for all signals.
Bearish Signal
A bearish signal is triggered when a Bearish SFP is formed.
Bullish Signal
A bullish signal is triggered when a Bullish SFP is formed.
⚠️ Disclaimer
Trading involves significant risk, and many participants may incur losses. The content on this site is not intended as financial advice and should not be interpreted as such. Decisions to buy, sell, hold, or trade securities, commodities, or other financial instruments carry inherent risks and are best made with guidance from qualified financial professionals. Past performance is not indicative of future results.
SMA(20,50,100,200) - cryptoMittalSMA(20,50,100,200) - cryptoMittal. Aims to provide simple moving averages for various candle spans
Non-Lagging Indicator: EMA + TSI BY UTTAM PARAMANIK//@version=5
indicator("Non-Lagging Indicator: EMA + TSI", overlay=true)
// Parameters for the EMA
fastLength = input.int(9, title="Fast EMA Period", minval=1)
slowLength = input.int(21, title="Slow EMA Period", minval=1)
// Parameters for the TSI
tsiFastLength = input.int(13, title="TSI Fast Length", minval=1)
tsiSlowLength = input.int(25, title="TSI Slow Length", minval=1)
tsiSignalLength = input.int(7, title="TSI Signal Length", minval=1)
// EMA Calculation
fastEMA = ta.ema(close, fastLength)
slowEMA = ta.ema(close, slowLength)
// TSI Calculation
delta = close - close
doubleSmoothDelta = ta.ema(ta.ema(delta, tsiFastLength), tsiSlowLength)
doubleSmoothAbsDelta = ta.ema(ta.ema(math.abs(delta), tsiFastLength), tsiSlowLength)
tsi = 100 * doubleSmoothDelta / doubleSmoothAbsDelta
tsiSignal = ta.ema(tsi, tsiSignalLength)
// Plot EMAs
plot(fastEMA, color=color.blue, title="Fast EMA")
plot(slowEMA, color=color.orange, title="Slow EMA")
// Plot TSI and Signal
plot(tsi, color=color.green, title="True Strength Indicator")
plot(tsiSignal, color=color.red, title="TSI Signal")
// Buy and Sell Conditions
buyCondition = ta.crossover(fastEMA, slowEMA) and ta.crossover(tsi, tsiSignal)
sellCondition = ta.crossunder(fastEMA, slowEMA) and ta.crossunder(tsi, tsiSignal)
// Plot Buy and Sell Signals
plotshape(buyCondition, color=color.green, style=shape.labelup, location=location.belowbar, text="BUY")
plotshape(sellCondition, color=color.red, style=shape.labeldown, location=location.abovebar, text="SELL")
nifty supertrend tritonTrend based Strategy based on EMA , ATR and supertrend . Currently being used and testing on Nifty and Banknifty with adjusted parameters .
Do backtest before taking any trade
INGMorelKillzone con Tendencia H1 y Análisis de Sentimiento
Este indicador te ayuda a identificar oportunidades de trading en la sesión de Nueva York (Killzone) basándose en la tendencia principal de H1. El color de fondo cambia según la tendencia (verde para alcista, rojo para bajista), y se combina con un filtro de sentimiento del mercado utilizando el RSI y el volumen. Además, muestra las líneas de HMA en M15 para ayudarte a identificar las entradas en el momento adecuado. ¡Optimiza tus decisiones de trading con este indicador visual y dinámico!
Nitesh - Buyside & Sellside LiquidityLiquidity Zones
Buyside Liquidity Zones: Enables display of the buyside liquidity zones.
Margin: Sets margin/sensitivity for the liquidity zone boundaries.
Color: Color option for buyside liquidity levels & zones.
Sellside Liquidity Zones: Enables display of the sellside liquidity zones.
Margin: Sets margin/sensitivity for the liquidity zone boundaries.
Color: Color option for sellside liquidity levels & zones.
🔹 Liquidity Voids
Liquidity Voids: Enables display of both bullish and bearish liquidity voids.
Label: Enables display of a label indicating liquidity voids.
Comprehensive Chart AnalysisThis indicator provides a comprehensive overview of the current market situation by analyzing various technical indicators and patterns. It aims to help traders identify potential trading opportunities by presenting key insights in an organized table.
Features:
Trend Analysis: Identifies the short-term, medium-term, and long-term trends based on closing prices.
Divergence Detection: Detects bullish and bearish divergences between price and RSI, MACD, and Stochastic Oscillator.
Support/Resistance Zones: Calculates and displays potential support and resistance zones based on swing highs/lows and ATR.
Demand/Supply Zones: Identifies potential demand and supply zones based on price action and volume.
Volume Analysis: Analyzes volume changes to identify potential breakouts or trend confirmations.
Candlestick Patterns: Detects bullish and bearish engulfing patterns.
Moving Averages: Includes analysis of 20, 50, and 200 period moving averages and crossovers.
Bollinger Bands: Detects breakouts from Bollinger Bands.
ADX: Calculates the Average Directional Index (ADX) to assess trend strength.
Table Display: Presents the analysis results in a clear and organized table, with customizable position.
Settings:
Analysis Periods (int): The number of bars to look back for analysis (default: 200).
ATR Multiplier (float): Multiplier for ATR used in calculating support/resistance zones (default: 1.5).
Demand Zone Length (int): The number of bars to consider for demand/supply zone calculations (default: 10).
Volume Threshold (float): The multiplier for average volume used to identify significant volume increases (default: 1.2).
Table Position (string): Allows you to choose the position of the table on the chart.
How it Works:
Identifying Trends: Show how the indicator identifies upward, downward, and neutral trends on different timeframes.
Spotting Divergences: Illustrate examples of bullish and bearish divergences detected by the script.
Support/Resistance Zones: Show how the indicator plots support and resistance zones and how price interacts with them.
Demand/Supply Zones: Provide examples of how the indicator identifies demand and supply zones.
Analyzing Volume: Demonstrate how the indicator analyzes volume in relation to price movements.
Detecting Candlestick Patterns: Show examples of how the script identifies bullish and bearish engulfing patterns.
Moving Average Analysis: Illustrate how the indicator uses moving averages to identify potential trend changes.
Bollinger Band Breakouts: Show examples of how the script detects breakouts from Bollinger Bands.
ADX Interpretation: Explain how to interpret the ADX values provided by the indicator.
Important Notes:
This indicator is intended for informational and educational purposes only. It should not be considered financial advice.
The effectiveness of the signals provided by this indicator may vary depending on market conditions and other factors.
Always conduct your own research and use proper risk management techniques before making any trading decisions.
Backtest this indicator on historical data to evaluate its performance before using it for live trading.
13, 21, 34 SMAs tradewithshamincluded 13,21 and 34 simple moving average for swing trade. use it in day candle
RelVolRelative Volume is an indicator of current volume divided by average volume over the lats 10 candle sticks.