אינדיקטורים ואסטרטגיות
Daily High and Low by Auto MarketsDaily High and Low by Auto Markets is a simple and effective tool to visualize the previous day’s high and low levels on your chart. These levels are critical for understanding key support and resistance areas and planning trades accordingly.
Key Features:
• Daily High and Low Levels: Automatically plots the previous day’s high (red) and low (green) on your chart.
• Dynamic Updates: Levels update automatically as new days begin.
• Includes Auto Markets branding, ensuring professional credibility.
How to Use:
1. Add the script to your chart.
2. Use the Daily High (red) as a potential resistance level and the Daily Low (green) as a potential support level.
3. Plan entries and exits based on price reactions to these levels.
About Auto Markets:
Developed by Auto Markets, a trusted name in trading solutions. Visit us at www.automarkets.co.uk for more innovative tools and resources.
Custom RSI Zones by Auto MarketsCustom RSI Zones by Auto Markets is a simple yet powerful tool for traders to monitor overbought and oversold conditions on the Relative Strength Index (RSI). With customizable levels and a clean visual representation, this script is perfect for traders of all skill levels.
Key Features:
• Customizable RSI Length: Adjust the RSI calculation period to fit your strategy.
• Overbought and Oversold Zones: Clearly marked at user-defined levels (default: 70 for overbought, 30 for oversold).
• Clean RSI Plot: Displays the RSI line on your chart for quick decision-making.
• Includes Auto Markets branding, ensuring professional credibility.
How to Use:
1. Set the RSI Length based on your preferred trading timeframe.
2. Customize the Overbought and Oversold Levels to align with your strategy.
3. Look for signals:
• Overbought Zone: RSI above the overbought level may indicate a potential reversal or correction.
• Oversold Zone: RSI below the oversold level may indicate a potential upward move.
About Auto Markets:
Developed by Auto Markets, a trusted name in trading solutions. Visit us at www.automarkets.co.uk for more innovative tools and insights.
Simple MA Crossover by Auto MarketsSimple MA Crossover by Auto Markets is a user-friendly tool designed to help traders identify potential entry and exit points using a moving average crossover strategy. It provides visual buy and sell signals, making it perfect for beginner and experienced traders alike.
Key Features:
• Plots short-term and long-term moving averages on your chart.
• Highlights buy (green) and sell (red) signals when moving averages cross.
• Fully customizable moving average lengths.
• Includes Auto Markets branding for credibility and trust.
How to Use:
1. Adjust the short and long moving average lengths to match your trading style.
2. Look for buy signals (when the short MA crosses above the long MA) and sell signals (when the short MA crosses below the long MA).
3. Incorporate the signals into your trading strategy for optimal results.
About Auto Markets:
Developed by Auto Markets, a trusted name in trading solutions. Visit us at www.automarkets.co.uk for more tools and insights.
3 Vs 1 AF with AlertsThis indicator can put 3 ema's & 1 ma. This can free up your cuota indicator limit to put on your chart. Happy trading
Yo! Check Out My Bitcoin Neural AI Trading StrategyHey guys and gals, I’ve been working on this trading strategy for Bitcoin, and I’m super excited to share it with you. It’s called the "BITCOIN BTC Neural AI Strategy," and it’s like a mashup of some classic indicators—RSI, MACD, and EMA—mixed together into one cool system. Think of it as your trading buddy with a brain. This is the strategy script, but I also have the indicator script which can be used to automate buy and sell signals directly to your phone, email, or your bot.
What It Does
Okay, so here’s the deal. This script takes:
RSI: Measures momentum (like, is the market pumped or tired?).
MACD: Checks if momentum is gaining or slowing (super handy for spotting moves).
EMA: Follows the big trend (like the market’s vibe over time).
Then, it smooshes all this data together and spits out a single number I call the Neural Proxy Value. If the value goes above 0.5, it’s like, “Go long, bro!” And if it drops below -0.5, it’s telling you, “Time to short.”
Backtest Results
Okay, let’s get real—backtesting matters. Check out the results for yourself in the attached performance summary. Some notables:
I included slippage & I included commission.
26% net profit
The profit also seems somewhat consistent which I think is the most important notable in the performance.
Large number of trades :)
Here’s the setup I use:
The script is ready for BITCOIN and I deploy it on the 1 hour timeframe because I feel like you 1 hour bars get enough data to make solid judgements.
How to Use It
Look at the Neural Proxy line—it’s color-coded and easy to spot.
Long when the line goes over 0.5. Short when it dips below -0.5.
Combine it with your own analysis or other tools to confirm the signals
Why You’ll Love It
This isn’t just another copy-paste of popular indicators. It’s like a cheat code that combines them into one number you can actually use. Plus, you can adjust it however you want. It’s great for people who like flexibility but don’t want to overcomplicate things.
워뇨띠 매매 전략
//@version=5
indicator("워뇨띠 매매 전략", overlay=true)
// === INPUTS ===
ema21 = ta.ema(close, 21)
ema55 = ta.ema(close, 55)
ema200 = ta.ema(close, 200)
rsi = ta.rsi(close, 14)
// Fibonacci 되돌림 레벨 (사용자는 수동으로 설정)
fibHigh = input.float(2.5, title="피보나치 고점")
fibLow = input.float(2.0, title="피보나치 저점")
fib_382 = fibLow + (fibHigh - fibLow) * 0.382
fib_618 = fibLow + (fibHigh - fibLow) * 0.618
// 거래량 확인
avgVolume = ta.sma(volume, 20)
highVolume = volume > avgVolume * 1.5
// === ENTRY CONDITIONS ===
// 매수 신호: 가격이 EMA21 상향 돌파, RSI 50 이상, 거래량 증가
longCondition = ta.crossover(close, ema21) and rsi > 50 and highVolume
// 매도 신호: 가격이 EMA21 하향 돌파, RSI 50 이하, 거래량 감소
shortCondition = ta.crossunder(close, ema21) and rsi < 50 and not highVolume
// === PLOT INDICATORS ===
plot(ema21, title="EMA 21", color=color.green, linewidth=2)
plot(ema55, title="EMA 55", color=color.orange, linewidth=2)
plot(ema200, title="EMA 200", color=color.red, linewidth=2)
hline(fib_382, "Fib 0.382", color=color.blue)
hline(fib_618, "Fib 0.618", color=color.blue)
// === SIGNALS ===
plotshape(longCondition, title="Long Signal", style=shape.labelup, location=location.belowbar, color=color.green, text="BUY", textcolor=color.white)
plotshape(shortCondition, title="Short Signal", style=shape.labeldown, location=location.abovebar, color=color.red, text="SELL", textcolor=color.white)
// === ALERTS ===
alertcondition(longCondition, title="Buy Alert", message="워뇨띠 매수 신호 발생!")
alertcondition(shortCondition, title="Sell Alert", message="워뇨띠 매도 신호 발생!")
워뇨띠 매매 전략
//@version=5
indicator("워뇨띠 매매 전략", overlay=true)
// === INPUTS ===
ema21 = ta.ema(close, 21)
ema55 = ta.ema(close, 55)
ema200 = ta.ema(close, 200)
rsi = ta.rsi(close, 14)
// Fibonacci 되돌림 레벨 (사용자는 수동으로 설정)
fibHigh = input.float(2.5, title="피보나치 고점")
fibLow = input.float(2.0, title="피보나치 저점")
fib_382 = fibLow + (fibHigh - fibLow) * 0.382
fib_618 = fibLow + (fibHigh - fibLow) * 0.618
// 거래량 확인
avgVolume = ta.sma(volume, 20)
highVolume = volume > avgVolume * 1.5
// === ENTRY CONDITIONS ===
// 매수 신호: 가격이 EMA21 상향 돌파, RSI 50 이상, 거래량 증가
longCondition = ta.crossover(close, ema21) and rsi > 50 and highVolume
// 매도 신호: 가격이 EMA21 하향 돌파, RSI 50 이하, 거래량 감소
shortCondition = ta.crossunder(close, ema21) and rsi < 50 and not highVolume
// === PLOT INDICATORS ===
plot(ema21, title="EMA 21", color=color.green, linewidth=2)
plot(ema55, title="EMA 55", color=color.orange, linewidth=2)
plot(ema200, title="EMA 200", color=color.red, linewidth=2)
hline(fib_382, "Fib 0.382", color=color.blue)
hline(fib_618, "Fib 0.618", color=color.blue)
// === SIGNALS ===
plotshape(longCondition, title="Long Signal", style=shape.labelup, location=location.belowbar, color=color.green, text="BUY", textcolor=color.white)
plotshape(shortCondition, title="Short Signal", style=shape.labeldown, location=location.abovebar, color=color.red, text="SELL", textcolor=color.white)
// === ALERTS ===
alertcondition(longCondition, title="Buy Alert", message="워뇨띠 매수 신호 발생!")
alertcondition(shortCondition, title="Sell Alert", message="워뇨띠 매도 신호 발생!")
워뇨띠 매매 전략
//@version=5
indicator("워뇨띠 매매 전략", overlay=true)
// === INPUTS ===
ema21 = ta.ema(close, 21)
ema55 = ta.ema(close, 55)
ema200 = ta.ema(close, 200)
rsi = ta.rsi(close, 14)
// Fibonacci 되돌림 레벨 (사용자는 수동으로 설정)
fibHigh = input.float(2.5, title="피보나치 고점")
fibLow = input.float(2.0, title="피보나치 저점")
fib_382 = fibLow + (fibHigh - fibLow) * 0.382
fib_618 = fibLow + (fibHigh - fibLow) * 0.618
// 거래량 확인
avgVolume = ta.sma(volume, 20)
highVolume = volume > avgVolume * 1.5
// === ENTRY CONDITIONS ===
// 매수 신호: 가격이 EMA21 상향 돌파, RSI 50 이상, 거래량 증가
longCondition = ta.crossover(close, ema21) and rsi > 50 and highVolume
// 매도 신호: 가격이 EMA21 하향 돌파, RSI 50 이하, 거래량 감소
shortCondition = ta.crossunder(close, ema21) and rsi < 50 and not highVolume
// === PLOT INDICATORS ===
plot(ema21, title="EMA 21", color=color.green, linewidth=2)
plot(ema55, title="EMA 55", color=color.orange, linewidth=2)
plot(ema200, title="EMA 200", color=color.red, linewidth=2)
hline(fib_382, "Fib 0.382", color=color.blue)
hline(fib_618, "Fib 0.618", color=color.blue)
// === SIGNALS ===
plotshape(longCondition, title="Long Signal", style=shape.labelup, location=location.belowbar, color=color.green, text="BUY", textcolor=color.white)
plotshape(shortCondition, title="Short Signal", style=shape.labeldown, location=location.abovebar, color=color.red, text="SELL", textcolor=color.white)
// === ALERTS ===
alertcondition(longCondition, title="Buy Alert", message="워뇨띠 매수 신호 발생!")
alertcondition(shortCondition, title="Sell Alert", message="워뇨띠 매도 신호 발생!")
High Win Rate BTC Strategy趋势确认:
使用短期EMA(20日)和长期EMA(50日)来确认市场趋势。
短期EMA上穿长期EMA表示上升趋势,反之表示下降趋势。
布林带突破:
利用布林带的突破来确认市场的波动性和潜在趋势的开始。
当价格突破布林带上轨时做多,跌破下轨时做空。
KDJ指标:
使用KDJ指标来判断市场的超买超卖情况。
在超卖区形成金叉时做多,在超买区形成死叉时做空。
止损和止盈:
使用ATR指标来动态设置止损和止盈,确保在盈利时锁定足够的利润,同时在亏损时止损不至于太大。
CheckList LIT AwakeningCheckList LIT Awakening en Español
Contiene la lista de confirmaciones necesarias para una entrada con la estrategia LIT.
Traducción del Check list original
PIETRO-VAROSScript de Aula do VAROS - aula3 7Envovlendo medias moveis e Hi-LO
Script transportado do Python
Sinceramente nem eu sei como isso funciona ainda
Fase de testes
Swing & Day Trading Strategy dddddThis TradingView Pine Script is designed for swing and day trading, incorporating multiple technical indicators and tools to enhance decision-making. It calculates and plots exponential moving averages (EMAs) for 5, 9, 21, 50, and 200 periods to identify trends and crossovers. The Relative Strength Index (RSI) and Moving Average Convergence Divergence (MACD) provide momentum and overbought/oversold signals. The script dynamically identifies and marks support and resistance levels based on recent highs and lows, while also detecting and labeling key candlestick patterns such as bullish and bearish engulfing, doji, and hammer candles. Bullish and bearish signals are highlighted on the chart with green and red backgrounds, respectively, and alerts are generated to notify traders of these conditions. All visualizations, including EMAs, support/resistance lines, and candlestick labels, are overlaid directly on the stock chart for easy interpretation. This comprehensive approach assists traders in spotting potential trading opportunities effectively.
FVGUtilsLibrary "FVGUtils"
isBullishFVG(idx)
Parameters:
idx (int)
isBearishFVG(idx)
Parameters:
idx (int)
getFvgSize(start, end)
Parameters:
start (float)
end (float)
getFVGSignals(lookback, minFvgSize)
Parameters:
lookback (int)
minFvgSize (float)
Advanced Trading Strategy max//@version=5
strategy("Advanced Trading Strategy", overlay=true)
// Parâmetros de entrada
shortPeriod = input.int(9, title="Short Period", minval=1)
longPeriod = input.int(21, title="Long Period", minval=1)
volumeThreshold = input.float(1.5, title="Volume Threshold Multiplier", minval=0.1)
volatilityPeriod = input.int(14, title="Volatility Period", minval=1)
// Cálculo das médias móveis
shortSMA = ta.sma(close, shortPeriod)
longSMA = ta.sma(close, longPeriod)
// Cálculo do volume médio
averageVolume = ta.sma(volume, longPeriod)
// Cálculo da volatilidade (ATR - Average True Range)
volatility = ta.atr(volatilityPeriod)
// Condições de compra e venda baseadas em médias móveis
maBuyCondition = ta.crossover(shortSMA, longSMA)
maSellCondition = ta.crossunder(shortSMA, longSMA)
// Verificação do volume
volumeCondition = volume > averageVolume * volumeThreshold
// Condição de volatilidade (volatilidade acima de um certo nível)
volatilityCondition = volatility > ta.sma(volatility, volatilityPeriod)
// Condições finais de compra e venda
buyCondition = maBuyCondition and volumeCondition and volatilityCondition
sellCondition = maSellCondition and volumeCondition and volatilityCondition
// Plotando as médias móveis
plot(shortSMA, title="Short SMA", color=color.red)
plot(longSMA, title="Long SMA", color=color.blue)
// Sinal de compra
if (buyCondition)
strategy.entry("Buy", strategy.long)
// Sinal de venda
if (sellCondition)
strategy.close("Buy")
// Plotando sinais no gráfico
plotshape(series=buyCondition, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=sellCondition, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// Configurando alertas
alertcondition(buyCondition, title="Buy Alert", message="Buy Signal Triggered")
alertcondition(sellCondition, title="Sell Alert", message="Sell Signal Triggered")
Multi-TF Pivots V1The Multi-TF Pivots Indicator is a powerful and customizable pivot point tool for TradingView. This script allows traders to calculate and display pivot points on a wide range of timeframes, from 1-minute to weekly intervals. It supports both Classic and Fibonacci pivot styles and includes options to customize line colors, label positions, and price visibility. The indicator is ideal for traders who rely on pivot points for intraday and swing trading strategies, offering a clear visual representation of key support and resistance levels. With its flexibility and comprehensive features, this indicator is an essential tool for precise technical analysis.
اندیکاتور Multi-TF Pivots یک ابزار قدرتمند و قابل تنظیم برای محاسبه و نمایش پیوت پوینتها در پلتفرم TradingView است. این اسکریپت به معاملهگران امکان میدهد پیوت پوینتها را در طیف گستردهای از تایمفریمها، از ۱ دقیقه تا هفتگی، محاسبه و نمایش دهند. این اندیکاتور از سبکهای پیوت Classic و Fibonacci پشتیبانی میکند و گزینههایی برای شخصیسازی رنگ خطوط، موقعیت برچسبها و نمایش قیمتها دارد. این ابزار برای معاملهگرانی که به پیوت پوینتها برای استراتژیهای معاملاتی روزانه و نوسانی متکی هستند ایدهآل است و نمایش بصری واضحی از سطوح کلیدی حمایت و مقاومت ارائه میدهد. با انعطافپذیری و ویژگیهای جامع خود، این اندیکاتور یک ابزار ضروری برای تحلیل تکنیکال دقیق است
Price Analysis with Custom LookbackThis TradingView indicator analyzes price data over a customizable lookback period to identify key metrics:
The highest daily close, representing the peak closing price during the specified period.
The highest wick, showing the maximum price reached within the same timeframe.
The lowest daily close, indicating the lowest closing price.
The lowest wick, reflecting the minimum price reached during the lookback period.
The indicator is useful for traders looking to understand recent price extremes and ranges. It provides a visual representation of these metrics on the chart, with customizable settings for the analysis period.
Simple Volume Profile with POC (Daily/4H Sessions) [Enhanced]Simple Volume Profile with a Point of Control (POC). The script does the following:
Accumulates volume in user-defined “bins” (price buckets) for a session.
Resets the volume accumulation each new “session”:
On a Daily chart, it considers weekly sessions (resets each Monday).
On a 4H chart, it considers daily sessions (resets at the start of each trading day).
Finds the Point of Control (the price bin with the highest accumulated volume).
Plots the histogram and the POC line on the chart.
Parabolic SAR This script provides an enhanced implementation of the Parabolic SAR (Stop and Reverse) indicator, a popular tool for identifying potential trend reversals in financial markets. The script incorporates additional features for improved usability and trading decision-making:
Key Features:
Customizable Parameters:
Initial Acceleration Factor: Start value for the SAR calculation.
Increment: Step value that increases the SAR during a trend.
Maximum Acceleration Factor: Cap for the SAR to prevent over-adjustment.
Buy & Sell Signals:
Buy Signal: Triggered when the price crosses above the SAR.
Sell Signal: Triggered when the price crosses below the SAR.
Signals are displayed as visually intuitive labels ("Buy" and "Sell") on the chart.
Alerts Integration:
Configurable alerts for buy and sell signals, allowing users to stay informed without actively monitoring the chart.
Dynamic Candle Coloring:
Candlesticks are dynamically colored based on the most recent signal:
Green: Buy signal (bullish trend).
Red: Sell signal (bearish trend).
Elegant SAR Plot:
The SAR is plotted as cross-style markers with a visually appealing magenta color.
How to Use:
Adjust the Initial Acceleration Factor, Increment, and Maximum Acceleration Factor in the input settings to match your trading style.
Enable alerts to receive notifications when buy or sell signals are generated.
Use the colored candlesticks as an additional confirmation tool to visualize market trends directly on the chart.
Cipher DCA Strategy70% + Accurate trading strategy, tailored for swing trading and Dollar-Cost Averaging (DCA) approach to build positions during bearish or oversold market conditions.
Here's how it works:
Market Entry: The script identifies optimal entry points by pinpointing when stocks are in an oversold state, making it an ideal time to buy. This is crucial for accumulating assets at lower prices, setting the stage for significant gains as the market rebounds.
Position Accumulation: By utilizing DCA, the strategy allows you to buy into the market in increments, reducing the impact of volatility and helping to mitigate risk during market downturns.
Swing Trading: Once the market begins to show signs of recovery, the strategy shifts to swing trading mode. It captures the upward momentum by holding positions through the market's upswing, aiming to sell near the peak of the bull market.
Market Exit: The indicator not only helps in buying low but also in selling high, guiding you to exit positions near what could be the top of the market cycle.
Daily Volatility Percentageindicator Description:
Daily Volatility Percentage Indicator
This indicator displays the daily volatility percentage of each candle directly on your chart. It calculates the difference between the High and Low prices of each candle and converts it into a percentage relative to the Low price. This allows you to quickly and clearly see how volatile each candle is.
Why This Indicator Is Useful:
Analyze Daily Volatility:
Helps identify high or low volatility, which can signal trading opportunities or elevated risk levels in the market.
Quick Decision-Making:
Displays essential data directly on the chart, eliminating the need for external calculations or tools.
Track Asset Behavior:
Suitable for all asset classes (stocks, crypto, forex, etc.), providing a clear view of market fluctuations over time.
Customizable:
Allows you to adjust the label colors and placement according to your preferences for a more personalized experience.
Who Can Benefit:
Day Traders: To spot high-volatility situations ideal for short-term trades.
Trend Traders: To identify assets becoming more volatile, which might indicate trend reversals.
Long-Term Investors: To find periods of relative stability in market movements.
This indicator is an effective tool for anyone looking to understand market dynamics quickly and efficiently.