المؤشرات والاستراتيجيات
Advance Alok LevelThis is script based on the calculated levels, when the price reacts with these levels, it tells to go for long or short. It is a research base topic and can be improved by any of our members
Multi-Timeframe 10-Criteria A-B-C Setup DetectorThis advanced multi-timeframe indicator checks 10 distinct criteria across 5-minute (previous bar) and 1-minute charts to trigger C/B/A setups (8/9/10 criteria).
RSI RitzThis script places a buy order when buy conditions are met and closes the position when the sell conditions trigger. You can adjust the RSI threshold if needed. Buy condition when rsi cross over certain number and sell signal by RSI cross down certain number given to strategy.
Engulfing BoxEngulfing Day Trading Strategy | Version 1.0
This indicator highlights Bullish and Bearish Engulfing candlestick patterns, designed for day trading strategies. It identifies key market reversals and potential breakout points using simple price action principles.
🔑 Features:
Detects Bullish and Bearish Engulfing patterns based on customizable trend filters.
Automatically draws percentage levels (20%, 50%, and 75%) for target zones.
Bullish Engulfing → Levels drawn top to bottom.
Bearish Engulfing → Levels drawn bottom to top.
Highlights the engulfing candle and previous bar with colored boxes.
Supports trend detection using SMA50 or SMA50 & SMA200.
Alert conditions for both bullish and bearish setups.
Ideal for scalping, day trading, and identifying potential reversals.
📊 How to Use:
Apply the indicator on your preferred time frame (5M, 15M, 1H, etc.).
Wait for the engulfing pattern to form and monitor the drawn levels for potential entry/exit points.
Use in combination with volume or momentum indicators for enhanced confirmation.
⚠️ Disclaimer:
This is a tool for educational purposes and should not be considered financial advice. Always manage your risk and backtest before live trading.
CRT Strategy with 2:1 Risk/RewardHigher Timeframe Range: The strategy calculates the range from the most recent candle on the 1-hour chart.
Entry Conditions: The entry signals use a simple crossover (or you can replace this with any other condition you'd like). A long entry happens when the current close crosses above the highest close of the past 10 bars, and a short entry happens when the current close crosses below the lowest close.
Stop Loss & Take Profit: The stop loss is set based on the HTF range, and the take profit is 2x the range for a 2:1 risk-to-reward ratio.
Plotting: The stop loss and take profit levels are plotted on the chart for visualization.
Customization:
You can adjust the timeframe (htf) to any higher timeframe you'd like (e.g., 1-hour, 4-hour).
The entry condition (crossover and crossunder) is just an example. You can replace this with any other strategy or indicator.
You can also tweak the risk-to-reward ratio or other aspects of the strategy
24-Hour Volume and Fibonacci Levels StrategyExplanation:
24-Hour High and Low: The script tracks the highest and lowest prices within the past 24 hours.
Fibonacci Levels: It calculates the Fibonacci retracement levels (23.6%, 38.2%, 61.8%, and 78.6%) based on the high and low of the past 24 hours.
Volume: The script plots a 20-period simple moving average (SMA) of the volume to give an indication of the market's activity.
Plotting Fibonacci Levels: The Fibonacci retracement levels are plotted on the chart with distinct colors.
Estrategia MA 20/50 Solo Long - Cierre en Cruce BajistaOpens long positions when the MA 20 crosses above MA 50.
✅ Stops loss at 2% below entry price.
✅ Keeps the position open as long as MA 20 is above MA 50.
✅ Closes the position (take profit) when MA 20 crosses below MA 50.
✅ Allows reentry if MA 20 crosses back above MA 50.
✅ Allows reentry if the price increases 5% above the last exit price.
Long-Only For SPXThe "GOATED Long-Only" TradingView strategy, written in Pine Script v5, is designed for long-term momentum trading with a $50 initial capital. It identifies high-momentum stocks by calculating a composite momentum score across 3-month (63 days), 6-month (126 days), 9-month (189 days), and 12-month (252 days) periods, using the formula (current_price / past_price) - 1. The strategy filters stocks with annualized volatility below 0.5 (calculated as the standard deviation of daily returns, annualized by multiplying by the square root of 252 trading days) and requires momentum to exceed a customizable threshold (default 0.0). It enters long positions when momentum becomes positive and exits when it turns negative, using stop-loss (1%) and take-profit (50%) levels to manage risk. The strategy visualizes momentum and volatility on the chart, plotting entry/exit signals as green triangles (long entry) and red triangles (long exit) for backtesting and analysis.
5 EMA mvr trendtrend identify indicator
ema cross will show the direction
when all are jumbled up no direction
if all spreads , major trend start
200 ema is best trend change indication professor
Custom Volume & Price Indicator PT 3.0Custom Volume & Price Indicator PT 3.0. Custom Volume & Price Indicator PT 3.0
this is custom indicator, Custom Volume & Price Indicator PT 3.0
RSI, MME e Bandas de Bollinger para 60 Segundos//@version=5
indicator("RSI, MME e Bandas de Bollinger para 60 Segundos", overlay=true)
// Configurações do RSI
periodoRSI = input(14, title="Período do RSI")
rsiValor = ta.rsi(close, periodoRSI)
// Configurações da MME
periodoMME = input(9, title="Período da MME")
mmeValor = ta.ema(close, periodoMME)
// Configurações das Bandas de Bollinger
periodoBB = input(20, title="Período das Bandas de Bollinger")
desvioBB = input(2.0, title="Desvio Padrão das Bandas de Bollinger")
= ta.bb(close, periodoBB, desvioBB)
// Plotando o RSI em um gráfico separado
rsiPlot = hline(70, "Sobrecompra", color=color.red)
hline(30, "Sobrevenda", color=color.green)
plot(rsiValor, title="RSI", color=color.blue)
// Plotando a MME no gráfico
plot(mmeValor, title="MME", color=color.orange, linewidth=2)
// Plotando as Bandas de Bollinger
plot(superiorBB, title="Banda Superior", color=color.red)
plot(medioBB, title="Banda Média", color=color.blue)
plot(inferiorBB, title="Banda Inferior", color=color.green)
// Sinalização para condições de compra e venda
bgcolor(rsiValor > 70 ? color.new(color.red, 90) : na, title="Sobrecompra")
bgcolor(rsiValor < 30 ? color.new(color.green, 90) : na, title="Sobrevenda")
SK-System Wheat Indicatora nice fibonacci indicator, experiment and if it's useful to you, I'm glad I can help you
Backtest LoggerThis expert uses for backtesting. it can calculate your net profit of trades and drawdown and etc.
Jurik Moving Average Strategy//@version=5
indicator("Jurik Moving Average Strategy", overlay=true)
// Jurik Moving Average Function
length = input.int(21, title="JMA Length")
phase = input.float(0.5, title="JMA Phase")
source = close
// Calculate JMA using the built-in function
jma = ta.wma(ta.wma(source, length), length)
// Determine JMA Color and Signals
jma_up = jma > jma
jma_down = jma < jma
jma_color = jma_up ? color.green : color.red
buy_signal = jma_up and not jma_up // Color changed to green
sell_signal = jma_down and not jma_down // Color changed to red
// Plot JMA with color change
plot(jma, color=jma_color, linewidth=2, title="JMA")
// Plot Buy and Sell Signals
plotshape(buy_signal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(sell_signal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// Alerts
alertcondition(buy_signal, title="Buy Alert", message="Buy Signal: JMA turned green")
alertcondition(sell_signal, title="Sell Alert", message="Sell Signal: JMA turned red")
EMA with Trade Duration ControlSignals for Buying and Selling on EMA and VWMA crossing.
Back tested - 73% Win Rate - Best for 3:1 and Higher Risk to Reward Trades
RSI Relative Strength Index Dawit 2Multiple Relative Strength Index,
The first Relative Strength Index 5 is a very short period
The second Relative Strength Index 9 it moves a lib bit slower is a very short period
The third Relative Strength Index 12/14, the commonly used RSI
The forth and fives Relative Strength Index 40 and 60 are related for the long period so moves very slowly
In addition there is also the RSI Moving average
I have created a buy and sell signals based on
- Buy if RSI cross up above 55 and sell if RSI cross down 80 - good for monthly timeframe
-Other signals also when RSI5 is crossing RSI 9 etc.
You can custom as you prefer and always share with the community to help others
DS_Gurukul_5minTrendDS Gurukul (DS_5minTrend) Indicator: A Simple Yet Powerful Trend Tool
The Tushar Daily Bands (DS_5minTrend) indicator is a straightforward tool designed to help traders quickly visualize potential trend reversals and identify profitable trading opportunities. This indicator plots two bands—an upper band (green) and a lower band (red)—based on a small percentage deviation from the closing price of the first candle of each trading day.
How it Works:
The DS_5minTrend indicator calculates these bands at the start of each new trading day. The bands then remain fixed for the rest of that day. This daily reset allows traders to easily see how the current day's price action relates to the opening price and the calculated bands.
Trading Signals:
Potential Reversals: When the price approaches or touches the upper band (green), it can signal a potential overbought condition and a possible reversal to the downside. Conversely, when the price approaches or touches the lower band (red), it can suggest an oversold condition and a possible reversal to the upside.
Trend Confirmation: If the price consistently closes above the upper band for several periods, it may indicate a strong uptrend. Conversely, consistent closes below the lower band can suggest a strong downtrend.
Support and Resistance: The bands can also act as dynamic support and resistance levels. Traders can watch for price bounces off these levels as potential entry points.
How to Use:
Combine with other indicators: While DS_5minTrend can provide valuable insights, it's generally recommended to use it in conjunction with other technical indicators, such as RSI, MACD, or volume analysis, for confirmation.
Consider market context: Always consider the broader market context and news events that may be influencing price action.
Risk Management: Implement proper risk management strategies, including stop-loss orders, to protect your capital.
Disclaimer: The DS_5minTrend indicator is a tool for analysis and should not be the sole basis for making trading decisions. Trading involves substantial risk, and you could lose money. Always do your own research and consult with a financial advisor before making any investment decisions.
DR + Multi Kernel Regression + Signals + MA200 with TP/SL a simple indicator that can probably help you enjoy it
BBWP + Stochastic with DivergencesBased on Eric Krown crypto course, on Crypto School. It plots the Bollinger Bands width percentile alongside Stochastic. This is good for gaging volatility and momentum, to be used on a trending motion strategy.