Multi-Signal + ICT Concepts (HTF/FVG/Killzone/BOS)-CONSERVATIVEThis was made my chatgpt and my knowledgeable prompts
指标和策略
EMA CrossoverThis script plots the 5 EMA (green), 13 EMA (yellow), and 26 EMA (red) on the chart. It also highlights bullish and bearish crossovers with labels for easier identification. Let me know if you need further customizations!
3 EMAs with Custom LengthsThis code plots three Exponential Moving Averages (EMAs) on a price chart. EMAs are used to smooth price data and highlight trends.
Inputs for EMA lengths: The user can specify the lengths (e.g., 10, 20, 50 periods) of the three EMAs through input fields. By default, the lengths are set to 10, 20, and 50.
EMA Calculation: For each of the specified lengths, the script calculates the EMA based on the closing prices of the asset.
Plotting the EMAs: The three EMAs are drawn on the price chart in different colors, so users can easily compare them. These moving averages help in spotting trend direction, crossovers, and potential trading signals.
The overall purpose of the code is to give the user a visual representation of three EMAs on their price chart, which can be customized based on their trading strategy.
zigzag11Library "zigzag11"
zigzag(_low, _high, depth, deviation, backstep)
Parameters:
_low (float)
_high (float)
depth (int)
deviation (int)
backstep (int)
Monthly Short Entry LevelsBest used on AUDUSD.
This indicator is a very powerful tool. Enjoy this free tool that can help profit.
Previous 1 Day LevelsGreen Line: Represents the previous day's high price.
Blue Line: Represents the previous day's close price.
Red Line: Represents the previous day's low price.
21/55 MA with RSI Crossover21 and 55 ma with rsi crossover. Buy when there is moving average cross over and sell when price moves down from last 55 day moving average or RSI crosses under its moving average.
Price Cross SMA-EMA-WMA By Emanuele Sabatino v6.0Price Cross SMA-EMA-WMA By Emanuele Sabatino v6.0
Mostra il cross tra il prezzo e due medie mobili a scelta. E' possibile confermare il segnale con un filtro aggiuntivo di ATR per evitare il rumore
Futures Screener with RSI, ADX, SMA, and Monthly HighsFutures Screener with RSI, ADX, SMA, and Monthly Highs
Vektor-Kerzen//@version=5
indicator("Vektor-Kerzen", overlay=true)
// Berechnung der Vektorkerzen
openVektor = (open + close) / 2
closeVektor = (high + low) / 2
// Farbe für die Kerzen
col = closeVektor > openVektor ? color.green : color.red
// Vektorkerzen zeichnen
plotcandle(openVektor, high, low, closeVektor, color=col, wickcolor=color.gray, bordercolor=col)
Vektor-Kerzen//@version=5
indicator("Vektor-Kerzen", overlay=true)
// Berechnung der Vektorkerzen
openVektor = (open + close) / 2
closeVektor = (high + low) / 2
// Farbe für die Kerzen
col = closeVektor > openVektor ? color.green : color.red
// Vektorkerzen zeichnen
plotcandle(openVektor, high, low, closeVektor, color=col, wickcolor=color.gray, bordercolor=col)
Vektor-Kerzen//@version=5
indicator("Vektor-Kerzen", overlay=true)
// Berechnung der Vektorkerzen
openVektor = (open + close) / 2
closeVektor = (high + low) / 2
// Farbe für die Kerzen
col = closeVektor > openVektor ? color.green : color.red
// Vektorkerzen zeichnen
plotcandle(openVektor, high, low, closeVektor, color=col, wickcolor=color.gray, bordercolor=col)
Günlük İşlem Stratejisi - Güncellenmiş//@version=5
indicator("Günlük İşlem Stratejisi - Güncellenmiş", overlay=true)
// Parametreler
rsiLength = input.int(14, title="RSI Periyodu")
rsiOverbought = input.int(70, title="RSI Aşırı Alım")
rsiOversold = input.int(30, title="RSI Aşırı Satım")
macdShortTerm = input.int(12, title="MACD Kısa Vadeli MA")
macdLongTerm = input.int(26, title="MACD Uzun Vadeli MA")
macdSignalTerm = input.int(9, title="MACD Signal Periyodu")
bbLength = input.int(20, title="Bollinger Band Periyodu")
bbStdDev = input.float(2.0, title="Bollinger Band Std Dev")
// RSI Hesaplaması
rsi = ta.rsi(close, rsiLength)
// MACD Hesaplaması
= ta.macd(close, macdShortTerm, macdLongTerm, macdSignalTerm)
// Bollinger Bands Hesaplaması
= ta.bb(close, bbLength, bbStdDev)
// Alım (Long) ve Satış (Short) Sinyalleri
longSignal = (rsi < rsiOversold) and (macdLine > signalLine) and (close < bbLower)
shortSignal = (rsi > rsiOverbought) and (macdLine < signalLine) and (close > bbUpper)
// Alım ve Satış İşlem Sinyalleri Gösterimi
plotshape(longSignal, title="Long (Alış) Sinyali", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(shortSignal, title="Short (Satış) Sinyali", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// İşlem Sinyali İçin Sesli Uyarı
alertcondition(longSignal, title="Long Sinyali", message="Alım Sinyali")
alertcondition(shortSignal, title="Short Sinyali", message="Satış Sinyali")
Bollinger Band Touch with SMI and MACD AngleThis strategy is intended for short timeframes to enter and exit when price touches lower and upper bollinger bands with confluence on RSI and MACD
Hammer & Co.It shows Hammers and all other similar candles.
It even detects a hammer when it is made out of two candles.
EMA based filter is also enables if required.
NKC-INTARDAY BUY AND SELL IN THIS AVERAGE OF high ,low and lose of day ,week and monthly are acts as support and resistace ...if day average line close above week aveargae line its buy signal and like is ts opposite to the sell signal
CandelaCharts - Volume Imbalance (VI) 📝 Overview
Volume Imbalance occurs when there’s a noticeable gap between the bodies of two consecutive candlesticks, with no overlap between them. While the wicks of the candles might intersect, the candle bodies remain entirely separate. This phenomenon often signifies that the algorithm driving market activity did not evenly distribute prices between these two levels, leaving behind a small Volume Imbalance (VI).
A Bullish Volume Imbalance forms when the body of a green candlestick gaps above the previous candle’s body, with no overlap, indicating strong upward momentum and insufficient sell-side liquidity.
A Bearish Volume Imbalance forms when the body of a red candlestick gaps below the previous candle’s body, with no overlap, signaling intense downward pressure and a lack of buy-side liquidity.
This indicator can automatically identify volume imbalances by scanning candlestick patterns and detecting gaps between consecutive candle bodies. These volume imbalances act as price magnets, often attracting the market back to fill the gap before resuming its original direction. Recognizing and leveraging these gaps can be a powerful tool in technical analysis for predicting price movements.
📦 Features
MTF
Mitigation
Consequent Encroachment
Threshold
Hide Overlap
Advanced Styling
⚙️ Settings
Show: Controls whether VIs are displayed on the chart.
Show Last: Sets the number of VIs you want to display.
Length: Determines the length of each VI.
Mitigation: Highlights when a VI has been touched, using a different color without marking it as invalid.
Timeframe: Specifies the timeframe used to detect VIs.
Threshold: Sets the minimum gap size required for VI detection on the chart.
Show Mid-Line: Configures the midpoint line's width and style within the VI. (Consequent Encroachment - CE)
Show Border: Defines the border width and line style of the VI.
Hide Overlap: Removes overlapping VIs from view.
Extend: Extends the VI length to the current candle.
Elongate: Fully extends the VI length to the right side of the chart.
⚡️ Showcase
Simple
Mitigated
Bordered
Consequent Encroachment
Extended
🚨 Alerts
This script provides alert options for all signals.
Bearish Signal
A bearish alert triggers when a red candlestick gaps below the previous body, signaling downward pressure.
Bullish Signal
A bullish alert triggers when a green candlestick gaps above the previous body, indicating upward momentum.
⚠️ 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.
NKC-INTRADAY BUY and SELL signalcatch the price movement when average of high,low and close of day,week and monthly..in that levels act as a support and and resisstance ....when ever day average price close above week price its give buy signal and just opposite to the sell signal..
CandelaCharts - Opening Gap (OG) 📝 Overview
The ICT (Inner Circle Trader) Opening Gap represents the price difference between the previous trading session's closing price and the current session's opening price. This gap serves as a key indicator of market sentiment and can offer valuable clues about the market's potential direction throughout the trading day.
A bullish Opening Gap forms when the market opens higher than the previous session's close, signaling strong buying interest or positive sentiment heading into the new session
A bearish Opening Gap occurs when the market opens lower than the previous session's close, reflecting heightened selling pressure or negative sentiment among market participants
The Opening Gap is significant as it often establishes the market's tone for the trading session. Accurately interpreting this gap enables traders to make informed decisions about when to enter or exit positions. Serving as a gauge of market strength or weakness, the gap provides a clear signal of whether the market is likely to trend upward or downward during the day.
📦 Features
MTF
Mitigation
Consequent Encroachment
Threshold
Hide Overlap
Advanced Styling
⚙️ Settings
Show: Controls whether OGs are displayed on the chart.
Show Last: Sets the number of OGs you want to display.
Length: Determines the length of each OG.
Mitigation: Highlights when an OG has been touched, using a different color without marking it as invalid.
Timeframe: Specifies the timeframe used to detect OGs.
Threshold: Sets the minimum gap size required for OG detection on the chart.
Show Mid-Line: Configures the midpoint line's width and style within the OG. (Consequent Encroachment - CE)
Show Border: Defines the border width and line style of the OG.
Hide Overlap: Removes overlapping OGs from view.
Extend: Extends the OG length to the current candle.
Elongate: Fully extends the OG length to the right side of the chart.
⚡️ Showcase
Simple
Mitigated
Bordered
Consequent Encroachment
Extended
🚨 Alerts
This script provides alert options for all signals.
Bearish Signal
A bearish signal is triggered when the price opens lower than the previous session's close.
Bullish Signal
A bullish signal is triggered when the price opens higher than the previous session's close.
⚠️ 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.
Volume Analyzer ScreenerAdd multiple of this indicator to your chart, find select pairs you want to trade mainly. This screener will indicate if there is a sudden volume movement in any of those pairs.
Candlestick Patterns DetectionThis script detects patterns on chart.
---
Reversal patterns:
1. Bullish Engulfing (Бычье поглощение)
2. Bearish Engulfing (Медвежье поглощение)
3. Hammer (Молот)
4. Inverted Hammer (Перевернутый молот)
5. Shooting Star (Падающая звезда)
6. Morning Star (Утренняя звезда)
7. Evening Star (Вечерняя звезда)
8. Tweezer Bottom (Двойное дно)
9. Tweezer Top (Двойная вершина)
10. Doji (Доджи)
- Standard Doji
- Dragonfly Doji (Стрекоза)
- Gravestone Doji (Надгробие)
11. Piercing Line (Проникающая линия)
12. Dark Cloud Cover (Покрытие тучей)
13. Three White Soldiers (Три белых солдата)
14. Three Black Crows (Три черных вороны)
---
Trend Continuation Patterns:
1. Rising Three Methods (Три метода подъема)
2. Falling Three Methods (Три метода падения)
3. Mat Hold (Матовая остановка)
---
Multi-candlestick patterns:
1. Harami (Харами)
- Bullish Harami (Бычье харами)
- Bearish Harami (Медвежье харами)
2. Harami Cross (Харами-крест)
3. Three Inside Up (Три изнутри вверх)
4. Three Inside Down (Три изнутри вниз)
5. Abandoned Baby (Брошенный младенец)
6. Upside Gap Two Crows (Разрыв с двумя воронами)
7. Evening Doji Star (Вечерняя звезда с доджи)
8. Morning Doji Star (Утренняя звезда с доджи)
---
Rare patterns:
1. Kicking (Сокрушение)
- Bullish Kicking
- Bearish Kicking
2. Three Line Strike (Тройной удар)
3. Island Reversal (Островной разворот)
4. Marubozu (Марубозу)
- Bullish Marubozu
- Bearish Marubozu
EMA Slope 45° Alert with CustomizationChatGPT developed the code for this indicator using my prompts.
When the background is green, focus on BUY.
When the background is red, focus on SELL.
However, it is better to filter the direction bias with any EMA cross or any other indicators that you prefer. There are options for the inputs that you need to adjust to suit your trading strategy.
Entry is based on candlestick patterns such as pin bar and engulfing, especially when the price retraces to any support or resistance.
Daily Vertical Line at 11:30 AMSimple script that draws a horizontal line at specific time every day.
Change the time in the script. It is currently set to 11.30