Estrategia MACD
Combina señales del MACD con gestión de riesgo ajustable. Opera en cruces del MACD con su línea de señal cuando el histograma confirma la dirección.
Características principales:
Entradas: Cruces de líneas MACD con confirmación de histograma
Stop Loss: Mínimos/máximos de X velas previas
Take Profit: Ratio ajustable respecto al SL
Direcciones: Configurable para largos, cortos o ambos
Timeframe: Compatible con cualquier marco temporal
Parámetros personalizables:
Periodos MACD (12, 26, 9)
Velas para SL
Ratio riesgo/beneficio
Indicators and strategies
GB_Sir : 15 Min Inside Candle SetupIt fetches 15 Min Inside Candle Setup on chart. It draws lines on High and Low of 2nd candle. These lines are persistent even after changing timeframe of chart to any lower time frame. This helps to easily manage the trade on lower timeframe.
Daytrading ES Wick Length StrategyThis Pine Script strategy calculates the combined length of upper and lower wicks of candlesticks and uses a customizable moving average (MA) to identify potential long entry points. The strategy compares the total wick length to the MA with an added offset. If the wick length exceeds the offset-adjusted MA, the strategy enters a long position. The position is automatically closed after a user-defined holding period.
Key Features:
1. Calculates the sum of upper and lower wicks for each candlestick.
2. Offers four types of moving averages (SMA, EMA, WMA, VWMA) for analysis.
3. Allows the user to set a customizable MA length and an offset to shift the MA.
4. Automatically exits positions after a specified number of bars.
5. Visualizes the wick length as a histogram and the offset-adjusted MA as a line.
References:
• Candlestick wick analysis: Nison, S. (1991). Japanese Candlestick Charting Techniques.
• Moving averages: Brock, W., Lakonishok, J., & LeBaron, B. (1992). “Simple Technical Trading Rules and the Stochastic Properties of Stock Returns”. Journal of Finance.
This strategy is suitable for identifying candlesticks with significant volatility and long wicks, which can indicate potential trend reversals or continuations.
Omid's Reversal Detectorsimple reversal detector. using RSI and SMA
How it Works:
• RSI highlights overbought/oversold zones.
• Candlestick Patterns like engulfing and doji suggest potential reversals.
• Divergence between price and RSI signals trend exhaustion.
• Moving Average confirms trend direction to avoid false signals.
Nadaraya+ Bullish/BearishVí Dụ về Cảnh Báo:
Cảnh báo "Bullish Entry" sẽ kích hoạt khi điều kiện vào lệnh mua thỏa mãn (giá cắt qua dưới Lower NWE và có Bullish Reversal Bar).
Cảnh báo "Bearish Entry" sẽ kích hoạt khi điều kiện vào lệnh bán thỏa mãn (giá cắt qua trên Upper NWE và có Bearish Reversal Bar).
Cảnh báo "Bullish Reversal Bar" và "Bearish Reversal Bar" sẽ giúp bạn nhận tín hiệu đảo chiều ngay lập tức mà không cần phải vào lệnh.
Volatility StudiesStd deviation, MAD, ATR ... etc..
Based it on MAs like WMA, EMA, SMA, Rolling Vwap, Smoothed VWap.
Volatility StudiesStd deviation, MAD, ATR ... etc..
Based it on MAs like WMA, EMA, SMA, Rolling Vwap, Smoothed VWap.
Linear Regression Trend up and lower bands that can be tuned.
Credit to wpatte15 for original concept/open sourcing his script.
[c3s] Sk System CalculatorThe Sk System Calculator is a powerful trading tool designed to help you efficiently manage your trades by calculating the Stop Loss (SL) levels to break even and the first Take Profit (TP) targets. This indicator is ideal for traders looking to implement the SK System rules with ease and precision.
Key Features:
Amount in USD: Allows you to input the amount you wish to trade in USD.
Leverage: Adjust the leverage used in your trading strategy.
Percentage Calculation: Set the percentage for the next level calculation.
Dynamic Calculations: Automatically calculates the number of units based on the current price and leverage.
Break Even & TP1 Calculation: Provides the percentage values for when to move your SL to break even and the first TP level.
Clear Visual Display: Displays the calculated values in a user-friendly table on your chart.
This indicator simplifies your trading process by providing all the necessary calculations in one place, helping you to make more informed decisions and optimize your trading strategy.
Price vs EMA200 % DifferenceIt shows us whats the difference between price and ema200 with percentage. It can uses for regression analysis.
RSI with price volume by TradifyHere’s your RSI script with price volume, cleaned up and optimized:
Features:
RSI Calculation:
Computes RSI based on the user-defined length and source.
Midline (50) Plot:
A reference line at 50 for better RSI analysis.
Fill Visualization:
Highlights areas above 50 (red) and below 50 (aqua) for quick trend assessment.
Moving Averages:
Includes WMA (21, 5) for strength analysis and EMA (3) for price responsiveness.
If you’d like to add or adjust anything, let me know! 😊🙏
RSI 15min with 4H Filter (Long Only)核心逻辑:
买入:
15 分钟 RSI 低于超卖水平,且(如果启用 4 小时过滤)4 小时周期处于上涨趋势。
卖出:
15 分钟 RSI 高于超买水平,或者(如果启用 4 小时过滤)4 小时周期转为下跌趋势。
Bennette v.1Key Features:
Buy Conditions:
RSI is below 30 (indicating the market is oversold, and a potential price reversal to the upside could happen).
Price is at or below the lower Bollinger Band, signaling a possible reversal from a downtrend.
Sell Conditions:
RSI is above 70 (indicating the market is overbought, and a potential price reversal to the downside could happen).
Price is at or above the upper Bollinger Band, signaling a possible reversal from an uptrend.
Advanced RSI, MACD & Pattern Detection Systemscript which might determine the overbought and oversold zone on the chart while monitoring and analyzing previous movement in the chart. based on every technical aspect of pattern recognition and manipulation , consolidation, support and resistance of past data which could lead to determine the future movement in the chart
MA Crossover Signal// Menentukan versi Pine Script
//@version=5
indicator("MA Crossover Signal", overlay=true)
// Parameter Moving Average
ma_short_length = 9
ma_long_length = 15
// Menghitung Moving Average
ma_short = ta.sma(close, ma_short_length)
ma_long = ta.sma(close, ma_long_length)
// Kondisi Sinyal Buy dan Sell
buy_signal = ta.crossover(ma_short, ma_long)
sell_signal = ta.crossunder(ma_short, ma_long)
// Plot Moving Averages
plot(ma_short, color=color.blue, title="MA 9")
plot(ma_long, color=color.red, title="MA 15")
// Memberikan sinyal pada chart
plotshape(buy_signal, style=shape.labelup, location=location.belowbar, color=color.green, size=size.small, title="Buy Signal", text="BUY")
plotshape(sell_signal, style=shape.labeldown, location=location.abovebar, color=color.red, size=size.small, title="Sell Signal", text="SELL")
// Menambahkan alert
alertcondition(buy_signal, title="Buy Alert", message="MA 9 Crosses Above MA 15")
alertcondition(sell_signal, title="Sell Alert", message="MA 9 Crosses Below MA 15")
Combined Indicator//@version=5
indicator("Combined Indicator", overlay=false)
// Input settings
rsiLength = input.int(14, title="RSI Length")
macdFast = input.int(12, title="MACD Fast Length")
macdSlow = input.int(26, title="MACD Slow Length")
macdSignal = input.int(9, title="MACD Signal Length")
maLength = input.int(50, title="MA Length")
// RSI Calculation
rsi = ta.rsi(close, rsiLength)
// MACD Calculation
= ta.macd(close, macdFast, macdSlow, macdSignal)
// Moving Average Calculation
ma = ta.sma(close, maLength)
// Plot RSI with overbought/oversold lines
hline(70, "Overbought", color=color.red)
hline(30, "Oversold", color=color.green)
plot(rsi, "RSI", color=color.blue)
// Plot MACD lines
plot(macdLine, "MACD Line", color=color.orange)
plot(signalLine, "Signal Line", color=color.purple)
// Plot Moving Average
plot(ma, "Moving Average", color=color.teal, linewidth=2)
Variación de Precios y VolumenLa variación del precio de venta es la diferencia entre el precio de venta estándar y el precio de venta real por unidad del producto o servicio. La variación del volumen de ventas es la diferencia entre el volumen de ventas real y la cantidad presupuestada vendida a un precio específico .
EMA Signal ProTrendCandle Tracker
Tracks trends and signals dynamically as candles follow EMA crossovers.
Dynamic Pivot Signals
Combines EMA crossovers with dynamic candle-following signals for pivots.
Crossover Pulse
Highlights BUY and SELL opportunities based on EMA crossover "pulses."
EMA Signal Pro
A professional-grade indicator focused on EMA-based BUY and SELL signals.
BuySell Flow
Smoothly identifies and tracks BUY and SELL zones with flowing lines.
Signal Glide
Glides through trends with lines following EMA crossover signals.
PivotEMA Signals
Integrates pivot levels and EMA crossovers to provide clear signals.
CandlePath Tracker
Follows candle movements after EMA crossovers for actionable signals.
LineSync Signals
Synchronizes BUY and SELL signals with dynamic lines on the chart.
TrendWave Signals
Captures wave-like trends, providing precise entry and exit points.
EMA Signal ProTrendCandle Tracker
Tracks trends and signals dynamically as candles follow EMA crossovers.
Dynamic Pivot Signals
Combines EMA crossovers with dynamic candle-following signals for pivots.
Crossover Pulse
Highlights BUY and SELL opportunities based on EMA crossover "pulses."
EMA Signal Pro
A professional-grade indicator focused on EMA-based BUY and SELL signals.
BuySell Flow
Smoothly identifies and tracks BUY and SELL zones with flowing lines.
Signal Glide
Glides through trends with lines following EMA crossover signals.
PivotEMA Signals
Integrates pivot levels and EMA crossovers to provide clear signals.
CandlePath Tracker
Follows candle movements after EMA crossovers for actionable signals.
LineSync Signals
Synchronizes BUY and SELL signals with dynamic lines on the chart.
TrendWave Signals
Captures wave-like trends, providing precise entry and exit points.
Zero-Lag,Volume-Speed,EMA,Renko-ChartThe script is based on multiple scripts for Zero-Lag, Volume speed and also includes Exponential Moving Average.
Thanks to @AlgoAlpha and @BoreDevil as their script initiated this customization.
The script gives a quick look into the short- and long-term trend status in the table on bottom-right.
On top-right, the table provides volume-based information. It shows "Slow" or "Fast" if the last candle volume is below or above moving average of volume.
This also provides 4 EMAs and the Renko chart.
The settings provide options to customized as per personal choices.
DEMA Cross Strategy with Donchian ChannelA simple Moving Average Cross Strategy using DEMA with adjustable lengths which may be tried for small gains in daytrading. Published for study purpose only. Added Donchian Channel to the chart to study the movement of prices within the channel.
Combined SuperTrend AI [AlgoAlpha & LuxAlgo]Introducing the Machine Learning Adaptive SuperTrend, an advanced trading indicator designed to adapt to market volatility dynamically using machine learning techniques. This indicator employs k-means clustering to categorize market volatility into high, medium, and low levels, enhancing the traditional SuperTrend strategy. Perfect for traders who want an edge in identifying trend shifts and market conditions.
What is K-Means Clustering and How It Works
K-means clustering is a machine learning algorithm that partitions data into distinct groups based on similarity. In this indicator, the algorithm analyzes ATR (Average True Range) values to classify volatility into three clusters: high, medium, and low. The algorithm iterates to optimize the centroids of these clusters, ensuring accurate volatility classification.
Key Features
🎨 Customizable Appearance: Adjust colors for bullish and bearish trends.
🔧 Flexible Settings: Configure ATR length, SuperTrend factor, and initial volatility guesses.
📊 Volatility Classification: Uses k-means clustering to adapt to market conditions.
📈 Dynamic SuperTrend Calculation: Applies the classified volatility level to the SuperTrend calculation.
🔔 Alerts: Set alerts for trend shifts and volatility changes.
📋 Data Table Display: View cluster details and current volatility on the chart.