تنبؤ حركة الشارت (حجم وخطوط اتجاه)A forecast for the movement of the prices is helpful to add to the peviouse indicator
Indicatori di Bill Williams
Indicador Pro: Medias + RSI + ADX + Engulfing + FiboThis advanced indicator is designed to detect high-probability trading opportunities by combining multiple technical signals into a single system.
✅ Included Features:
EMA cross signals (fast vs. slow)
Confirmation via RSI (avoids overbought/oversold conditions)
Trend strength filter using ADX
Entry validation with Engulfing candlestick patterns
Automated buy/sell alerts
Dynamic Take Profit (TP) and Stop Loss (SL) levels
Automatic Fibonacci retracement zones
EMA + RSI Trend Strength v6✅ Indicator Name:
EMA + RSI Trend Strength v6
📌 Purpose:
This indicator combines trend detection (via EMA) with momentum confirmation (via RSI) to help traders identify high-probability bullish or bearish conditions. It also provides optional visual buy/sell signals and trend shading directly on the chart.
⚙️ Core Components:
1. Inputs:
emaLen: Length of the Exponential Moving Average (default: 50).
rsiLen: RSI period for momentum analysis (default: 14).
rsiOB, rsiOS: RSI levels for context (default: 70/30, but mainly 50 is used for trend strength).
showSignals: Toggle for showing entry signals.
2. Logic:
Bullish Condition:
Price is above the EMA
RSI is above 50 (indicating positive momentum)
Bearish Condition:
Price is below the EMA
RSI is below 50
3. Visuals & Outputs:
EMA Line: Orange line on the price chart showing the trend direction.
Buy Signal: Green triangle appears below the candle when bullish condition is met.
Sell Signal: Red triangle appears above the candle when bearish condition is met.
Background Color:
Light green when bullish
Light red when bearish
MACD Histogram v6This script plots the MACD histogram, a popular momentum indicator used to identify bullish/bearish momentum shifts, convergence/divergence between moving averages, and potential entry/exit signals.
Core Components:
Inputs:
fast – Period for the fast EMA (default: 12).
slow – Period for the slow EMA (default: 26).
signal – Period for the signal line EMA (default: 9).
Williams %RHuge T's William's Percent Range
5 and 10 length graph overlay
-4 represents overbought conditions
-94 represents oversold conditions
BTC 4H Entrées/SortiesAnalysis: Input and output this script was created by ChatGPT. I allow myself to use this artificial intelligence, in order to find the most precise entry points and exit points possible in order to generate profits in complete transparency with you.
Simple Bollinger BandsBollinger Bands are a popular technical analysis indicator used to measure market volatility and identify potential overbought or oversold conditions.
This script plots:
A middle band (20-period Simple Moving Average)
An upper band (SMA + 2 standard deviations)
A lower band (SMA – 2 standard deviations)
Simple 20 SMAThe Simple 20 SMA is a technical analysis indicator that calculates the average closing price of an asset over the last 20 candles (bars). It smooths out short-term price fluctuations to help traders identify the overall trend direction.
How It Works:
It takes the last 20 closing prices, adds them together, and divides by 20.
The result is plotted as a smooth line on the chart, updating with each new candle
MES Alerts: EMA9/21 + VWAP + Visual TradesTitle:
📈 MES Scalping Indicator – EMA9/21 + VWAP + Entry/TP/SL Visualization
Description:
This indicator combines a simple yet effective scalping setup tailored for the MES (Micro E-mini S&P 500) futures market.
🔧 Features:
EMA 9 & EMA 21 crossover logic
VWAP filter to confirm trend direction
Signal generation on pullbacks in trend direction
Visual trade levels:
Dashed lines for entry, take-profit, and stop-loss
Webhook-ready alerts for automated trading integrations (e.g., via Python, Tradovate API, etc.)
💬 Community Feedback Welcome:
This is an early version. I'm actively seeking input from traders and developers alike — especially around signal refinement, visualization, and automation compatibility.
Feel free to comment or fork.
Happy trading! 🚀
AI Score Indicator//@version=5
indicator("AI Score Indicator", overlay=true)
// Eingaben
length = input.int(14, title="RSI Length")
smaLength = input.int(50, title="SMA Length")
bbLength = input.int(20, title="Bollinger Band Length")
stdDev = input.float(2.0, title="Standard Deviation")
// Indikatoren
rsi = ta.rsi(close, length)
sma = ta.sma(close, smaLength)
= ta.bb(close, bbLength, stdDev)
// Scoring (simuliert ein KI-System mit gewichteten Bedingungen)
score = 0
score := rsi < 30 ? score + 1 : score
score := close < sma ? score + 1 : score
score := close < bb_lower ? score + 1 : score
score := ta.crossover(close, sma) ? score + 1 : score
// Buy-/Sell-Signale auf Basis des Scores
buySignal = score >= 3
sellSignal = rsi > 70 and close > sma
// Signale anzeigen
plotshape(buySignal, title="Buy", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(sellSignal, title="Sell", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// Score visualisieren (debugging)
plot(score, title="AI Score", color=color.orange)
Simple RSIThe Relative Strength Index (RSI) is a momentum oscillator that measures the speed and change of price movements. It helps traders identify overbought or oversold conditions in the market.
This script plots the 14-period RSI, which is one of the most commonly used settings.
How It Works:
The RSI ranges from 0 to 100.
Values above 70 suggest the asset may be overbought (a potential sell area).
Values below 30 suggest the asset may be oversold (a potential buy area).
Simple MA + RSI//@version=6
// This script is a called " "
// Description:
// This script implements a
// It includes customizable inputs for moving average lengths and plots signals directly on the chart.
//
// Features:
// - Customizable input parameters
// - Buy/sell signals plotted on chart
// - Can be used with alerts (via `alertcondition()`)
// - Suitable for
Volume Weighted Average PriceTitle: VWAP with Confirmed Breakout Color Shift
Description:
This is an enhanced Volume Weighted Average Price (VWAP) indicator that dynamically changes color based on confirmed price breakouts above or below the VWAP line.
✅ Green VWAP line indicates a strong bullish move (price has broken above VWAP by at least 0.2%).
🔻 Red VWAP line signals a bearish move (price has dropped below VWAP by at least 0.2%).
⚪️ Neutral gray is used when price is near VWAP without clear breakout confirmation.
Includes optional upper/lower bands based on either standard deviation or percentage distance from VWAP.
Ideal for identifying market bias and confirming momentum shifts in real time.
4wooindiDescription (한글)
이 지표는 BTC/ETH 가격 비율의 Z-Score와 개별 자산(BTC, ETH)의 RSI를 동시에 계산하여, 시장의 추세 강도와 과매수·과매도 구간을 한눈에 파악할 수 있는 통합 전략 대시보드를 제공합니다.
사용자 정의 가능한 기간(length) 및 진입·청산 임계값(threshold) 설정
캔들 차트 위에 오버레이 형태로 표시
트레이딩뷰 기본 툴바 및 알림 기능 완벽 호환
Description (English)
This indicator delivers an integrated strategy dashboard by calculating both the Z-Score of the BTC/ETH price ratio and the RSI of each asset (BTC, ETH), enabling you to visualize market trend strength and overbought/oversold conditions at a glance.
Customizable length and entry/exit threshold settings
Overlay display directly on your candlestick chart
Fully compatible with TradingView’s toolbar and alert system
Z-Score Pairs Trading Composite
z-score
Description (한글)
이 지표는 BTC/ETH 가격 비율의 Z-Score와 개별 자산(BTC, ETH)의 RSI를 동시에 계산하여, 시장의 추세 강도와 과매수·과매도 구간을 한눈에 파악할 수 있는 통합 전략 대시보드를 제공합니다.
사용자 정의 가능한 기간(length) 및 진입·청산 임계값(threshold) 설정
캔들 차트 위에 오버레이 형태로 표시
트레이딩뷰 기본 툴바 및 알림 기능 완벽 호환
Description (English)
This indicator delivers an integrated strategy dashboard by calculating both the Z-Score of the BTC/ETH price ratio and the RSI of each asset (BTC, ETH), enabling you to visualize market trend strength and overbought/oversold conditions at a glance.
Customizable length and entry/exit threshold settings
Overlay display directly on your candlestick chart
Fully compatible with TradingView’s toolbar and alert system
Bar ColorThis script implements a designed to [purpose – e.g., identify trend direction, generate trade signals, highlight overbought/oversold conditions
This script is based on , and is fully customizable with adjustable parameters.
Use it on any asset and timeframe. Best paired with .
9 EMA & 15 EMA Crossover Arrows//@version=5
indicator("9 EMA & 15 EMA Crossover Arrows", overlay=true)
// EMA calculations
ema9 = ta.ema(close, 9)
ema15 = ta.ema(close, 15)
// Detect crossovers (on previous candle)
bullishCross = ta.crossover(ema9 , ema15 )
bearishCross = ta.crossunder(ema9 , ema15 )
// Plot arrows on previous candle
plotshape(bullishCross, title="Bullish Cross", location=location.belowbar, color=color.green, style=shape.arrowup, size=size.small, offset=-1)
plotshape(bearishCross, title="Bearish Cross", location=location.abovebar, color=color.red, style=shape.arrowdown, size=size.small, offset=-1)
// Plot EMAs (optional for visual)
plot(ema9, color=color.green, title="9 EMA")
plot(ema15, color=color.orange, title="15 EMA")
Customizable Engulfing, Pin Bar, Inside Bar Colorengulfing,pin,inside bar candle which helps to identify these candles for better visualization and understanding
Bar Color2. indicator("Bar Color", overlay=true) "Bar Color" is the name of the script that will appear on your chart. overlay=true means this script will be drawn directly on the price chart (not in a separate pane). 3. ma = ta.sma(close, 10) This calculates a Simple Moving Average (SMA) of the closing prices over the last 10 bars (candles). ta.sma() is the built-in function for SMA in Pine Script v5. 4. barcolor(close > ma ? color.green : color.red) This line colors each candle/bar: Green if the current close is above the 10-period moving average. Red if the close is below or equal to the moving average. barcolor() changes the bar color but doesn’t plot anything visually on top of the candles — it only recolors them.
Market Structure by HorizonAIThis indicator shows SMC Market structure with BOS and CHoCH. Internal and external structur. Use external structure for better experience.
EUR/USD & DXY StrategyTVS entry module, SMT with DXY and EUR/USD, previous candle sweeps and SELL/BUY above and below opens.