[TehThomas] - Simple MA Crossover📊 MA Crossover Indicator – Spot Trend Reversals with Confidence!
This powerful Moving Average Crossover Indicator is designed to help traders identify trend shifts with precision and clarity. Whether you trade forex, crypto, or stocks, this tool provides an easy-to-use visual representation of market momentum, allowing for smarter entries and exits.
How It Works
This indicator plots two simple moving averages (SMA) and detects crossover events, highlighting key moments when the market is shifting direction:
✅ Golden Cross (Bullish Signal) 📈 – When the short-term moving average crosses above the long-term moving average, it signals potential upward momentum, often used as a buy confirmation.
✅ Death Cross (Bearish Signal) 📉 – When the short-term moving average crosses below the long-term moving average, it indicates a possible downtrend, often seen as a sell confirmation.
By using this indicator, traders can filter out noise and focus on meaningful trend shifts rather than reacting to short-term price fluctuations.
🎯 Why This Indicator is a Game-Changer
🔹 Clear Trend Confirmation – Helps traders validate market direction before entering a trade.
🔹 Works on Any Asset & Timeframe – Apply it to forex, stocks, crypto, or indices on any
timeframe (scalping to long-term trading).
🔹 Removes Emotion from Trading – Provides objective, rule-based confirmation to avoid
impulsive decisions.
🔹 Great for Beginners & Pros – Whether you're just starting out or a seasoned trader, this tool
simplifies trend analysis.
💡 Tip: Combine this with RSI, MACD, support/resistance levels, or volume analysis for even stronger trade setups!
__________________________________________
🚀 Add this indicator to your chart and take your trend-trading to the next level! If you find it useful, don’t forget to like, comment, and follow for more trading tools!
Educational
Improved Momentum and Pivot Reversal StrategyI don't really know. AI helped me make this. Its based on taking trades based on the overall trend of the market while finding entries based on pivot points.
9:20 AM High/Low & VWAPHigh low of 9:20 candle it measures the high and low of 9:20 candle and draws line with the break of low take a trade and high break take a trade
Timeframe Display Table with CustomizationsPlaces a single cell table in the top right of the chart to display the currently viewed timeframe at all times on the chart.
Amir IndicatorThe indicator shows the watermark ticker, the market cap and the 14 day ATR on left upper side of the screen
Support Resistance - Percentile LevelsKey Features:
1. Percentile Calculations:
The indicator calculates the 95th percentile (PercentilePlot100) and the 5th percentile (PercentilePlot5) of the high and low prices over specified lengths.
The lengths for these calculations are adjustable via input fields, allowing users to customize the periods used for percentile calculations.
2. Percentile Levels:
Resistance Levels (R1, R2, R3, R4): Plots resistance levels based on the 95th percentile of the high prices over different lengths (100, 200, 750, 4500).
Support Levels (S1, S2, S3, S4): Plots support levels based on the 5th percentile of the low prices over different lengths (100, 200, 750, 4500).
3. High-Timeframe Average:
Calculates and plots the average of the 750-period high and low percentiles (htfavg), which acts as a pivot point on the chart.
How to Use This Indicator:
1. Identify Key Support and Resistance Levels:
Use the plotted resistance (R1, R2, R3, R4) and support (S1, S2, S3, S4) levels to identify key areas where price may reverse or consolidate.
2. Pivot Point Analysis:
The plotted pivot point (htfavg) can be used to identify potential areas of trend change or consolidation. It represents the average price level based on higher timeframe percentiles.
3. Trend Analysis:
By observing how price interacts with these percentile levels, traders can gain insights into market trends and potential reversal points.
Customization:
The input fields allow you to customize the lengths of the percentiles and the percentile plot values according to your trading strategy and timeframe preference.
In summary, this indicator can help traders identify significant support and resistance levels, potential pivot points, and overall market trends based on percentile calculations of high and low prices over various periods. This can be valuable for making informed trading decisions and setting entry and exit points.
If you have any specific questions or need further customization, feel free to ask! 😊
Support and Resistance Levels_hemantSupport and Resistance Levels Support and Resistance Levels Support and Resistance Levels Support and Resistance Levels Support and Resistance Levels Support and Resistance Levels Support and Resistance Levels Support and Resistance Levels Support and Resistance Levels
Support and Resistance Levels_HemSupport and Resistance Levels Support and Resistance Levels Support and Resistance Levels Support and Resistance Levels Support and Resistance Levels Support and Resistance Levels
NextAi SignalsIndicador criado com base em padrões de reversão e exaustão de preço .. utilizando analise gráfica e candles de exaustão.
Indicador criado exclusivamente para a plataforma NextAi
Next.Ai SignalsIndicador criado com base em exaustão de mercados de CFDs. utilizando padrões e sinais de reversão a exaustão de preço.
Este indicador foi criado exclusivamente para ser usado na plataforma Next.Ai.
Bollinger Bands + RSI Strategy//@version=5
strategy("Bollinger Bands + RSI Strategy", overlay=true,
description="This is a trading strategy based on Bollinger Bands and RSI. The strategy generates buy and sell signals based on price action and market momentum. It buys when the price crosses above the lower Bollinger Band while the RSI is below 30 (indicating oversold conditions). It sells when the price crosses below the upper Bollinger Band while the RSI is above 70 (indicating overbought conditions). Positions are closed when the price crosses the middle Bollinger Band (the moving average).")
// Bollinger Bands parameters
length = input.int(20, title="Bollinger Bands Length")
src = input(close, title="Source")
mult = input.float(2.0, title="Bollinger Bands Multiplier")
basis = ta.sma(src, length)
dev = mult * ta.stdev(src, length)
upper_band = basis + dev
lower_band = basis - dev
// RSI parameters
rsi_length = input.int(14, title="RSI Length")
rsi = ta.rsi(src, rsi_length)
// Plot Bollinger Bands
plot(upper_band, color=color.red, linewidth=2, title="Upper Bollinger Band")
plot(lower_band, color=color.green, linewidth=2, title="Lower Bollinger Band")
plot(basis, color=color.blue, linewidth=1, title="Middle Band")
// Buy Condition
buy_condition = ta.crossover(close, lower_band) and rsi < 30
if buy_condition
strategy.entry("Buy", strategy.long)
// Sell Condition
sell_condition = ta.crossunder(close, upper_band) and rsi > 70
if sell_condition
strategy.entry("Sell", strategy.short)
// Exit Conditions (optional: use the middle Bollinger Band for exits)
exit_condition = ta.cross(close, basis)
if exit_condition
strategy.close("Buy")
strategy.close("Sell")
// Optional: Plot RSI for additional insight
hline(70, "Overbought", color=color.red)
hline(30, "Oversold", color=color.green)
plot(rsi, color=color.purple, title="RSI", linewidth=1, offset=-5)
isha//@version=6
import yashgode9/signalLib_yashgode9/2 as signalLib
indicator('isha', 'isha', true, format.price, max_labels_count = 200, max_lines_count = 50)
//--------------------- Prerequisites of script ---------------------// `, ` `, and `
DEPTH_ENGINE = input.int(30, 'DEPTH_ENGINE', minval = 1, step = 1, group = 'signalLib Config')
DEVIATION_ENGINE = input.int(5, 'DEVIATION_ENGINE', minval = 1, step = 1, group = 'signalLib Config')
BACKSTEP_ENGINE = input.int(5, 'BACKSTEP_ENGINE', minval = 2, step = 1, group = 'signalLib Config')
labels = input(0, 'Labels Transparency', group = 'Labels')
buycolor = input(#03ff85, 'Buy-Color', group = 'Colors')
sellcolor = input(#fc0808, 'Sell-Color', group = 'Colors')
buycolor1 = #000000
sellcolor1 = #000000
lines = 0
labelsize__0 = input.int(3, 'Label size', minval = 1, maxval = 5, group = 'Labels')
labelsize = switch labelsize__0
1 => size.tiny
2 => size.small
3 => size.normal
4 => size.large
5 => size.huge
repaint = true
extend = false
//--------------------- Main Logic of Script ---------------------//
= signalLib.signalLib(low,high,DEPTH_ENGINE,DEVIATION_ENGINE,BACKSTEP_ENGINE)
string nowPoint = ''
// Define variables in global scope
var float lastPoint = na
var float field_1 = na
var float field_2 = na
var float field_3 = na
field_0 = zee1.price
if bool(ta.change(direction))
field_1 := zee1.price
lastPoint := field_1
lastPoint
line zeezee = na
label point = na
if repaint
nowPoint := direction < 0 ? zee2.price < lastPoint ? 'Buy-point' : 'Buy-point' : zee2.price > lastPoint ? 'Sell-point' : 'Sell-point'
point := label.new(zee2, nowPoint, xloc.bar_time, yloc.price, color.new(direction < 0 ? buycolor : sellcolor, labels), direction > 0 ? label.style_label_down : label.style_label_up, color.new(direction > 0 ? buycolor1 : sellcolor1, labels), labelsize)
if direction == direction
line.delete(zeezee )
label.delete(point )
else
line.set_extend(zeezee , extend.none)
else
if direction != direction
field_2 := zee2.price
field_3 := zee2.price
nowPoint := direction < 0 ? field_2 < lastPoint ? 'Buy-point' : 'Buy-point' : field_3 > lastPoint ? 'Sell-point' : 'Sell-point'
point := label.new(zee2 , nowPoint, xloc.bar_time, yloc.price, color.new(direction < 0 ? buycolor : sellcolor, labels), direction > 0 ? label.style_label_down : label.style_label_up, color.new(direction > 0 ? buycolor1 : sellcolor1, labels), labelsize)
point
// Alert function for direction change
if bool(ta.change(direction)) // Convert to boolean
if direction > 0
alert("Sell signal generated!!!", alert.freq_once_per_bar_close)
else
alert("Buy signal generated!!!", alert.freq_once_per_bar_close)
Premarket High/Low w/ MidlineThe script draws the high and low of the premarket session including a supporting midline and based on these levels the ATR is added and also displayed on the chart as lines.
You can change:
The Session Timeframe
The ATR Multiple
If the Aftermarket session should be included
MFI 14 Divergence AlertBerikut adalah script Pine Script untuk mengidentifikasi divergensi reguler dan hidden pada indikator MFI 14 dengan level 20-80:
MFI Divergence AlertIndikator MFI Divergence Alert adalah alat analisis teknikal yang dirancang untuk mendeteksi divergensi reguler dan hidden antara harga dan Money Flow Index (MFI) pada grafik TradingView. Indikator ini membantu trader mengidentifikasi potensi pembalikan tren atau kelanjutan tren berdasarkan hubungan antara harga dan aliran uang.
Trading Entry Checklist (By Houman Trades)How to Use This Indicator
1️⃣ Install the Script
Add the script to your chart.
2️⃣ Customize Your Entry Criteria
To update the checklist based on your own strategy, modify two sections in the source code:
Checkbox for Settings → Controls the checklist in the indicator settings.
Function to Add Checklist Items → Controls what appears on the chart.
(Both should match for consistency - therefore you should see the criteria TWICE in the Pine Script)
3️⃣ Using the Checklist
Double-click on the indicator in your chart.
Check off each criterion as it occurs in real-time.
My YouTube: www.youtube.com
ICT + Engulfing + Supply & DemandThis strategy is making me $3000 a day, Good luck
As we know that ICT has been supper popular strategy and I have added the theory no ones talks about. this supply and demand also can help you massively .. I want you to win.
DOUBLE SMADual SMA with Smoothing and Bollinger Bands
This advanced moving average indicator allows you to visualize and compare two SMAs (Simple Moving Averages) on a chart, with additional smoothing and Bollinger Bands options for enhanced technical analysis.
Key Features:
✅ Two Simple Moving Averages (SMA):
SMA 1 is mandatory, with adjustable length and offset.
SMA 2 is optional and fully customizable, including length, offset, and color.
✅ Smoothing Options for SMA 1:
Multiple moving average types: SMA, EMA, SMMA (RMA), WMA, and VWMA.
Bollinger Bands (optional): Automatically calculated when "SMA + Bollinger Bands" is selected.
✅ Smart Validations:
Prevents unnecessary calculations when the smoothing length is smaller than the SMA length.
SMA 2 is only plotted if enabled by the user.
✅ Customizable Settings:
Configure length, color, and offset for both SMAs.
Smoothing options with standard deviation control for Bollinger Bands.
How to Use It?
1- Set up SMA 1, selecting its length and data source.
2- Enable SMA 2 if you want to compare two moving averages, and adjust its parameters.
3- Activate smoothing if you need a more refined trend representation.
4- Select "SMA + Bollinger Bands" to visualize volatility zones and overbought/oversold levels.
This indicator is perfect for traders analyzing moving average crossovers, market trends, and high-volatility areas with Bollinger Bands. 🚀
Position Averaging (CryptoBus) 🚀 Averaging Strategy — новая стратегия усреднения для CryptoBus!
📈 Работает на основе динамического входа и выхода, адаптируется к рыночным условиям.
✅ Подходит для долгосрочных инвесторов и краткосрочных трейдеров.
⚙️ Разработано для CryptoBus.
DCA (CryptoBus)🚀 DCA (CryptoBus) — автоматизированная стратегия усреднения (Dollar-Cost Averaging) для TradingView!
📉 Покупай активы равными частями на падениях и снижай среднюю цену входа.
🔧 Гибкая настройка параметров для адаптации под рынок.
kfir harushהאינדיקטור מראה את שם המניה
שווי השוק שלה
התנודתיות שלה
ומרחק מממוצע 150 ימי מסחר אחרונים
Stoch RSI Buy and Sell Signal_Hemthis indicator is purely based on default values of stochastic rsi. it will generate buy and sell signall according to default values of stochastic rsi.