YY MACD Buy/Sell SignalsV3 macd ✅ 开放 MACD 金叉 / 死叉,确保信号出现
• 之前要求 趋势 + MACD 强度 + RSI 才触发,现在只要 MACD 发生金叉 / 死叉 就标记信号。
• 这样可以排查是 MACD 计算有问题,还是趋势过滤导致信号消失。
✅ 大幅放宽 RSI 和 MACD 过滤
• MACD 触发门槛降到 0.001,确保微小波动也能触发信号。
• RSI 触发条件放宽到 RSI < 60 买,RSI > 40 卖,确保信号不会被误过滤掉。
Indicatori e strategie
[Mad] Triple Bollinger Bands MTF_3xThis For My Friend Amit G it have 3 boilinder band and moving average
Ichimoku(TF)This Pine Script indicator is a comprehensive Ichimoku Cloud implementation designed for TradingView. Its uniqueness lies in the precisely calculated settings for each timeframe, offering a tailored Ichimoku experience across different chart resolutions.
Key Features:
Timeframe-Specific Presets: The indicator includes a wide range of pre-defined settings optimized for various timeframes (1m, 2m, 3m, 5m, 10m, 15m, 30m, 45m, 1H, 2H, 3H, 4H, 6H, 12H, 18H, 1D, 3D, 1W, 1M). This ensures accurate Ichimoku calculations and relevant signals for your chosen timeframe.
Ichimoku Cloud: Plots the standard Ichimoku Cloud components: Tenkan-sen (Conversion Line), Kijun-sen (Base Line), Senkou Span A & B (Leading Spans), and Chikou Span (Lagging Span).
Configurable Display: Allows toggling the Ichimoku Cloud display, coloring bars based on the trend (above or below the cloud), and customizing table visibility, style, font size and position.
Trend Analysis Table: A summary table provides a quick overview of the current trend based on Ichimoku components. It assesses the strength of the trend based on the price's relation to the Tenkan-sen, Kijun-sen, Kumo Cloud, Chikou Span and Kumo Twist. The table offers both detailed and short styles.
Buy/Sell Signals: Generates buy and sell signals based on Tenkan-sen/Kijun-sen crossovers.
Uniqueness:
The primary advantage of this indicator is its meticulous configuration for different timeframes. Instead of using a single set of parameters for all timeframes, it provides optimized values that are more suitable for specific chart resolutions. The summary table provides an easy and quick way to assess the trend.
Этот индикатор Pine Script представляет собой комплексную реализацию облака Ишимоку, разработанную для TradingView. Его уникальность заключается в точно рассчитанных настройках для каждого таймфрейма, предлагая индивидуальный опыт Ишимоку для различных разрешений графиков.
Ключевые особенности:
Предустановки для конкретных таймфреймов: Индикатор включает в себя широкий спектр предопределенных настроек, оптимизированных для различных таймфреймов (1m, 2m, 3m, 5m, 10m, 15m, 30m, 45m, 1H, 2H, 3H, 4H, 6H, 12H, 18H, 1D, 3D, 1W, 1M). Это обеспечивает точные вычисления Ишимоку и релевантные сигналы для выбранного вами таймфрейма.
Облако Ишимоку: Отображает стандартные компоненты облака Ишимоку: Tenkan-sen (линия конверсии), Kijun-sen (базовая линия), Senkou Span A & B (ведущие диапазоны) и Chikou Span (запаздывающий диапазон).
Настраиваемое отображение: Позволяет переключать отображение облака Ишимоку, окрашивать бары в зависимости от тренда (выше или ниже облака), а также настраивать видимость таблицы, стиль, размер шрифта и положение.
Таблица анализа тренда: Сводная таблица обеспечивает быстрый обзор текущего тренда на основе компонентов Ишимоку. Он оценивает силу тренда на основе отношения цены к Tenkan-sen, Kijun-sen, облаку Kumo, Chikou Span и Kumo Twist. Таблица предлагает как подробный, так и краткий стили.
Сигналы покупки/продажи: Генерирует сигналы покупки и продажи на основе пересечений Tenkan-sen/Kijun-sen.
Уникальность:
Основным преимуществом этого индикатора является его тщательная настройка для разных таймфреймов. Вместо использования единого набора параметров для всех таймфреймов он предоставляет оптимизированные значения, которые больше подходят для конкретных разрешений графиков. Сводная таблица обеспечивает простой и быстрый способ оценки тренда.
emsteon111ortalamalara dayalı destek dırenc belırleme
dongusel ılerı tahmınler
olusabılecek uyumsuzluklar
DARBAR Automatic S & R - shrinathdarbar250**CHANDAN DARBAR S&R (15M Pivot Dynamic Color with Extended Levels)**
This indicator automatically calculates 15‑minute pivot points using the previous 15‑minute candle’s high, low, and close. It computes not only the standard pivot point and support/resistance levels (R1, S1, R2, S2, R3, S3) but also extends these levels (R4, S4, R5, S5) to provide deeper insight into intraday support and resistance.
Key features include:
- **Automatic 15‑Minute Pivot Calculation:** Updates every 15 minutes using the previous candle’s data.
- **Dynamic Coloring:** Levels above the current price (resistances) are shown in red, while levels below (supports) are displayed in green. The pivot point is always drawn in black.
- **Session-Based Display:** Pivot levels are only plotted for bars belonging to the current trading session (current day), keeping your chart clean and relevant.
This indicator is ideal for intraday traders seeking clear, dynamically updated support and resistance areas to help identify potential breakout or reversal zones.
Low Relative Volume Dry-Up (DUV)TradingView Pine Script – Low Relative Volume Dry-Up (DUV) Indicator
pinescript
CopyEdit
//@version=5 indicator("Low Relative Volume Dry-Up (DUV)", overlay=true) // Parameters length = input(50, title="Volume MA Length") // Lookback period for volume average threshold = input(0.3, title="Dry-Up Factor") // Volume must be below X% of average to qualify // Compute moving average of volume vol_ma = ta.sma(volume, length) // Calculate relative volume rel_vol = volume / vol_ma // Identify Dry-Up (DUV) bars dry_up = rel_vol < threshold // Highlight bars with color barcolor(dry_up ? color.blue : na) // Add DUV markers above bars plotshape(dry_up, location=location.abovebar, style=shape.labelup, color=color.blue, size=size.small, title="DUV", text="DUV") // Plot Volume Moving Average for reference plot(vol_ma, color=color.gray, title="Volume MA") // Alert when DUV occurs alertcondition(dry_up, title="DUV Alert", message="Dry-Up Volume Detected!")
The best Dry-Up Factor (DUF) for spotting breakouts depends on the stock’s liquidity and volatility. However, based on breakout trading principles, here are some guidelines:
Optimal Dry-Up Factor (DUF) Ranges for Breakouts
✅ 0.2 - 0.3 (20% - 30% of average volume)
Ideal for highly liquid stocks (e.g., large caps, blue chips).
Good for spotting extreme dry-up zones before volume expansion.
Best used in strong uptrends or consolidations before breakouts.
✅ 0.3 - 0.5 (30% - 50% of average volume)
Works well for mid-cap stocks with moderate volatility.
Captures normal low-volume consolidations before breakouts.
Balances false signals and breakout precision.
✅ 0.5 - 0.7 (50% - 70% of average volume)
Better for small caps and volatile stocks where volume fluctuations are common.
Detects early signs of accumulation before volume expansion.
Reduces the risk of false dry-up signals in choppy markets.
How to Find the Best DUF for Your Stocks
1️⃣ Check historical breakout cases – What was the relative volume before the move?
2️⃣ Test different thresholds – Start with 0.3 - 0.5 and adjust based on stock behavior.
3️⃣ Combine with price action – Look for tight consolidations, inside bars, or squeeze setups.
4️⃣ Use ATR or ADX – Validate if the stock is in a low-volatility phase before expanding.
Cookie's A.I. Engulfing BandThis band is to be used in conjuction with AI Engulfing candles indicator. Weeds out false signals from the engulfing so you can have more accurate trading. Ii found this to be very effective in imroving my accuracy.
This can be used for any time frame.
Trade signals inside of the band are false. Trade signals that occur outside of the band above or below are valid signals. Win rate is quite high for these so enjoy!
JOHN BRITTO TRICHYThis strategy is designed to capture strong trend movements in the market using a combination of trend-following and momentum indicators. The key advantage of this approach is that it only enters a trade when multiple confirmations align, reducing false signals and improving trade accuracy.
BUY/SELL Signals by JOHN BRITTOThis strategy is designed to capture strong trend movements in the market using a combination of trend-following and momentum indicators. The key advantage of this approach is that it only enters a trade when multiple confirmations align, reducing false signals and improving trade accuracy.
Elephant Bar Detector by McAiElephant Bar Detector 🐘
Overview:
The Elephant Bar Detector identifies significant bullish and bearish bars (candlesticks) based on size and volume criteria. It also detects follow-through patterns, helping traders confirm strong price movements.
Features:
✅ Elephant Bar Detection:
Bullish Elephant Bar 🐘: A large bullish candle with high volume.
Bearish Elephant Bar 🐘: A large bearish candle with high volume.
✅ Follow-Through Confirmation:
Checks if price continues in the same direction after the Elephant Bar.
Requires at least 80% follow-through over the next few bars.
✅ Visual Markers & Alerts:
Yellow Elephant 🐘 (Bottom) → Bullish signal
Pink Elephant 🐘 (Top) → Bearish signal
Background Highlight: Indicates confirmed follow-through
Alerts: Get notified when an Elephant Bar or follow-through occurs.
How It Works:
Calculates the average candle size over a user-defined period.
Sets a volume threshold (average volume × multiplier).
Identifies Elephant Bars when price movement & volume exceed thresholds.
Confirms follow-through by checking if 80% of the next few bars continue in the same direction.
Customizable Settings:
Length for Average Candle Size (Default: 200)
Volume Multiplier (Default: 1.5)
Number of Follow-Through Bars (Default: 3)
This indicator helps traders spot strong price moves early and confirm trends before entering trades. 🚀🔥
Trust The Process - Defaultthis is my personal indicator, please use it with you own risk and do your analysis before making any trade. This indicator is to help you with your analysis. Profit loss depends upon your executions
Edgescript from entropy edge. Need to figure out. It give buy and sell signals, use it preferably on 1 min candles
Smart Trend Tracker Name: Smart Trend Tracker
Description:
The Smart Trend Tracker indicator is designed to analyze market cycles and identify key trend reversal points. It automatically marks support and resistance levels based on price dynamics, helping traders better navigate market structure.
Application:
Trend Analysis: The indicator helps determine when a trend may be nearing a reversal, which is useful for making entry or exit decisions.
Support and Resistance Levels: Automatically marks key levels, simplifying chart analysis.
Reversal Signals: Provides visual signals for potential reversal points, which can be used for counter-trend trading strategies.
How It Works:
Candlestick Sequence Analysis: The indicator tracks the number of consecutive candles in one direction (up or down). If the price continues to move N bars in a row in one direction, the system records this as an impulse phase.
Trend Exhaustion Detection: After a series of directional bars, the market may reach an overbought or oversold point. If the price continues to move in the same direction but with weakening momentum, the indicator records a possible trend slowdown.
Chart Display: The indicator marks potential reversal points with numbers or special markers. It can also display support and resistance levels based on key cycle points.
Settings:
Cycle Length: The number of bars after which the possibility of a reversal is assessed.
Trend Sensitivity: A parameter that adjusts sensitivity to trend movements.
Dynamic Levels: Setting for displaying key levels.
Название: Smart Trend Tracker
Описание:
Индикатор Smart Trend Tracker предназначен для анализа рыночных циклов и выявления ключевых точек разворота тренда. Он автоматически размечает уровни поддержки и сопротивления, основываясь на динамике цены, что помогает трейдерам лучше ориентироваться в структуре рынка.
Применение:
Анализ трендов: Индикатор помогает определить моменты, когда тренд может быть близок к развороту, что полезно для принятия решений о входе или выходе из позиции.
Определение уровней поддержки и сопротивления: Автоматически размечает ключевые уровни, что упрощает анализ графика.
Сигналы разворота: Индикатор предоставляет визуальные сигналы о возможных точках разворота, что может быть использовано для стратегий, основанных на контртрендовой торговле.
Как работает:
Анализ последовательности свечей: Индикатор отслеживает количество последовательных свечей в одном направлении (вверх или вниз). Если цена продолжает движение N баров подряд в одном направлении, система фиксирует это как импульсную фазу.
Выявление истощения тренда: После серии направленных баров рынок может достичь точки перегрева. Если цена продолжает двигаться в том же направлении, но с ослаблением импульса, индикатор фиксирует возможное замедление тренда.
Отображение на графике: Индикатор отмечает точки потенциального разворота номерами или специальными маркерами. Также возможен вывод уровней поддержки и сопротивления, основанных на ключевых точках цикла.
Настройки:
Длина цикла (Cycle Length): Количество баров, после которых оценивается возможность разворота.
Фильтрация тренда (Trend Sensitivity): Параметр, регулирующий чувствительность к трендовым движениям.
Уровни поддержки/сопротивления (Dynamic Levels): Настройка для отображения ключевых уровней.
Wyckoff Schematic-Non Repainting with AlertsThanks to DanielM for his effort...i have just incorporate the alerts....it's non repainting...happy trading..
Bitcoin Log Growth Regression Curve (Tommy)1. Introduction
Bitcoin’s price had historically exhibited exponential growth, meaning its growth rate increased over time rather than remaining constant. To analyze this behavior, I employed a logarithmic scale. The logarithmic transformation converted the exponential growth pattern into a linear relationship, which was easier to analyze using linear regression techniques.
2. What Is a Logarithmic Function?
A logarithmic function (in this case, using base 10) transforms a number x into log10(x). For example, log10(100) = 2 because 10^2 = 100. This transformation compresses data that spans several orders of magnitude into a smaller, more manageable scale. In my analysis, the logarithmic transformation was applied to both the time variable (expressed as “weekly bar numbers”) and the price. This approach converted an exponential relationship into a linear one.
3. Selection of Key Coordinates
Key turning points in Bitcoin’s historical price were selected, representing the cycle peaks and bottoms. Since TradingView charts begin on 2009 10 05, I converted these dates into “weekly bar numbers. The chosen coordinates were as follows:
- Cycle Peaks (Highs):
(2011-06 06-$32) -> (80, $32)
(2013-11-25, $1240) -> (208, $1240)
(2017-12-11, $19804) -> (451, $19804)
(2021-11-08, $68997) -> (623, $68997)
- Cycle Bottoms (Lows):
(2011-11-21, $2) -> (102, $2)
(2015-08-17, $162) -> (298, $162)
(2018-12-10, $3124) -> (471, $3124)
(2022-11-21, $15473) -> (677, $15473)
These points were chosen because they marked significant turning points in Bitcoin’s price cycles.
4. Conversion to Linear Form
The values then were converted to their linear form by applying the base 10 logarithm. This transformation allowed the function to be expressed in a linear state as:
y = a * x + b
where:
- x is the logarithm of the weekly bar number, and
- y is the logarithm of the price.
This step was essential for enabling linear regression on these values. After applying the base 10 logarithm, the coordinates became:
- Cycle Peaks (Highs):
(1.903, 1.505)
(2.318, 3.093)
(2.654, 4.296)
(2.795, 4.839)
- Cycle Bottoms (Lows):
(2.009, 0.301)
(2.474, 2.210)
(2.673, 3.494)
(2.830, 4.190)
5. Linear Regression
A linear regression was then performed on these log transformed points separately for the highs and lows. The best fit lines obtained were:
- Cycle Peaks (Highs):
y = 3.711 * x – 5.541
In exponential form, this translates to:
Price = 10^(3.711 * log(x)-5.541)
- Cycle Bottoms (Lows):
y = 4.782 * x – 9.385
In exponential form, this translates to:
Price = 10^(4.782 * log(x)-9.385)
6. Visualization through Log Channel with Offsets
To provide additional context and to visually assess potential overextensions or undervaluations relative to the long term trend, channels were drawn around the regression lines by applying a percentage offset. For example, with a 20% offset:
- Upper Channel:
Upper=Regression Value * (1 + 0.2)
- Lower Channel:
Lower=Regression Value * (1 - 0.2)
These channels help illustrate how far the current price deviates from the trend line and can signal potential reversal points if the price moves significantly outside these boundaries.
7. Meaning and Application of the Model
This model was designed to analyze Bitcoin’s long term trend by:
• Assessing Market Conditions:By comparing the current Bitcoin price to the regression channels, one can gauge whether Bitcoin is trading above (potentially overextended) or below (potentially undervalued) its long term trend.
• Forecasting Reversal Points: Significant deviations from the channel boundaries may indicate that a price correction or reversal is imminent.
• Supporting Investment Decisions: The regression function, together with its channels, provides a quantitative framework for evaluating the current market state and estimating future price targets, helping to guide strategic entry or exit decisions.
Based on the derived model and current market conditions, today's analysis indicates that Bitcoin's support levels lie approximately between $24,000 and $36,000, while its resistance levels are in the range of about $134,000 to $202,000.
8. Summary
This model came together by pinpointing key turning points in Bitcoin’s price history and converting the dates into weekly bar numbers. I then applied a base 10 logarithm to both the time and price data, which transformed Bitcoin’s exponential growth into a straight-line relationship. Using linear regression on these log transformed values, I derived trend equations for the peaks and bottoms, and added channels with a set offset to highlight areas of potential support and resistance. Overall, this approach offers a clear, data-driven way to gauge Bitcoin’s long-term trend and anticipate potential market turning points.
1. 서론
비트코인은 창시 이후 상상할 수 없을 정도의 상승세를 보여주었으며, 그 폭발적인 성장률은 시간이 흐를수록 걷잡을 수 없이 가속화되었습니다. 이러한 현상은 단순한 우연이 아니라, 전 세계 투자자들과 주요 기관들의 열렬한 관심을 이끌어내며 비트코인이 주요 자산으로 자리잡게 된 배경이 되었습니다. 저는 최근에 이 비범한 상승세의 이면을 보다 깊이 이해하고자 로그 기반으로 간단한 비트코인 추세 채널링 모델을 만들어봤습니다.
2. 로그함수란?
로그함수는 어떤 숫자를, 특정 밑을 기준으로 그 크기를 지수 형태로 표현해 주는 함수입니다. 예를 들어, 100이라는 숫자는 10의 몇 제곱인지 나타내면 10^2 = 100이므로, log(100)는 2가 됩니다. 즉, 로그함수는 아주 크거나 작은 값을 다루기 쉽게 숫자 범위를 압축해 주는 역할을 합니다. 제 분석에서는 ‘주간 바 번호’라는 시간 변수와 가격 데이터에 모두 로그 변환을 적용하여, 본래 기하급수적으로 증가하는 데이터를 선형 관계로 바꿔서 보다 쉽게 이해하고 분석할 수 있도록 하였습니다. 참고로 본 분석에서는 로그 10진법을 사용하였습니다.
3. 주요 고점/저점 선택
역대 비트코인의 가격 사이클에서 중요한 변곡점들을 고점 저점 각각 4개씩 도출했습니다. 트레이딩뷰의 BTCUSD:INDEX 차트는 2009년 10월 05일부터 시작되므로, 각 날짜가 차트 상에서 몇 번째 봉에 해당하는지를 계산하였습니다. 좌표는 다음과 같습니다:
사이클 상단 (고점):
(2011-06 06-$32) -> (80, $32)
(2013-11-25, $1240) -> (208, $1240)
(2017-12-11, $19804) -> (451, $19804)
(2021-11-08, $68997) -> (623, $68997)
사이클 하단 (저점):
(2011-11-21, $2) -> (102, $2)
(2015-08-17, $162) -> (298, $162)
(2018-12-10, $3124) -> (471, $3124)
(2022-11-21, $15473) -> (677, $15473)
해당 변곡점들은 차트 분석 좀 하시는 분들은 아시겟지만, 역대 비트코인 가격 사이클에서 가장 중요한 고점과 저점들입니다.
4. 데이터 변환
이후 선택된 값들에 10진 로그를 적용하여 기하급수적으로 증가하는 데이터를 선형 관계로 전환하였습니다. 자, 우리 어렸을 때 수학시간에 다 배운 1차 방정식인데, 기억하시죠? 다음과 같이 선형적 함수로 표현될 수 있습니다:
y = a * x + b
- x: 날짜(몇 번째 주봉인지)
- y: 비트코인 로그 값
로그를 적용한 결과, 좌표는 다음과 같이 바뀌었습니다. 이제 선형 회귀 분석이 가능한 데이터 포맷이 되었네요.
사이클 상단 (고점):
(1.903, 1.505)
(2.318, 3.093)
(2.654, 4.296)
(2.795, 4.839)
사이클 하단 (저점):
(2.009, 0.301)
(2.474, 2.210)
(2.673, 3.494)
(2.830, 4.190)
5. 선형 회귀 분석
고점과 저점 데이터를 로그 스케일로 변환한 후 각각 선형 회귀 분석을 수행하여 최적화된 추세선을 도출해봤습니다. 그 결과, 아래와 같은 방정식이 나왔네요:
사이클 상단 (고점):
y = 3.711 * x – 5.541
지수 함수로 변환하면:
가격 = 10^(3.711 * log(x)-5.541)
사이클 하단 (저점):
y = 4.782 * x – 9.385
지수 함수로 변환하면:
가격 = 10^(4.782 * log(x)-9.385)
6. 로그 채널에 편차 적용
하나의 회귀선으로 모든 변곡점을 정확히 포착하는 것은 어렵기 때문에, 육안으로 확인했을 때 주요 고점과 저점들이 어느 정도 포함될 수 있도록 적절한 범위를 설정하였습니다. 이를 위해 회귀선 위아래로 일정 비율의 편차(오프셋)을 적용하여 채널을 형성하였습니다. 예를 들어, 20%의 오프셋을 적용하면 다음과 같이 계산됩니다:
사이클 상단 = 회귀 값 * (1 + 0.2)
사이클 하단 = 회귀 값 * (1 - 0.2)
이 채널을 활용하면 비트코인의 가격이 장기 추세 대비 어느 정도 위치해 있는지 한눈에 파악할 수 있습니다. 만약 가격이 채널을 크게 벗어난다면, 시장이 과열되었거나 반대로 저평가되었을 가능성이 높다고 해석할 수 있습니다.
7. 해당 모델의 시사점
- 시장 상황 평가: 현재 비트코인 가격이 본 채널과 비교했을 때 과열(고평가) 상태인지, 혹은 침체(저평가) 상태인지 어느정도 큰 그림에서 가늠해볼 수 있습니다.
- 변곡점 예측: 가격이 채널의 상단이나 하단에 도달할 경우, 일정 수준의 조정이나 방향 전환이 나타날 가능성이 높습니다.
현재 시장 상황과 모델이 도출한 결과를 바탕으로 보면, 장기적으로 비트코인의 주요 지지 구간은 약 $24,000 ~ $36,000, 저항 구간은 $134,000 ~ $202,000 수준으로 나타납니다.
8. 결론
이번 회귀 모델을 구축하면서, 비트코인의 가격 움직임이 단순한 우연이 아니라 일정한 패턴을 따르고 있음을 다시 한번 확인할 수 있었습니다. 단순히 과거 데이터를 대입해 본 것이지만, 로그 스케일과 선형 회귀를 활용하니 꽤 직관적인 추세선이 도출되었고, 이를 통해 장기적인 흐름에서 가격이 어디쯤 위치해 있는지를 객관적으로 볼 수 있었습니다.
물론, 이 채널이 절대적인 예측 도구는 아닙니다. 시장은 항상 변수가 많고, 예상치 못한 이벤트가 터질 수도 있습니다. 하지만 적어도 큰 그림에서 시장이 과열되었는지, 혹은 저평가된 구간에 들어섰는지를 판단하는 데는 유용한 프레임워크가 될 수 있다고 생각합니다.
선형 차트로 보면, 시간이 갈수록 채널이 시사하는 지지/저항 구간의 범위가 넓어집니다. 따라서 미래로 갈수록 예측이 더욱 어려워지는 것이 이 시장의 본질일지도 모릅니다. 결국, 시장이 어느 방향으로든 극단적인 움직임을 보일 가능성은 점점 커지며, 이런 불확실성을 감안한 대응 전략이 더욱 중요하고 생각합니다.
CHANDAN DARBAR Support & ResistanceAuto Hourly Pivot & Price-Cross Signals
by shrinathdarbar250
This indicator automatically calculates hourly pivot points using the previous hour’s high, low, and close values. It displays the key pivot levels (Pivot, R1, S1, R2, S2, R3, S3) on your chart with dynamic coloring—red if the level is above the current price (acting as potential resistance) and green if below (acting as potential support).
Key Features:
Hourly Pivot Calculation: Automatically computes pivot levels using standard formulas based on the previous hour’s data.
Dynamic Coloring: Pivot lines change color in real time to indicate whether they are above (red) or below (green) the current price.
Price-Cross Signals: Generates a BUY signal when the price crosses above any resistance level and a SELL signal when the price crosses below any support level.
Automatic Updates: Pivot lines are refreshed every hour—old lines are deleted when a new hour begins, keeping your chart clean and up-to-date.
This indicator is ideal for traders looking to quickly identify dynamic support and resistance levels and capture potential breakout or reversal opportunities based on hourly market structure.
Bollinger Band Signals + RSI ConfirmationThis is an amazing script which generates perfect buy and sell signals for long trends.
Percent % Change Since Specific Date / Time (Low Price)On candlestick mark low of specific date by giving input one day ago in date range
Simple HA Trend Strategy Strategy Details:
Entry:
Long: When a Heiken Ashi candle closes above its open (indicating bullish momentum) and crosses above a simple moving average (SMA) of the Heiken Ashi close, suggesting a new bullish trend or continuation.
Short: The opposite, when a Heiken Ashi candle closes below its open and below the SMA, indicating bearish momentum.
Exit:
Exit long positions if the Heiken Ashi candle closes below the SMA or if it's bearish (close below open).
Exit short positions if the Heiken Ashi candle closes above the SMA or if it's bullish (close above open).