Disha -- Author(VAKA)Disha means Direction.
This script basically works with Heikin Ashi Candle Stick on 5 min Chart. If its AM the alert comes whether it's bullish or bearish and the target for that hour is 3-5 handles up or down from the alerted candle low or high if it's bullish or bearish.
For Example if at 10:15 AM candle the alert comes as bullish expect it to move higher 3-5 handles on SPX.
This script good to use only on indices/ futures.
There is a small error when you use on futures during 12AM/PM hour its not giving alert at the right candle stick what I mean is its giving at 12:15 PM instead of 12:20 PM and vice versa - however it just works fine on SPX SPY QQQ etc...Just on futures its a known issue and which we are working on it.
Cerca negli script per "Candlestick"
Candle Size “This indicator calculates and displays the real-time size of the current candle by measuring the difference between its high and low prices. The value is shown in the indicator’s data window without plotting any visible elements on the chart, providing a clean interface while keeping you informed about candle volatility.”
Vela Rango 3.0Indicator created to mark candles that are larger than their previous candle, both in their High and Low, it marks said candles in time frames of 15 minutes and higher with a triangle above them, and the last range candle created expands said range to the right during the following 4 hours.
9:30 AM Price Marker with Prior Day (Extended)Highlights both todays open & yesterdays open starting at 9:30am EST. Works best on the 5m chart.
時間足固定ATRライン - 任意時間足This indicator displays the ATR value as a line. Please display the ATR of any time.
Multi-Timeframe Price Action AnalysisMulti-Timeframe Price Action Analysis
This indicator analyzes price action across multiple timeframes to determine bullish and bearish signals. It creates a dashboard showing how price interacts with previous candles' highs and lows.
Features
- Analyzes 4 customizable timeframes simultaneously
- Detects when price:
-- Grabs lows and comes back inside (bullish)
-- Grabs highs and comes back inside (bearish)
-- Grabs both highs and lows
-- Moves above previous high
-- Moves below previous low
-- Calculates bullish/bearish percentages for each timeframe
-- Visual dashboard with color-coded signals
Adjustable confirmation settings
-- Settings
-- Customize timeframes (default: 15min, 1H, 4H, D)
-- Toggle confirmation waiting
-- Set number of confirmation candles
This is a very rudimentary version.. I will make a more robust version soon
For it to be considered a "grab" the current price must be within the previous candle's range..
This also does not focus on candle closures just highs and lows
Also note that this is a little aggressive in that it does not require a bullish close for example to be considered bullish, a bearish close inside the previous candle is considered valid, this is to handle the morning stars that have a slightly bearish close in middle candle etc.. obviously do not rely on this indicator.. look at the price action and determine if you think its worth taking..
Same goes for bullish closes inside previous candle after grabbing highs..
FxInside你这段代码整体逻辑是正确的,但如果**实际运行后看不到空头信号(`short_signal`)**,那大概率是因为条件太苛刻,在你当前查看的图表、时间周期和币种上**并没有符合这些严格空头条件的K线**。
---
### ✅ 逐项检查你的 `short_signal` 条件:
```pinescript
short_signal = do_tick/st >= 2 and st / (high - low ) >= 0.05 and up_tick/st <= 0.75 and close < low
```
#### 解释:
1. `do_tick / st >= 2`:前一根K线下影线明显大于实体(**下影线 >= 实体的2倍**)✅
2. `st / (high - low ) >= 0.05`:实体不能太小(至少占K线5%)✅
3. `up_tick / st <= 0.75`:上影线不能太大 ✅
4. `close < low `:当前K线收盘价要**跌破前一根K线最低价**(这可能比较苛刻❗)
---
### 🔍 为什么很少或没有出现空头信号?
通常是因为 **`close < low `** 是比较少见的情况(意味着当前K线**收盘直接创新低**),在大部分正常震荡或下跌过程中,K线更多是影线破位而不是**实体收盘破位**。
---
### ✅ 如何验证问题?
你可以临时在图表中添加一个调试输出,例如:
```pinescript
label.new(bar_index, high, text="✓", color=color.red) if short_signal
```
或者添加调试 `plot`:
```pinescript
plot(close < low ? 1 : na, title="收盘破前低", color=color.red)
```
你会发现这个条件非常少成立。
---
### ✅ 两个可选改进方式:
#### ✅ 方式1:放宽空头条件的“收盘破低”为“最低价破低”
```pinescript
short_signal = do_tick/st >= 2 and st / (high - low ) >= 0.05 and up_tick/st <= 0.75 and low < low
```
这样只要**当前K线最低价跌破前低**就算空头信号,触发率大幅提升。
---
#### ✅ 方式2:同时显示条件组件,方便你调试
```pinescript
plotshape(do_tick/st >= 2, title="下影线够长", location=location.top, color=color.blue, style=shape.circle)
plotshape(st / (high - low ) >= 0.05, title="实体不小", location=location.top, color=color.yellow, style=shape.circle)
plotshape(up_tick/st <= 0.75, title="上影线不大", location=location.top, color=color.orange, style=shape.circle)
plotshape(close < low , title="收盘破低", location=location.top, color=color.red, style=shape.triangledown)
```
这样可以清晰地看到哪一个条件没有被满足。
---
如果你愿意,我也可以根据你的交易风格(比如追空激进 or 保守),重新优化空头条件。是否要我为你设计一个更高触发率的版本?
Gaps cerca de cerrarseThis script identifies price gaps that are still open and highlights only those that are close to being filled — within 10% of the original gap size. It draws horizontal lines at the previous day's close (gap reference level) and labels them when the current price is approaching gap closure. Useful for gap traders who want to focus on actionable setups with high likelihood of completion.
Fractals 1hFractals 1h, visible on 5m TF.
This indicator allows me to backtest my strategy "from zone to zone"...
🦌 Horn Pattern - Horn + FT - Ming Joo🦌 Horn Pattern Reversal Strategy (By Ming Joo)
This strategy is based on a 3-bar reversal pattern known as the Horn Pattern (bull-bear-bull for longs, bear-bull-bear for shorts). A confirmation bar (bar ) follows the pattern to validate a breakout.
🔍 Context Filter:
To ensure high-quality trades, a simple trend filter is applied using EMA(20):
✅ Bullish Horn signals are valid only if the confirmation bar closes above EMA20
✅ Bearish Horn signals are valid only if the confirmation bar closes below EMA20
This prevents taking counter-trend reversals in weak conditions.
🎯 Entry Logic:
Long entry: Horn high + 1 tick
Short entry: Horn low – 1 tick
Target: 1R
Stop: Structural extreme (low/high of the horn)
Optionally shows 0.5R line
This structure-based reversal model is suitable for 5min–1H timeframes, and works best on volatile instruments (e.g. ES1!, NQ1!, BTCUSD, AAPL).
🦌 Horn Pattern - Horn + FT - Ming Joo太棒了!以下是你策略的中英文简介版本,专为 **TradingView 发布页面** 编写,突出你当前唯一的 context filter(基于 EMA20)。
---
## 🇬🇧 English Description — Horn Pattern Strategy with EMA Context Filter
**🦌 Horn Pattern Reversal Strategy (By Ming Joo)**
This strategy is based on a 3-bar reversal pattern known as the **Horn Pattern** (bull-bear-bull for longs, bear-bull-bear for shorts). A confirmation bar (bar\ ) follows the pattern to validate a breakout.
🔍 **Context Filter:**
To ensure high-quality trades, a simple trend filter is applied using EMA(20):
* ✅ **Bullish Horn** signals are valid **only if** the confirmation bar closes **above EMA20**
* ✅ **Bearish Horn** signals are valid **only if** the confirmation bar closes **below EMA20**
This prevents taking counter-trend reversals in weak conditions.
🎯 Entry Logic:
* Long entry: Horn high + 1 tick
* Short entry: Horn low – 1 tick
* Target: 1R
* Stop: Structural extreme (low/high of the horn)
* Optionally shows 0.5R line
This structure-based reversal model is suitable for 5min–1H timeframes, and works best on volatile instruments (e.g. ES1!, NQ1!, BTCUSD, AAPL).
---
## 🇨🇳 中文简介 — Horn 结构反转策略(含 EMA 趋势滤网)
**🦌 Horn 反转策略(By Ming Joo)**
本策略基于经典的 **Horn 形态**(多头为 bull-bear-bull,空头为 bear-bull-bear),由三根结构K线 + 一根确认K线构成,搭配 **EMA20 趋势过滤器** 筛选优质信号。
🔍 **上下文过滤条件(唯一 context filter):**
* ✅ **Bullish Horn** 仅在确认K线的收盘 **高于 EMA20** 时触发
* ✅ **Bearish Horn** 仅在确认K线的收盘 **低于 EMA20** 时触发
防止在弱趋势中逆势进场,提升成功率。
🎯 入场逻辑:
* 多头:Horn 高点 +1 tick 挂多
* 空头:Horn 低点 –1 tick 挂空
* 止盈:1R
* 止损:Horn 的结构极点
* 可选显示 0.5R 虚线
适合用于 5分钟至 1小时图表,特别适用于高波动性品种(如 ES1!, NQ1!, BTCUSD, AAPL 等)。
---
quanstocThe quanstoc indicator is designed to detect rare and potentially high-probability reversal or trend initiation signals using Stochastic RSI. It identifies a double cross event: two consecutive crosses between %K and %D lines (on back-to-back candles), following a quiet period of at least three candles without any crossover. The signal is marked clearly on the chart and can trigger custom alerts. Supports all timeframes.
quanstocThe quanstoc2 indicator is designed to detect rare and potentially high-probability reversal or trend initiation signals using Stochastic RSI. It identifies a double cross event: two consecutive crosses between %K and %D lines (on back-to-back candles), following a quiet period of at least three candles without any crossover. The signal is marked clearly on the chart and can trigger custom alerts. Supports all timeframes.
quanstocThe quanstoc indicator is designed to detect rare and potentially high-probability reversal or trend initiation signals using Stochastic RSI. It identifies a double cross event: two consecutive crosses between %K and %D lines (on back-to-back candles), following a quiet period of at least three candles without any crossover. The signal is marked clearly on the chart and can trigger custom alerts. Supports all timeframes.
Double Inside Bar Alert (1-1 Only)Double Inside Bar Alert Indicator
Stay ahead of breakout opportunities with our Double Inside Bar Alert Indicator. This tool automatically scans your watchlist and notifies you in real-time whenever a double inside bar pattern appears—an advanced price action setup known for signaling strong potential breakouts or reversals.
Whether you’re a day trader or swing trader, this indicator helps you:
Spot consolidation zones early before major price moves
Receive instant alerts across your entire watchlist
Filter noise and focus on high-probability chart setups
Perfect for traders who rely on price action and want to catch momentum shifts as they form.
FVG Strategy 5minThat's the early of my new strat, can't wait to upgrade it and take bigggg profit guys
Market State [wundaba]General market overview indicator
Add your own symbols
Credits to Luon MC for the idea
HA Reversal StrategyCertainly! Here's a detailed **description (elaboration)** for the **"HA Candle Test"** (i.e., the Heikin Ashi strategy script I just gave you):
---
### 📌 **Script Name**: HA Candle Test
### 📖 **Description**:
This script visualizes **Heikin Ashi candles** and identifies **trend reversal signals** using classic momentum candle behavior — particularly the appearance of **no-wick candles**, which are known to reflect strong directional pressure in Heikin Ashi charts.
It aims to **capture high-probability trend reversals** with minimal noise, relying on the natural smoothing behavior of Heikin Ashi candles.
---
### ✅ **Buy Signal Conditions**:
* At least **two consecutive red Heikin Ashi candles** (indicating a short-term downtrend).
* Followed by a **green Heikin Ashi candle** that has **no lower wick** (i.e., open == low).
* This suggests that **buyers have taken full control**, with no push from sellers — a potential start of an uptrend.
📍 **Interpreted as**: “Market was selling off, but now buyers stepped in strongly — time to consider buying.”
---
### ✅ **Sell Signal Conditions**:
* At least **two consecutive green Heikin Ashi candles** (short-term uptrend).
* Followed by a **red Heikin Ashi candle** that has **no upper wick** (i.e., open == high).
* This implies **sellers are dominating**, with no attempt from buyers to push higher — possible start of a downtrend.
📍 **Interpreted as**: “Market was rallying, but sellers just took over decisively — time to consider selling.”
---
### 📊 **Visual Aids Included**:
* Plots **Heikin Ashi candles** on your main chart for clarity.
* Uses **Buy** and **Sell** label markers (green & red) at signal points.
* Compatible with any timeframe — higher timeframes typically yield stronger signals.
---
### 💡 **Suggested Use**:
* Combine with **support/resistance**, **volume**, or **trend filters** for more robust setups.
* Works well on **1H, 4H, and Daily charts** in trending markets.
* Can be used manually or turned into an automated strategy for backtesting or alerts.
---
Would you like this script packaged as a **strategy()** for backtesting, or would you like me to add **alerts** so you can get notified in real-time when signals appear?