PVSRA Volume Suite CombinedLe volume en bleue reste a améliorer " exemple en 3d arrière plan ou a moitié transparent".
Candlestick analysis
siubo_EMA Strategy Trending//@version=5
indicator("EMA Strategy with Full Background Coverage", overlay=true)
// 定義EMA週期
ema10 = ta.ema(close, 10)
ema20 = ta.ema(close, 20)
ema30 = ta.ema(close, 30)
ema200 = ta.ema(close, 200)
// 定義多頭與空頭狀態
longCondition = ema10 > ema30 // 10日EMA在30日EMA之上(多頭)
shortCondition = ema10 < ema30 // 10日EMA在30日EMA之下(空頭)
// 更新背景顏色
bgcolor(longCondition ? color.new(color.green, 90) : shortCondition ? color.new(color.red, 90) : na)
// 繪製EMA線
plot(ema10, color=color.blue, title="EMA 10")
plot(ema20, color=color.orange, title="EMA 20")
plot(ema30, color=color.purple, title="EMA 30")
plot(ema200, color=color.gray, title="EMA 200")
Moving average test scriptshowing buys and sells using the moving average. Looks for the areas and then shows an alert on the screen
CSP Entry Signal//@version=5
indicator("CSP Entry Signal", overlay=true)
// RSI Calculation
rsiLength = 14
rsiSource = close
rsiValue = ta.rsi(rsiSource, rsiLength)
// Moving Averages for Trend Confirmation
ema200 = ta.ema(close, 200)
// MACD Histogram for Momentum Confirmation
= ta.macd(close, 12, 26, 9)
// Support Level Detection (Simple Moving Low)
supportLookback = 20
supportLevel = ta.lowest(low, supportLookback)
// Implied Volatility Approximation (Using ATR as a Proxy)
atrLength = 14
atrValue = ta.atr(atrLength)
// Entry Conditions
rsiCondition = rsiValue < 55
trendCondition = close > ema200 and macdHist > 0
supportCondition = close <= supportLevel
// Final Entry Signal
cspEntrySignal = rsiCondition and trendCondition and supportCondition
// Plot Support Level
plot(supportLevel, title="Support Level", color=color.blue, linewidth=2, style=plot.style_stepline)
// Plot Entry Signal
plotshape(cspEntrySignal, location=location.belowbar, color=color.green, style=shape.labelup, size=size.small, title="CSP Entry")
// Alert Condition
alertcondition(cspEntrySignal, title="CSP Entry Alert", message="CSP Entry Signal Triggered")
Combined Support Resistance & Moving AveragesConverted the script to Pine Script version 6 syntax.
Replaced outdated functions like pivothigh and pivotlow with ta.pivothigh and ta.pivotlow.
Updated the input and plot methods to match version 6 standards.
Fixed any syntax issues related to brackets or line continuation.
Let me know if this works or needs further refinements!
Indicador de Força de VelaForça de vela = ((close-low)-(high-close))*volume
Mostra a força de compra e venda durante o desenvolvimento da vela. Pode ser usado para definir quando entrar , através da força do momento da vela.
BNF 3 min TF StrategyBNF strategy use on 3 min TF. use options with 0.40 delta. Have patience during drawdowns and do not exit profits early. Basically follow the strategy with discipline.
testinggklawlgjajlg wajgj awkgwajg lkwahg wahgwahg hjawgwwajkgjhawghwag hjwaghjwahg jawkjhgwhkajg jhaw g jawgjkwaghjwahgja
CPR, Pivot Levels, PDH/PDL, and EMAs BY HSEThis indicator include cpr with pivot levels, previous day high and low, and also you can add 3 ema's
Engulfing Candle IndicatorPlots a triangle when the engulfing candle is present. The engulfing candle in this context looks at the body, not the wicks.
MkBarLibrary "MkBar"
TODO: user data type with all basic candlestick properties
method init(b)
Namespace types: mk_bar
Parameters:
b (mk_bar)
method is_engulfing(b)
Namespace types: mk_bar
Parameters:
b (mk_bar)
mk_bar
Fields:
o (series float)
c (series float)
h (series float)
l (series float)
upper_wick (series float)
body (series float)
lower_wick (series float)
bullish (series bool)
bearish (series bool)
Candlestick Pattern Volume AnalysisBearish Engulfing Pattern - This script now fully handles Bullish Engulfing, Bearish Engulfing, Bullish Hammer, and Bearish Hammer patterns with volume-based breakout signals. Let me know if you need further modifications
MKD 1//@version=5
indicator("Buy and Sell Indicator with Bar Labels", overlay=true)
// Define short and long period for moving averages
shortPeriod = input.int(9, title="Short Period SMA")
longPeriod = input.int(21, title="Long Period SMA")
// Calculate the moving averages
shortSMA = ta.sma(close, shortPeriod)
longSMA = ta.sma(close, longPeriod)
// Plot the moving averages
plot(shortSMA, color=color.blue, linewidth=2, title="Short Period SMA")
plot(longSMA, color=color.red, linewidth=2, title="Long Period SMA")
// Generate Buy and Sell signals based on crossover
buySignal = ta.crossover(shortSMA, longSMA)
sellSignal = ta.crossunder(shortSMA, longSMA)
// Create labels for buy and sell signals on bars
if buySignal
label.new(bar_index, low, "BUY", style=label.style_label_up, color=color.green, textcolor=color.white, size=size.small, yloc=yloc.belowbar)
if sellSignal
label.new(bar_index, high, "SELL", style=label.style_label_down, color=color.red, textcolor=color.white, size=size.small, yloc=yloc.abovebar)
// Add alerts for Buy and Sell signals
alertcondition(buySignal, title="Buy Signal Alert", message="Buy Signal Triggered!")
alertcondition(sellSignal, title="Sell Signal Alert", message="Sell Signal Triggered!")
My script// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org
// © junxi6147
//@version=6
indicator("My script")
plot(close)
Asia Range Breakout StrategySimple Asia Range Breakout Strategy.
Long Example:
If we are in the trading session and a candle on the current timeframe closes above the asia range we enter a buy with x number of contracts.
SL is ATR multiplied by X
TP 1: Close x number of contracts when ATR multiplied by X is reached
TP 2: Close remaining contracts when ATR multiplied by X is reached
Vice versa for shorts.
Additional, Optional Conditions/ functions (long example):
- Only buy if the current daily candle is bullish → Inputs: true/false
- Only buy if the DXY is below the EMA with length X on timeframe X → Inputs: true/false, EMA length, EMA timeframe
- Trailing SL: ATR Based trailing SL → Inputs: Use Trailing SL true/ false, Trail after X ATR in Profit, Trail SL by X ATR
- Close all open positions x minutes before session end → Inputs: true, false, time input: X minutes before session end
Intraday Leading Indicator Strategy DHRUPAL JOSHIUseful for intraday and swing trading
Use Strategy before making proper analysis
Volume Candle WyckHello traders!
Este sencillo indicador muestra colores de velas más brillantes cuando su volumen es mayor que el volumen de las 3 velas anteriores con la finalidad de visualizar más fácil los posibles niveles de reacción del precio.
Wick Fake BreakoutThis indicator is designed to identify fake breakout setups with precision using EMA and RSI filters. It includes:
Signal Detection: Highlights potential long and short entries based on fake breakout conditions.
Stop Loss and Take Profit Levels: Automatically calculates dynamic SL/TP levels using a risk-reward ratio and order block analysis.
Performance Monitor: Tracks total entries, wins, losses, win rate, average profit, and total profit for both long and short trades.
Time Filter: Automatically restricts signals to specific trading hours (7:30 AM - 1:00 PM).
Customizable Parameters: Adjustable RSI length, EMA length, and risk-reward ratio.
Perfect for traders looking for a systematic approach to scalping or day trading. Clean visuals and optional debugging make it versatile for various trading styles.
Highlight Stocks by Initial Balance vs ATR (RTH)This indicators updates stocks when the IB is between 0.25 and 0.5 ATR
Qobavision indicatorEl "Qobavision Indicator" es una herramienta personalizada diseñada para identificar la acción del precio en relación con bandas dinámicas basadas en una EMA (Media Móvil Exponencial) de longitud configurable. Este indicador proporciona una guía visual clara mediante colores personalizados en las velas, según su posición con respecto a las bandas:
Velas verdes: El precio cierra por encima de la banda superior, lo que puede indicar un impulso alcista.
Velas rojas: El precio cierra por debajo de la banda inferior, lo que puede señalar un impulso bajista.
Velas grises: El precio cierra dentro de las bandas, indicando una posible consolidación o rango.
El ancho de las bandas se calcula utilizando un multiplicador configurable del ATR (Rango Verdadero Promedio), lo que permite que las bandas se ajusten dinámicamente a la volatilidad del mercado. Además, el indicador incluye opciones de personalización avanzadas, como colores para las velas y el fondo de las bandas, junto con la transparencia del relleno.
Características clave:
Configuración flexible de la longitud de la EMA y el multiplicador del ATR.
Personalización de colores para las velas y el fondo de las bandas.
Identificación visual clara de diferentes condiciones del mercado.
Adecuado para traders de todos los niveles que deseen analizar tendencias y volatilidad en cualquier temporalidad.
Candle Sequence Identifier1. **EMA Overlay**: Calculates and plots three EMAs (27, 100, 200) on the chart to show market trends.
2. **Candle Sequence Detection**: Identifies bullish and bearish candle patterns based on specific sequences:
- Buy signal: Two consecutive bearish candles followed by a bullish candle.
- Sell signal: Two consecutive bullish candles followed by a bearish candle.
3. **Risk-to-Reward Levels**: Calculates entry, stop loss, and take profit levels based on the current price and user-defined risk-to-reward ratio.
4. **Alerts and Visualizations**:
- Alerts notify you of buy/sell opportunities with calculated levels.
- Plots entry, stop loss, and take profit levels for easy visualization on the chart.
5. **Interactive Inputs**: Includes adjustable parameters like risk-to-reward ratio and stop loss offset for customization.