Gap and Breakout Strategy with Buy and Selltrying a different startegy for the everyone who wants to make really good things to the world
指標和策略
GTİ(gap tespit indikatörü)Bu indikatör , grafikte mumlar arsında oluşan boşlukları(gap) tespit etmek için yapılmıştır. Belirlenen yüzde ayarından yüksek olan bütün gapları tespit eder, sadece son gapın başlangıç ve bitiş noktalarından geçen birer çizgi çizer ve bu çizgilerin aralarını boyar.
Eğer herhangi bir mumun kapanışı gap başlangıç seviyesinin üzerinde bir kapanış yaparsa, çizgilerin arası yeşil boyanır ; herhangi bir mumun kapanışı gap başlangıç seviyesinin altında bir kapanış yaparsa , çizgilerin arası kırmızı boyanır.
USDJPY Score Indicator TrALorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam sed tellus id magna elementum tincidunt. Integer vulputate sem a nibh rutrum consequat. Etiam neque. Praesent dapibus. Aliquam erat volutpat. Integer imperdiet lectus quis justo. Sed convallis magna eu sem. Maecenas fermentum, sem in pharetra pellentesque, velit turpis volutpat ante, in pharetra metus odio a lectus. Integer malesuada. Nullam at arcu a est sollicitudin euismod. Aliquam ornare wisi eu metus. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Quisque tincidunt scelerisque libero. Proin in tellus sit amet nibh dignissim sagittis.
MA by Pranesh IVMA by Pranesh IV:
This is a Simple Moving Average Indicator with 5 different periods.
5-8-13 Koşullar ;
- Kapanış fiyatı 5 Günlük Basit ortalamanın üzerinde
- 5 Günlük Basit ortalama 8 Günlük Basit ortalamanın üzerinde
- 8 Günlük Basit ortalama 13 Günlük Basit ortalamanın üzerinde
Koşullar geçerli olduğunda yeşil sütun oluşur. Koşullar devam ettikçe sütun görünmeye devam eder.
5-8-13 Koşullar ;
- Kapanış fiyatı 5 Günlük Basit ortalamanın üzerinde
- 5 Günlük Basit ortalama 8 Günlük Basit ortalamanın üzerinde
- 8 Günlük Basit ortalama 13 Günlük Basit ortalamanın üzerinde
Koşullar geçerli olduğunda yeşil sütun oluşur. Koşullar devam ettikçe sütun görünmeye devam eder.
ADX and Stochastic Entry Signals (Oscillator)### 🎯 What Does This Indicator Identify?
**Long Entry (BUY):**
A long signal is triggered when the **ADX** shows a strong trend above the set threshold, and the **Stochastic** crosses up from the **Oversold** level (below 20).
**Short Entry (SELL):**
A short signal is triggered when the **ADX** shows a strong trend above the set threshold, and the **Stochastic** crosses down from the **Overbought** level (above 80).
---
### 📈 What Makes This Indicator Special?
✅ **Smart Trend Filter:**
The **ADX** ensures that trades are only entered when the trend is strong, preventing false entries in sideways markets.
✅ **Clear Signals on the Chart:**
The indicator plots **green arrows** for long entries and **red arrows** for short entries directly on the chart, along with **colored circles** marking the exact entry points.
✅ **Clearly Defined ADX Levels:**
Includes horizontal lines for **ADX levels of 20, 25, and 30**, helping traders identify trend strength more easily.
---
### 🧩 Who Is This Indicator For?
🔹 **Day Traders**
🔹 **Swing Traders**
🔹 **Traders Looking for Strong Trends**
---
### 🖱️ How to Use It?
1. **Set your desired timeframe** on the chart (e.g., 15 minutes, 1 hour, or daily).
2. **Look for green and red arrows** on the chart to identify potential entry points.
3. **Use the ADX levels** to confirm that the trend is strong enough before entering a trade.
---
### 🚀 Key Benefits:
- **Reduces trades in non-trending markets.**
- **Helps enter trades only when market conditions are favorable.**
- **Provides clear and simple visual signals for better decision-making.**
---
### 🤝 Join the Community:
💬 **If you find this indicator helpful, please leave a comment and share your thoughts!**
📊 **Follow me for more trading ideas and indicators on TradingView.**
---
### 🔑 Keywords for Your Post:
#ADX #Stochastic #TradingIndicator #EntrySignals #TechnicalAnalysis #DayTrading #SwingTrading #TradingView
RSI EMA Moving Average Strategy//@version=6
indicator("RSI EMA Moving Average Strategy", overlay=true)
// Inputlar
RSI_Period = input.int(14, title="RSI davri")
RSI_Buy_Level = input.int(20, title="RSI Buy darajasi")
RSI_Sell_Level = input.int(80, title="RSI Sell darajasi")
EMA_Period = input.int(100, title="EMA davri")
Liquidity_Range = input.int(10, title="Likvidlik zonasi uchun barlar soni")
// Indikatorlar hisob-kitobi
rsi = ta.rsi(close, RSI_Period)
ema = ta.ema(close, EMA_Period)
// Likvidlik darajalarini aniqlash
highLiquidity = ta.highest(high, Liquidity_Range)
lowLiquidity = ta.lowest(low, Liquidity_Range)
// Signal shartlari
var string signal = na
var label buyLabel = na
var label sellLabel = na
var label exitLabel = na
if (rsi < RSI_Buy_Level and close > ema and close > lowLiquidity)
signal := "Buy"
label.delete(buyLabel)
buyLabel := label.new(bar_index, close, "Buy", style=label.style_label_down, color=color.green)
alert("Buy signali topildi!", alert.freq_once_per_bar)
if (rsi > RSI_Sell_Level and close < ema and close < highLiquidity)
signal := "Sell"
label.delete(sellLabel)
sellLabel := label.new(bar_index, close, "Sell", style=label.style_label_up, color=color.red)
alert("Sell signali topildi!", alert.freq_once_per_bar)
if ((close < ema and signal == "Buy") or (close > ema and signal == "Sell"))
label.delete(exitLabel)
exitLabel := label.new(bar_index, close, "Exit", style=label.style_label_down, color=color.yellow)
alert("Exit signali topildi!", alert.freq_once_per_bar)
RSI EMA Moving Average Strategy//@version=6
indicator("RSI EMA Moving Average Strategy", overlay=true)
// Inputlar
RSI_Period = input.int(14, title="RSI davri")
RSI_Buy_Level = input.int(20, title="RSI Buy darajasi")
RSI_Sell_Level = input.int(80, title="RSI Sell darajasi")
EMA_Period = input.int(100, title="EMA davri")
Liquidity_Range = input.int(10, title="Likvidlik zonasi uchun barlar soni")
// Indikatorlar hisob-kitobi
rsi = ta.rsi(close, RSI_Period)
ema = ta.ema(close, EMA_Period)
// Likvidlik darajalarini aniqlash
highLiquidity = ta.highest(high, Liquidity_Range)
lowLiquidity = ta.lowest(low, Liquidity_Range)
// Signal shartlari
var string signal = na
var label buyLabel = na
var label sellLabel = na
var label exitLabel = na
if (rsi < RSI_Buy_Level and close > ema and close > lowLiquidity)
signal := "Buy"
label.delete(buyLabel)
buyLabel := label.new(bar_index, close, "Buy", style=label.style_label_down, color=color.green)
alert("Buy signali topildi!", alert.freq_once_per_bar)
if (rsi > RSI_Sell_Level and close < ema and close < highLiquidity)
signal := "Sell"
label.delete(sellLabel)
sellLabel := label.new(bar_index, close, "Sell", style=label.style_label_up, color=color.red)
alert("Sell signali topildi!", alert.freq_once_per_bar)
if ((close < ema and signal == "Buy") or (close > ema and signal == "Sell"))
label.delete(exitLabel)
exitLabel := label.new(bar_index, close, "Exit", style=label.style_label_down, color=color.yellow)
alert("Exit signali topildi!", alert.freq_once_per_bar)
SMA(20,50,100,200) - cryptoMittalSMA(20,50,100,200) - cryptoMittal. Aims to provide simple moving averages for various candle spans
Heikin-Ashi smoothed MA _ ASHeiken Ashi smoothed + it's MA with options
The calculation of the smoothed HA is based on the smoothed HA indicator of jackvmk
Multi-Timeframe Stoch RSI Buy SignalIndicates a buy signal if the stoch rsi 15m crossed up and the stoch rsi is less then 20
[ADDYad] Google Search Trends - Bitcoin (2012 Jan - 2025 Jan)This Pine Script shows the Google Search Trends as an indicator for Bitcoin from January 2012 to January 2025, based on monthly data retrieved from Google Trends. It calculates and displays the relative search interest for Bitcoin over time, offering a historical perspective on its popularity mainly built for BITSTAMP:BTCUSD .
Important note: This is not a live indicator. It visualizes historical search trends based on Google Trends data.
Key Features:
Data Source : Google Trends (Last retrieved in January 10 2025).
Timeframe : The script is designed to be used on a monthly chart, with the data reflecting monthly search trends from January 2012 to January 2025. For other timeframes, the data is linearly interpolated to estimate the trends at finer resolutions.
Purpose : This indicator helps visualize Bitcoin's search interest over the years, offering insights into public interest and sentiment during specific periods (e.g., major price movements or news events).
Data Handling : The data is interpolated for use on non-monthly timeframes, allowing you to view search trends on any chart timeframe. This makes it versatile for use in longer-term analysis or shorter timeframes, despite the raw data being available only on a monthly basis. However, it is most relevant for Monthly, Weekly, and Daily timeframes.
How It Works:
The script calculates the number of months elapsed since January 1, 2012, and uses this to interpolate Google Trends data values for any given point in time on the chart.
The linear interpolation function adjusts the monthly data to provide an approximate trend for intermediate months.
Why It's Useful:
Track Bitcoin's historic search trends to understand how interest in Bitcoin evolved over time, potentially correlating with price movements.
Correlate search trends with price action and other market indicators to analyze the effects of public sentiment and sentiment-driven market momentum.
Final Notes:
This script is unique because it shows real-world, non-financial dataset (Google Trends) to understand price action of Bitcoin correlating with public interest. Hopefully is a valuable addition to the TradingView community.
ADDYad
percentage near moving averageit alert percentage near any moving average. now we can get some alert when price is near that moving average
Scalping asuuini buat scalping ya rencang rencang, jadi ini saya buat agar memudahkan ketika scalping, digunakan time frame 1, 5. dan 15 untuk tren arah
Doji NattawatSure! Here's a detailed explanation of the Pine Script code in English. This code is designed to detect Doji candles, draw horizontal lines at the open and close prices of these candles, and display the price values near those lines.
AEGIS TRADING SIGNALAEGIS TRADING SIGNAL RSI Calculation: Tính chỉ số RSI dựa trên giá đóng cửa với độ dài mặc định là 14.
RSI Higher Lows: Kiểm tra RSI tạo 3 đáy cao dần, tất cả đều nằm dưới ngưỡng 20.
Price Lower Lows: Kiểm tra đường giá tạo 3 đáy thấp dần.
Buy Signal: Khi cả hai điều kiện trên thỏa mãn, chỉ báo hiển thị tín hiệu mua (hình tam giác nhỏ màu xanh lá cây bên dưới nến).
RSI Visualization: Vẽ đường RSI và ngưỡng 20 để bạn dễ quan sát.