지표 및 전략
Custom Anchored Vwaps with Date/Time3 Custom Anchored Vwaps With time and dates gives the user flexibility to set their own custom Anchored Vwaps
Ichimoku Entry & Exit Pointsاین اندیکاتور نقاط ورود خروج هم به صورت حد سود و هم به صورت حد ضرر را مشخص می کند
Monthly Vertical Lines//@version=5
indicator("Monthly Vertical Lines", overlay=true)
month_change = (month != month ) // Detects a new month
if month_change
line.new(x1=bar_index, y1=na, x2=bar_index, y2=na, extend=extend.both, color=color.gray, style=line.style_dotted, width=1)
James//@version=5
indicator("Forex Entry Signals (RSI + EMA)", overlay=false)
// Configuração do RSI
rsiLength = input(14, "RSI Length")
rsi = ta.rsi(close, rsiLength)
// Configuração da EMA
emaLength = input(50, "EMA Length")
ema = ta.ema(close, emaLength)
// Lógica de compra e venda
buySignal = ta.crossover(close, ema) and rsi < 30
sellSignal = ta.crossunder(close, ema) and rsi > 70
// Plot do RSI
plot(rsi, color=color.blue, linewidth=2, title="RSI")
hline(70, "Overbought", color=color.red)
hline(30, "Oversold", color=color.green)
// Marcar setas no gráfico
if buySignal
label.new(bar_index, close, text="BUY", color=color.green, style=label.style_label_up, textcolor=color.white, size=size.small)
if sellSignal
label.new(bar_index, close, text="SELL", color=color.red, style=label.style_label_down, textcolor=color.white, size=size.small)
Volume Divergence Lookback IndicatorDescription : The (VDLI 👑) is a tool designed to analyze volume divergences relative to specific lookback periods, helping identify potential trend changes in the markets. this indicator adapts to different timeframes and allow users to customize lookback and calibration parameters for optimized insights into volume and price dynamics.
Dynamic Price level ArayPrice lines will move with the chart. Enter the different levels you want to watch. Once entered there is no need to move them. Very useful to have your levels moving on any time frame.
Vingativo MilionárioPasso 1: Crie uma conta na corretora na qual o Script funciona: nextronbroker.online
Passo 2: Logue na sua conta aqui no Tradingview, se não tiver, crie uma gratuitamente.
Passo 3: Clique na ⭐ acima para adicionar o script aos favoritos.
Pronto, agora é so abrir o ativo, clicar em indicadores e adicionar o script do vingativo no seu gráfico.
Combined IQ Zones, VWAP, EMA, S/RCombined IQ Zones, VWAP, EMA, S/R
Combined IQ Zones, VWAP, EMA, S/R
Combined IQ Zones, VWAP, EMA, S/R
Combined IQ Zones, VWAP, EMA, S/R
Combined IQ Zones, VWAP, EMA, S/R
Predictive Ranges [LuxAlgo] with BTC/USDT.D AnalysisIn this article, we will take a detailed look at how to customize the LuxAlgo Predictive Ranges indicator used in TradingView, how to make it more useful, and how to integrate additional functions. This indicator is a powerful analysis tool used specifically to predict movements in the BTC/USDT pair and generate buy-sell signals.
1. What is LuxAlgo Predictive Ranges?
The Predictive Ranges indicator developed by LuxAlgo predicts potential buy and sell zones based on the averages and volatility of the price over a certain period of time. This shows how much the price can fluctuate within a certain range and which zones it can move towards. Ranges usually cover two main areas, the upper and lower limits, and provide information on how the price movement will shape between these limits.
2. Extra Features and Enhancements
The above Pine Script code builds on LuxAlgo’s core Predictive Ranges functionality and adds a few important enhancements:
2.1. Comparing BTC and USDT Dominance Ranges
While the original LuxAlgo indicator only works on a specific asset, this customized version also makes predictions on the BTC/USDT pair as well as the USDT market dominance (USDT.D). This way, it is possible to understand how BTC is positioned against the general market movements.
Checking if BTC is in the Upper and Lower Zones: Buy and sell signals are generated based on whether the price of BTC is in the upper or lower zones within certain ranges.
Checking if USDT.D is in the Upper and Lower Zones: Similarly, the market dominance of USDT is also analyzed using these ranges.
The comparison between these two assets allows for more reliable signals to be generated based on market conditions. For example, when the BTC price is in the lower range and USDT.D is in the upper range, this could signal a BTC buying opportunity.
2.2. Fibonacci Levels
Fibonacci levels are widely used to predict potential retracements or bounces in price action. In this indicator, various Fibonacci levels are calculated between the prR2 and prS2 levels. This provides additional guidance for traders on where the price could retrace or bounce.
Fibonacci Levels:
13% (Fib13)
23% (Fib23)
38% (Fib38)
61% (Fib61)
70% (Fib70)
79% (Fib79)
86% (Fib86)
100% (Fib100)
These Fibonacci levels are used to predict potential support and resistance levels in price action.
2.3. RSI and Volume Analysis
RSI (Relative Strength Index) is an oscillator widely used to determine whether the price is overbought or oversold. Another important feature of this indicator is that it can analyze the strength of price movements with the RSI Period and Volume Coefficient settings. Volume analysis in particular provides additional information on whether a movement is sustainable or not. If the volume exceeds the average volume, this usually indicates that the price movement is strong.
RSI values are also calculated in different time frames (15 minutes, 30 minutes, 1 hour, 4 hours, 1 day), helping traders understand short-term and long-term market forces. In addition, the upper and lower threshold values of the RSI are determined, allowing for more clear monitoring of overbought and oversold conditions.
2.4. Indicators and Alarm Conditions on the Chart
The following features have been added to the chart regarding RSI and trend strength:
Rising Strength: The RSI value and the general condition of the price create signals that the trend is rising.
Falling Strength: Similarly, when the RSI value is low and the price is moving down, signals indicating a bearish trend are generated.
Buy and sell signals are generated only when BTC and USDT.D are in opposite zones. This ensures more accurate and reliable signals.
3. Custom Customizations for Users
This indicator can be customized according to the different analysis needs of users:
Length and Factor: Length and Mult factors are used to adjust the sensitivity of the indicator. This is important for customizing the trading strategy.
Timeframe Options: Users can analyze BTC and USDT.D in different timeframes.
RSI and Volume Settings: RSI period, upper and lower thresholds, and volume coefficient can be set by the user.
4. Alarm Conditions
Users can set the following alarm conditions to receive an alarm when certain conditions occur:
Buy Alarm: Triggered when BTC is in the buy zone and USDT.D is in the sell zone.
Sell Alert: Triggered when BTC is in the sell zone and USDT.D is in the buy zone.
Trend Strength Alerts: Rising or falling strength alerts with RSI value and volume.
Conclusion
LuxAlgo's Predictive Ranges indicator is a great way to predict market movements
Beardy Squeeze Pro (With high compression squeeze alert)Added high compression squeeze alert to the Beardy Squeeze Pro
EMA/RMA clouds by AlpachinoRE-UPLOAD
The indicator is designed for faster trend determination and also provides hints about whether the trend is strong, weaker, or if a range is expected.
It consists of an exponential moving average (EMA) and a slower smoothed moving average (RMA). I chose these because EMA is the fastest and is respected by the market, while I discovered through practice that the market often respects RMA, and in some cases, even more than EMA. Their combination is necessary because I want to take advantage of the best qualities of both averages. Displaying averages based solely on the close values creates a simple line that the market might respect. However, this is often not the case. Market makers know that many traders still believe in the theory that closing above/below an EMA signals a valid new trend. They commonly apply this belief to EMA200. Traders think that if the market closes below EMA, it signals a downtrend. That’s not necessarily true. This misconception often traps inexperienced traders.
For this reason, my indicator does not include a separate line.
I use what are called envelopes. In other words, for both EMA and RMA, the calculation uses the high and low of the selected period, which can be chosen as an input in the indicator.
Why did I choose high and low?
To stabilize price fluctuations as much as possible, especially to allow enough space for the price to react to the moving average. This reaction occurs precisely between the high and low.
Modes:
EMA Cloud – This is the most common envelope in terms of averages. It shows the best reactions with a period of 50.
What should you observe: the alignment of the envelope or its slope.
Usage:
Breakouts through the entire envelope tend to be strong, which signals that the trend may change. However, what interests you most is that the first test of the envelope after a breakout is the most successful entry point for trades in the breakout direction.
In an uptrend, the first support will be the high of the envelope, and the second (let’s call it the "ultimate support") will be the low of the envelope.
If, during an uptrend, the market closes below the low, be cautious, as the trend may reverse.
If the envelope is broken, trade the retest of the envelope.
In general, if the price is above the envelope, focus on long trades; if it’s below the envelope, focus on short trades.
Double Cloud – Since we already know that highs and lows are more relevant for price respect, I utilized this in the double cloud. Here, I use calculations for EMA and RMA highs and EMA and RMA lows.
The core idea is that since the price often reacts more to RMA than EMA, I wanted to eliminate attempts by market makers to lure you into incorrect directions. By creating more space for the price to react to the highs or lows, I made the cloud fill the area between EMA and RMA highs. This serves as the last zone where the price can hold. If the price breaks above this high cloud during a return, this doesn’t happen randomly—you should pay attention, as it’s likely signaling a range or a trend change.
The same applies to the low cloud for EMA and RMA.
The advantage of the double cloud is that you can see two clouds that may move sideways. This can resemble two walls—and they really act as such.
Usage:
Let’s say we have a downtrend. The market seems to be experiencing a downtrend exhaustion. Here's the behavior you might observe:
The price returns to the EMA/RMA low; the first reaction may still have some strength, but each subsequent return will move higher and higher into the cloud with increasingly smaller rejections downward. This indicates the absorption of selling pressure by bullish pressure. Eventually, the price may close above the cloud, significantly disrupting the downtrend and potentially signaling a reversal.
A confirmation of the reversal is usually seen with a retest of the cloud and a bounce upward into an uptrend.
The second scenario, which you’ll often see, involves sharp and significant moves through both envelopes. This kind of move is the strongest signal of a trend change. However, do not jump into trades immediately—wait for the first retest, which is usually successful. Additional tests may not work, as the breakout might not signify a trend change but rather a range.
When the clouds are far apart, it signals a weak trend or that the market is in a range. You will see that this is generally true. When the clouds cross or overlap, their initial point of contact signals the start of a stronger trend. The steeper the slope, the stronger the trend.
BTC vs Mag7 Combined IndexThis Mag7 Combined Index script is a custom TradingView indicator that calculates and visualizes the collective performance of the Magnificent 7 (Mag7) stocks—Apple, Microsoft, Alphabet, Amazon, NVIDIA, Tesla, and Meta (red line) compared to Bitcoin (blue line). It normalizes the daily closing prices of each stock to their initial value on the chart, scales them into percentages, and then computes their simple average to form a combined index. The result is plotted as a single red line, offering a clear view of the aggregated performance of these influential stocks over time compared to Bitcoin.
This indicator is ideal for analyzing the overall market impact of Bitcoin compared to the Mag7 stocks.
Support and Resistance (1 Hour)//@version=5
indicator("Support and Resistance (1 Hour)", overlay=true)
// Define the period for support and resistance (in this case, 50 bars)
length = input.int(50, title="Lookback Period", minval=1)
// Calculate the highest high and lowest low over the lookback period
highestHigh = ta.highest(high, length)
lowestLow = ta.lowest(low, length)
// Plot the support and resistance lines on the chart
plot(highestHigh, title="Resistance", color=color.red, linewidth=2)
plot(lowestLow, title="Support", color=color.green, linewidth=2)
// Add background shading to highlight areas near support and resistance
bgcolor(close >= highestHigh ? color.new(color.red, 90) : na)
bgcolor(close <= lowestLow ? color.new(color.green, 90) : na)
// Display the values of the support and resistance levels
plotchar(highestHigh, title="Resistance Value", location=location.top, color=color.red, offset=-1)
plotchar(lowestLow, title="Support Value", location=location.bottom, color=color.green, offset=-1)
Буллтренд ололоsssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss
Bollinger Bands CustomThe indicator is a customized version of Bollinger Bands with added trading signals. This indicator is designed to help traders identify potential entry (buy) and exit (sell) points based on the interaction between the price and the Bollinger Bands. Below, I will explain in detail its purpose, how it works, and how to use it.
Purpose of the Indicator
The main purpose of this indicator is:
Identify market volatility: Bollinger Bands expand and contract based on price volatility.
Provide trading signals: The indicator generates buy signals (BUY) when the price crosses the lower band and sell signals (SELL) when the price crosses the upper band.
Help identify dynamic support and resistance levels: The upper and lower bands act as dynamic resistance and support levels.
How the Indicator Works
The indicator is based on three main components:
Moving Average (SMA): It calculates the simple moving average (SMA) of the price over a specified period (length).
Bollinger Bands:
The upper band is calculated as the moving average plus a standard deviation multiplied by a factor (mult).
The lower band is calculated as the moving average minus a standard deviation multiplied by the same factor.
Trading signals:
A BUY signal is generated when the price crosses above the lower band.
A SELL signal is generated when the price crosses below the upper band.
How to Use the Indicator
Here is a step-by-step guide on how to use the indicator on TradingView:
1. Add the Indicator to the Chart
Copy the Pine Script code you created.
Open TradingView and go to the Pine Editor.
Paste the code and click "Add to Chart."
The indicator will be displayed directly on the price chart.
2. Customize the Parameters
You can customize the following parameters:
Moving Average Length (length): Set the period for the moving average (default is 20).
Price Source (source): Choose the price to use (default is the closing price).
Standard Deviation Multiplier (mult): Set the multiplier for the standard deviation (default is 2.0).
3. Interpret the Signals
BUY Signal: When you see a "BUY" label below a candle, it means the price has crossed above the lower band. This could indicate a buying opportunity.
SELL Signal: When you see a "SELL" label above a candle, it means the price has crossed below the upper band. This could indicate a selling opportunity.
4. Use Bollinger Bands as Support and Resistance
If the price approaches the upper band, it might indicate a resistance level.
If the price approaches the lower band, it might indicate a support level.
5. Monitor the Colored Background
The chart background turns light green when there is a BUY signal and light red when there is a SELL signal. This helps you quickly identify signals.
Practical Example
Suppose you are analyzing a daily chart of a stock or cryptocurrency:
If the price crosses above the lower band, the indicator will show a "BUY" label. You might consider this as a signal to open a long position.
If the price crosses below the upper band, the indicator will show a "SELL" label. You might consider this as a signal to close a long position or open a short position.
Limitations and Considerations
False signals: In range-bound markets, Bollinger Bands can generate many false signals. It is advisable to use this indicator in combination with other technical analysis tools.
Extreme volatility: During periods of high volatility, the bands expand, and signals may become less reliable.
Confirmation: It is always good practice to confirm signals with other indicators (e.g., RSI, MACD) or candlestick analysis.
Conclusion
My indicator is a useful tool for identifying potential trading opportunities based on Bollinger Bands. However, as with any indicator, it is important to use it in combination with other forms of analysis and risk management to maximize effectiveness. Happy trading! 🚀
Berma Rate Of Change [BROC]The provided code is a TradingView Pine Script indicator for calculating the Rate of Change (ROC) over multiple time periods. It includes the following features:
1. **Inputs**: Users can select different lengths for the ROC calculation, including 10, 20, 40, 80, and 160 periods, as well as choose the data source (e.g., closing price).
2. **ROC Calculation**: The ROC is calculated for each specified period using the formula:
\ )}{\left(\frac{(current\_price + price )}{2}\right)}
\]
This formula compares the current price with the price from the specified number of periods ago, normalized by the average of the two prices.
3. **Plotting**: The ROC values are plotted on the chart with colors indicating whether the ROC is positive (green) or negative (red). Each of the five ROC values is plotted separately.
4. **Zero Line**: A dashed horizontal line at zero helps identify the pivot point between upward and downward trends.
5. **Background Color**: The background color changes to a light green when all ROC values are positive and to light red when all ROC values are negative, providing immediate visual cues for overall trend conditions.
This indicator is useful for traders seeking to understand momentum and price changes over varying periods, giving insight into potential buy or sell signals.
5-Minute Momo StrategyEntry Conditions:
Buy when the short MA crosses above the long MA, RSI confirms no overbought condition, and MACD is bullish.
Sell when the short MA crosses below the long MA, RSI confirms no oversold condition, and MACD is bearish.
Exit Conditions:
Close long positions when the opposite crossover occurs or RSI becomes overbought.
Close short positions when the opposite crossover occurs or RSI becomes oversold.
Stop-Loss and Take-Profit:
Uses ATR-based levels for dynamic stop-loss and take-profit targets.
Visualization:
Plots moving averages, RSI levels, and MACD histogram for easy analysis.
Alerts:
Configurable alerts to notify traders of buy and sell signals.
흑트2 시그널Signal Description
This strategy utilizes double golden crosses and dead crosses of the MACD (Moving Average Convergence Divergence). When a second golden cross or dead cross meeting the specified conditions occurs, a signal is generated.
Long Position
1. The MACD must form two golden crosses below the zero line.
2. The first golden cross must be lower than the second golden cross.
Short Position
1. The MACD must form two dead crosses above the zero line.
2. The first dead cross must be higher than the second dead cross.
Position Entry
* after confirming a signal, wait for confirmation, such as breaking a resistance level in the desired direction on the observed timeframe.
* Enter the position at the breakout point when such confirmation occurs.
Filtering Options
To reduce noise, several filtering functions have been added. Further research may be needed.
1. Minimum Bar Count Between Golden/Dead Crosses (default = 5):
* Sets the minimum number of bars between crosses to ignore signals in sideways markets with frequent crosses due to small fluctuations.
2. Maximum Bar Count Between Golden/Dead Crosses (default = 30):
* Considers crosses too far apart as noise and ignores them.
3. Percentage Change Between Golden/Dead Crosses (default = 1%):
* Filters out signals where the percentage difference between the first and second cross is too small, considering them as noise.
4. Candle Close Comparison:
* When a golden cross occurs, the price should be declining.
* When a dead cross occurs, the price should be rising.
* In other words, filters signals to only consider MACD divergence.
5. RSI Filter:
* Displays long/short signals only when the RSI is above (or below) a specified level.
시그널 설명
맥디(macd)의 더블 골든크로스와 데드크로스를 활용한 기법. 조건에 맞는 두번재 데드크로스나 골든 크로스가 발생하였을때 두번째 골크나 데크에서 시그널 발생.
롱
macd가 제로라인 아래에서 골크를 두번생성.
첫번째 골크가 두번째 골크보다 아래에 있어야 함.
숏
macd가 제로라인 위에서 데드를 두번생성.
첫번째 데크가 두번째 데크보다 위에 있어야 함.
포지션 진입.
시그널이 발생하고 원하는 방향으로의 보는 시간프레임에서의 저항을 돌파하는 흐름이 나올때 돌파지점에서 포지션 진입.
필터링 : 노이즈 제거용으로 몇가지 필터링 기능을 추가함. 더 연구가 필요.
1. 골크/데크사이 최소바 개수(default=5) : 골크/데크간 최소 바의 개수로 횡보구간에서 작은 변동성으로 너무 잦은 골크/데크 발생하는 것을 무시하기 위한 옵션.
2. 골크/데크사이 최대바 개수(default=30): 골크/데크간 간격이 너무 넓은 것은 노이즈 간주하기 위한 옵션.
3. 골크/데크간 변화(%)(default=1) : 첫번째 골크(또는 데크)와 두번째 골크와의 변화율이 너무 적은 경우 노이즈로 간주 필터링 할수 있는 옵션.
4. 봉마감 비교: 골드가 발생하였을때 가격은 하락, 데크가 발생하였을때 가격은 상승. 즉 macd다이버전스 일때만 필터링
5. RSI filter : rsi 가 지정된 가격 이상(또는 이하)일때만 롱/숏 시그널 표시.
RSI & EMA Buy/Sell SignalsSimple RSI & EMA Buy/Sell Signals
target buy sell in 15 timeframe follow trend movement