Arsh time
The Macro indicator is designed to provide a high-level view of market trends by analyzing broader time frame data, such as weekly or monthly price action, volume, or macroeconomic sentiment overlays. This indicator helps traders stay aligned with the dominant trend by filtering out noise from lower time frames. It is particularly useful for swing and position traders who want to trade in the direction of macro momentum.
Indicatori e strategie
Arsh time
The Macro indicator is designed to provide a high-level view of market trends by analyzing broader time frame data, such as weekly or monthly price action, volume, or macroeconomic sentiment overlays. This indicator helps traders stay aligned with the dominant trend by filtering out noise from lower time frames. It is particularly useful for swing and position traders who want to trade in the direction of macro momentum.
Valtoro Trading BotThis PineScript code defines a trading strategy based on moving average crossovers with additional conditions and risk management. Here's a breakdown:
Strategy Overview
1%-2% Daily Profit!
The strategy uses two Simple Moving Averages (SMA) with periods of 100 and 200. It generates buy and sell signals based on the crossover of these MAs, combined with RSI (Relative Strength Index) conditions.
Buy and Sell Conditions
Buy: Short MA crosses over Long MA, RSI < 70, and close price > open price.
Sell: Short MA crosses under Long MA, RSI > 30, and close price < open price.
Close Conditions
Close Long: Short MA crosses under Long MA or RSI > 80.
Close Short: Short MA crosses over Long MA or RSI < 20.
Risk Management
Stop Loss: 2% of the entry price.
Take Profit: 5% of the entry price.
Position Sizing
The strategy calculates the position size based on a risk percentage (1% of equity) and the stop loss percentage.
Some potential improvements to consider:
1. Optimize parameters: Experiment with different MA periods, RSI thresholds, and risk management settings to improve strategy performance.
2. Add more conditions: Consider incorporating other technical indicators or market conditions to refine the strategy.
3. Test on different assets: Evaluate the strategy's performance on various assets and timeframes.
Higher Timeframe Ghost Candles (Labeled, Thicker)Displays the last three candles of the time frame above.
Time Frames I use:
Weekly
Daily
4h
1h
15m
5m
2m
1m
Candle % High/Low Bar + HL Order + MA by Barty&PitPapcioWhat does the indicator show?
The "Candle % High/Low Bar + HL Order + MA by Barty&PitPapcio" indicator displays the percentage deviation of each candle’s high and low relative to its open price. The zero line represents the candle’s open — bars above zero show upward movement from the open (to high), bars below zero show downward movement (to low).
Additionally, the indicator plots a dot above or below each bar indicating which came first during the candle — the high or the low — based on data from a lower timeframe two steps below the current chart (for example, on a 1-hour chart it uses 15-minute data).
Finally, the indicator calculates and plots a user-selectable moving average (EMA, SMA, or WMA) of these "first high or low" signals, helping identify trends whether the first move is more often upwards or downwards.
Where do the data come from?
Percentage values are calculated directly from the current chart’s candles:
highPerc=(High−Open)/Open×100%,
lowPerc=(Low−Open)/Open×100%
The timing of the first high or low for each candle is retrieved from a lower timeframe, stepping down two levels from the current timeframe (e.g. from 1H to 15 min), providing better precision in detecting the order of highs and lows that may be blurred on higher timeframes.
Additional features:
Full customization of colors for bars, dots, zero line, grid, and thicknesses.
Background grid with adjustable scale and style.
Safety checks for missing lower timeframe data.
A moving average smoothing the sequence of first high/low signals to reveal directional tendencies.
Suggested strategy for technical analysis support
Identify dominant candle direction: If the dot often appears above the bar (first high), it indicates buying pressure; if below (first low), selling pressure dominates.
Use percentage deviations: Large percent bars indicate heightened volatility and potential reversal points.
Moving average on order signals: The EMA of high/low first signals smooths the noise, showing the dominant trend in the sequence of price moves, useful for filtering other signals.
Combine with other tools: This indicator can act as a directional filter on multiple timeframes, synergizing well with momentum indicators, RSI, or support/resistance levels to confirm move strength.
Lots of love, Bartosz
VVIX Z-Score Signal with Bidirectional ROC HighlightUsing VVIX as a leading indicator, Z scores, rate of change to front run the SPY
Moving Average Convergence Divergenceindicator(title="Moving Average Convergence Divergence", shorttitle="MACD+", timeframe="", timeframe_gaps=true)
// === Input Parameters ===
fast_length = input(title = "Fast Length", defval = 12)
slow_length = input(title = "Slow Length", defval = 26)
src = input(title = "Source", defval = close)
signal_length = input.int(title = "Signal Smoothing", minval = 1, maxval = 50, defval = 9, display = display.data_window)
sma_source = input.string(title = "Oscillator MA Type", defval = "EMA", options = , display = display.data_window)
sma_signal = input.string(title = "Signal Line MA Type", defval = "EMA", options = , display = display.data_window)
// === MACD Calculation ===
fast_ma = sma_source == "SMA" ? ta.sma(src, fast_length) : ta.ema(src, fast_length)
slow_ma = sma_source == "SMA" ? ta.sma(src, slow_length) : ta.ema(src, slow_length)
macd = fast_ma - slow_ma
signal = sma_signal == "SMA" ? ta.sma(macd, signal_length) : ta.ema(macd, signal_length)
hist = macd - signal
// === Alerts ===
alertcondition(hist >= 0 and hist < 0, title = 'Rising to falling', message = 'The MACD histogram switched from a rising to falling state')
alertcondition(hist <= 0 and hist > 0, title = 'Falling to rising', message = 'The MACD histogram switched from a falling to rising state')
// === Plots ===
hline(0, "Zero Line", color = color.new(#787B86, 50))
plot(hist, title = "Histogram", style = plot.style_columns, color = (hist >= 0 ? (hist < hist ? #26A69A : #B2DFDB) : (hist < hist ? #FFCDD2 : #FF5252)))
// MACD 線顏色根據是否高於 0 自動切換
macd_color = macd >= 0 ? color.green : color.red
plot(macd, title = "MACD", color = macd_color)
plot(signal, title = "Signal", color = #FF6D00)
Multiple Moving AverageSeven moving averages, to assess momentum in short term, medium term and long term, with ability to change periods, color and moving average type. Useful in pullback trading
Regression Slope ShiftNormalized Regression Slope Shift + Dynamic Histogram
This indicator detects subtle shifts in price momentum using a rolling linear regression approach. It calculates the slope of a linear regression line for each bar over a specified lookback period, then measures how that slope changes from bar to bar.
Both the slope and its change (delta) are normalized to a -1 to 1 scale for consistent visual interpretation across assets and timeframes. A signal line (EMA) is applied to the slope delta to help identify turning points and crossovers.
Key features:
- Normalized slope and slope change lines
- Dynamic histogram of slope delta with transparency based on magnitude
- Customizable colors for all visual elements
- Signal line for crossover-based momentum shifts
This tool helps traders anticipate trend acceleration or weakening before traditional momentum indicators react, making it useful for early trend detection, divergence spotting, and confirmation signals.
Trade PlannerTrade planner - Input capital or No. of shares, entry price, target price, risk % and calculate your profit and risk
Futures Strategy: EMA + CPR + RSI (No OI)Strategy Logic:
✅ 20 EMA / 50 EMA crossover for trend direction
✅ CPR (Central Pivot Range) for support/resistance context
✅ Optional enhancements:
RSI filter to avoid overbought/oversold zones
Volume filter to avoid weak signals
Arsh time
The Macro indicator is designed to provide a high-level view of market trends by analyzing broader time frame data, such as weekly or monthly price action, volume, or macroeconomic sentiment overlays. This indicator helps traders stay aligned with the dominant trend by filtering out noise from lower time frames. It is particularly useful for swing and position traders who want to trade in the direction of macro momentum.
RSI + RSI MA Cross SignalIf the RSI crosses its moving average from above while above the 60 level, it gives a sell signal.
If the RSI crosses its moving average from below while below the 40 level, it gives a buy signal.
Both the RSI levels and the RSI moving average are adjustable.
Breakout Pro + ADX/Volume Filter🚀 Breakout Pro: ADX + Volume + RSI Filter
High-Probability Breakout System with Trend & Volume Confirmation
🔥 Why This Indicator Stands Out
A multi-filter breakout strategy designed for precision:
✅ ADX Trend Filter (Only trade when ADX > 25 = strong trend)
✅ Volume Spike Confirmation (2x avg volume = valid breakout)
✅ Auto Risk-Reward Tools (TP/SL based on breakout range)
✅ Retest Zones (Optimal secondary entries)
⚠️ Needs Upgrade! Help us add RSI momentum filters to reduce false signals!
📌 How It Works
Buy Signal (▲ Green Arrow):
Breakout above 20-period high
Strong ADX + high volume + bullish trend
Sell Signal (▼ Red Arrow):
Breakout below 20-period low
Strong ADX + high volume + bearish trend
Retest Levels (Blue/Orange Circles):
Potential low-risk re-entry zones
💻 Open-Source Collaboration
We’re inviting the TradingView community to enhance this indicator by:
pine
// TO-DO: Add RSI Momentum Filters
// 1. Avoid breakouts when RSI is overbought (>70) or oversold (<30)
// 2. RSI divergence confirmation
// Contributors will be credited!
🎯 Perfect For
Day traders & swing traders (stocks, forex, crypto)
Those who trade breakouts with volume confirmation
Developers who want to collaborate on open-source tools
📢 Note: This indicator is FREE. If you find it useful, support us with a like & share!
🔗 Tags:
#BreakoutTrading #ADX #VolumeSpike #RSI #PineScript #TradingStrategy
Open 2-Hour Line with Time LinesA Pine Script indicator that plots horizontal lines at the opening price of specified 2-hour intervals: 04:00, 06:00, 08:00, 10:00, 12:00, 14:00, 16:00, 18:00. The script includes customizable line styles, colors, and width options via user input.
Live Signal (Manual OI Trend)Show signal inside TradingView with manual trend override using this Pine Script:
Nadaraya Watson Envelope with AlertsAdded alerts option for the green and red triangle signals in the original LuxAlgo indicator for Nadaraya Watson Envelope. You can set the alerts by adding a new alert for this indicator in Tradingview in the usual way. You must please adhere to LuxAlgo's original creative commons licence requirements for their indicator. This is provided as is for educational purposes only.
Opening Range Breakout Detector📈 Opening Range Breakout Detector (TF-Independent)
Tracks breakouts with precision. No matter the chart, no matter the timeframe.
This indicator monitors whether price breaks above or below the Opening Range across multiple key durations — 1m, 5m, 10m, 15m, 30m, 45m, and 60m — using 1-minute data under the hood, while you can work on higher timeframe charts (daily, etc.).
Highlights:
✅ Status table shows which ORs broke UP or DOWN
⏱ Control which timeframes to track
🖼 Customizable table position, size and colors
Crafted by @FunkyQuokka
1R Breakout Highlighter1R Breakout. This indicator measures every bar and highlights any bar that is greater than the previous bar by more than 1R.
Futures Strategy: EMA + CPR + RSI + Volume + AlertsBuy when:
20 EMA crosses above 50 EMA
Price is above CPR
RSI is in acceptable zone (optional)
Volume is above average
📉 Sell when:
20 EMA crosses below 50 EMA
Price is below CPR
RSI is in acceptable zone (optional)
Volume is above average
Trend Dönüş Algoritması - Linear Regression + HacimIt gives a signal when the linear regression slope of the price turns from positive to negative or from negative to positive (i.e. when the trend changes) and at the same time there is an increase in volume.
Thus, there is both a trend reversal and volume confirmation.
These signals can be more reliable for the beginning and end of the trend.
Backtest: EMA + CPR + Volume + SL/TargetBacktest Strategy — EMA + CPR + Volume + SL/Target
Buy & Sell signals: Plotted on chart
Volume Spike Filter: Volume > 20-day average
Stop-Loss: 1.5% below entry price
Target: 3% above entry price (can be adjusted)
Backtest mode: Tracks performance
Works on all stocks (Futures or Equity)