Intrabar On Balance VolumeAn experimental modification of TradingView's built-in OBV indicator that calculates its value with intrabar data.
This leads to a more accurate OBV trace because it considers the price swings that happen within the time period of each candle, instead of only considering the candle close price.
For example: on a 4H timeframe a single candle spans 4 hours. In this indicator the OBV is calculated with 1-minute intrabar data, leading to a resolution of 240 intrabars per 4H candle (that is, it considers the volume and price swings that happened at each minute of those 4 hours).
Indicatori di ampiezza
Rets High/Low (2.0 Special Uncensored Edition)This script can be used as a visual aid in seeing the last highs and lows of price in a specific time period. It automatically updates the plots if new highs or lows are made within the given lookback period.
This is a fairly basic version currently, with new added features coming in future updates such as range between high/low and half and whole number detection.
BT Leading Candle IndicatorThe oscillator display consists of 3 lines (K, D and J - hence the name of the display) and 2 levels. K and D are the same lines you see when using the stochastic oscillator. The J line in turn represents the deviation of the D value from the K value. The convergence of these lines indicates new trading opportunities. Just like the Stochastic Oscillator, oversold and overbought levels correspond to the times when the trend is likely to reverse.
Function
BT Leading KDJ Candle Indicator use candles to indicate KD relationship. E.g. yellow candles for bull (K>=D) and fuchsia candles for bear (K=D and fuchsia for K KDJ K value
d --> KDJ D value
buysig --> KD buy signal in green triangle
selsig --> KD sell signal in red triangle
leadingline --> colorful leading line for KDJ
Pros and Cons
Pros:
1. Candle height can indicates the strength of trend and different colors are used for indicating KD relationship
2. a leading line is added as aux method to confirm KDJ signal
Cons:
1. It may satruate for extreme conditions of long and short as described in the chart, which is inherent KDJ shortcoming.
2. Not accurate for long and short entries and need filtering out noise and fake signal.
Remarks
More direct to observe and confirm trend with the leading line.
Read me
In real life, I am a prolific inventor. I have successfully applied for more than 60 international and regional patents in the past 12 years. But in the past two years or so, I have tried to transfer my creativity to the development of trading strategies. Trading view is the ideal platform for me. I am selecting and contributing some of the hundreds of scripts to publish in Trading view community. Welcome everyone to interact with me to discuss these interesting pine scripts.
The scripts posted are categorized into 5 levels according to my efforts or man hours put into these works.
Level 1 : interesting script snippets or distinctive improvement from classic indicators or strategy. Level 1 scripts can usually appear in more complex indicators as a function module or element.
Level 2 : composite indicator/strategy. By selecting or combining several independent or dependent functions or sub indicators in proper way, the composite script exhibits a resonance phenomenon which can filter out noise or fake trading signal to enhance trading confidence level.
Level 3 : comprehensive indicator/strategy. They are simple trading systems based on my strategies. They are commonly containing several or all of entry signal, close signal, stop loss, take profit, re-entry, risk management, and position sizing techniques. Even some interesting fundamental and mass psychological aspects are incorporated.
Level 4 : script snippets or functions that do not disclose source code. Interesting element that can reveal market laws and work as raw material for indicators and strategies. If you find Level 1~2 scripts are helpful, Level 4 is a private version that took me far more efforts to develop.
Level 5 : indicator/strategy that do not disclose source code. private version of Level 3 script with my accumulated script processing skills or a large number of custom functions. I had a private function library built in past two years. Level 5 scripts use many
Net New Highs CrossoverA lot of traders have a hard time to get in and out of the market at the right time.
Net New Highs of stocks can guide you to increase or decrease your exposure based on the current market health.
They are calculated by subtracting the new highs of the new lows, based on all stocks of the NYSE, NASDAQ and AMEX.
+ A positive value shows that the market is doing good, since more stocks are making new highs compared to new lows.
- A negative value shows that the market is doing bad, since more stocks are making new lows compared to new highs.
Combined with a moving average you can see crossovers that can warn you early when there is a change in the current market health.
Features
■ You can select different Net New High indices or combine them (NYSE, NASDAQ and AMEX)
■ You can specify a moving average line ( SMA / EMA and length)
■ Use single color or two colors for the moving average line to better spot the crossovers
Hints
*New highs and new lows index values currently only get updated at the end of the day
*Only works on daily timeframe
Strategy Crypto -- double your capitalBTCUSD -- 5 min
BUY POSITION
1 : The price is above the hull suite indicator
2 : The hull suite indicator is green
3 : The volume oscillator indicator is above 0
4 : A new blue candle should appear on the QQE MOD indicator
SELL POSITION
1 : The price is bellow the hull suite indicator
2 : The hull suite indicator is red
3 : The volume oscillator indicator is above 0
4 : A new red candle should appear on the QQE MOD indicator
Chande Kroll Stop今天和大家分享Chande Kroll Stop 回测, 信号采用了上限线和下限线共通反向趋势而决定买卖信号,如果有新的构思能提高买卖信号欢迎在留言区发表你的建议,祝你交易开心!
Adaptive Price ZoneThe Adaptive Price Zone was developed by Lee Leibfarth in 2006, and it attempts to create a band for mean-reversal strategies. It works by taking the double-smoothed average of the volatility from 5 days and adding/subtracting it from the average price of the day (hl2).
If you are planning to use it, remember that it changes throughout the day , so you might want to use an offset. You can also choose to use the true range for the volatility instead of the high and low difference.
LutrewMTF// ————— Plots
var cMarkerUp = color.new(color.lime, 0)
var cMarkerDn = color.new(color.red, 0)
plotshape(A1U, "Marker 1 Up", shape.triangleup, location.belowbar, cMarkerUp, size = size.tiny, text = "1")
plotshape(A2D, "Marker 2 Dn", shape.triangledown, location.abovebar, cMarkerDn, size = size.tiny, text = "2")
plotshape(A3U, "Marker 3 Up", shape.triangleup, location.belowbar, cMarkerUp, size = size.tiny, text = " 3")
plotshape(A4D, "Marker 4 Dn", shape.triangledown, location.abovebar, cMarkerDn, size = size.tiny, text = "4 ")
plotshape(A5U, "Marker 5 Up", shape.triangleup, location.belowbar, cMarkerUp, size = size.tiny, text = " 5")
plotshape(A6D, "Marker 6 Dn", shape.triangledown, location.abovebar, cMarkerDn, size = size.tiny, text = "6 ")
plotshape(A7U, "Marker 7 Up", shape.triangleup, location.belowbar, cMarkerUp, size = size.tiny, text = " 7")
plotshape(A8D, "Marker 8 Dn", shape.triangledown, location.abovebar, cMarkerDn, size = size.tiny, text = "8 ")
// ————— Alert
alertcondition( A1U or A2D or A3U or A4D or A5U or A6D or A7U or A8D, "Pivots MTF: Configured Markers", "Pivots MTF Alert")
// }
Cumulative DeltaThis scripts calculates the cumulative volume delta within the current day.
Options allow you to change the display type of this data (3 different configurations are given in the chart above)
The following options are available:
Colors selection
Reset cumulative delta everyday (can be disable to keep a continuous calculation of the delta over days)
Show histogram (used to display the delta as a positive/negative histogram)
Show daily High/Low levels (draw highest and lowest delta levels within the day)
Show candles (display the cumulative delta as candles)
Show Moving average (display a moving average which is reseted everyday at the same time as the cumulative delta itself)
Moving average length
This script will be updated if I feel the need to improve things or to add new features
TradingCube : Crypto : Pivot ScreenerThe Crypto Pivot Screener is a real-time scanner of a list of top crypto assets.
You can use the indicator to monitor the pivots of about 40 crypto assets.
At least once a month, I will update the List of Crypto assets.
The indicator includes three types of pivots . Classic, Fibonacci, and Standard.
You have the option to select between Daily, Weekly, and Monthly time frames as well
SRT Indicator script based on Knowledge sharing by NKIn a year, there are 248/ 252 trading days .
Half of this is 124. Even 125/ 126 can be taken.
For Ex: We get SRT value by dividing the Nifty Spot with 124 SMA value applied on Nifty in a Day Chart.
This value Travels between 0.6 ( Bottom) to 1.38/1.4/1.45/1.5 ( Top).
Ideal Entry in stock will be at 0.6, which is very rare. You tend to buy at 0.7/0.8/0.9/1.10.
Exit from stock will be at 1.5.
However, generally, we get a value of 0.8/0.9 and we should start investing 20 % at a time. For every 0.1 declines, we should add 20 % to the stock portfolio.
Start Booking Profit if the SRT value is above 1.35 & book 50 % of the portfolio when SRT value is 1.45.
For Traders, as when SRT value comes to 0.8/ 0.9. Buy when HM comes in a buy in Monthly Time Frame.
SRT moves between 0.6 to 1.5 and which is a very reliable parameter for Investing.
Best time to invest in NIFTY is when SRT is between 0.6 to 0.9, NIFTY returned 2X, 3X or even more in less than a year.
Make sure Hilega Milega on Monthly Time frame is BUY before investing at these levels
Invest in batches, 30% of your capital when SRT is 0.9 and repeat every 0.1 downside
BHCryptos Indicator(ENG) BHCryptos indicator is coded based on the codes of 3 different indicators. In total, it uses about 160 codes for information and based on that gives very precise and proven successful results. You will get all the information on how
to use the indicator and how to know when the BUY / SELL signal is from the author of the BHCryptos indicator. All you need to do is send an e-mail to: "buysell.signali1@gmail.com.
(BIH) BHCryptos indikator je kodiran na osnovu kodova od 3 razlicita indikatora.Sve ukupno koristi oko 160 kodova za informacije i na osnovu toga daje vrlo precizne i dokazano uspjesne rezultate. Sve informacije kako koristiti indikator i
kako znati kada je BUY/SELL signal dobit cete od autora BHCryptos indicatora . Sve sto trebate urditi jeste poslati e mail na :" buysell.signali1@gmail.com .
GS New Highs PointerWhat is this Indicator - This indicator i developed for identifying Highs and lows on weekly timeframe. It identifies new 52 weeks and 26 weeks high and during down trend market, it looks for new 6 month lows or 52 week lows
How to Use it - To use this indictor , You need to plot it in the chart and can be used in anytime frame. Whenever you see a stock showing green arrow below the price, then it means it has hit new 52 and 26 week highs. It basically means something interesting happening in that stocks and you can make your buy decision based on it if you are looking for momentum stocks
Market- It will work in any market condition Bull or bear if you are looking for momentum run
Condition - Use it when you are in satellite stocks and you want to identify if stocks is making new highs or not.
VINA for Futures Trading Volume Imbalance Analysis 30min+Price pattern is critical for trading. So is volume analysis, but volume is so hard to read.
Introducing VINA, the Volume Imbalance Next Action indicator. VINA is similar to OBV, the key being the volume being measured. VINA is developed over many years, using ideas from PVT and Accumulation / Distribution, normalized as an oscillator, and not just adding/subtracting like OBV, instead considering the size of the move like PVT.
It's not perfect, but VINA catches almost all of the major trends. Like all indicators, VINA gets whipsawed in choppy environments. VINA has been very accurate for trading futures, so I'm presenting it here with signals shown for 30 minute or higher timeframes.
Let me know what you think.
Anchored OBVThe On Balance Volume indicator (OBV) is used in technical analysis to measure buying and selling pressure.
It is a cumulative indicator meaning that on days where price went up, that day's volume is added to the cumulative OBV total.
If price went down, then that day's volume is subtracted from the OBV total.
The OBV value is then plotted as a line for easy interpretation.
On Balance Volume is primarily used to confirm or identify overall price trends or to anticipate price movements after divergences.
If On Balance Volume crosses over or under the zero line, it adds confluence to a bull/bear bias respectively.
Anchored On Balance Volume unlike traditional OBV, resets on your specified date and/or bar (clickable).
On Balance Volume Trend© 2022, CryptoNaut1000
An extension to "On Balance Volume Momentum (OBV Momentum)".
"OBV Trend" is a trend strength indicator, that can be used to identify strong trends and also trend changes based on volume.
High positive values indicate strong volume on the buy side, high negative values indicate strong volume on the sell side.
An increasing OBV trend indicates a strengthening buy trend or a weakening sell trend,
decreasing OBV trend indicates a strengthening sell trend or weakening buy trend.
OBV trend is calculated by plotting a short vs. a long moving average and filling the difference in volume.
OBV trend metric is absolute volume.
Realiszed CAP(Price) of BTC [DAkhatov]Realized Value: Rather than taking the current price of Bitcoin, Realized Value takes the price of each Bitcoin when it was last moved i.e. the last time it was sent from one wallet to another wallet. It then adds up all those individual prices and takes an average of them. It then multiplies that average price by the total number of coins in circulation.
_____________________________________________________________________________________________________________________________________________________________
Реализованная стоимость: Вместо того, чтобы брать текущую цену Биткойна, Реализованная стоимость берет цену каждого Биткойна, когда он был в последний раз перемещен, т.е. последний раз, когда он был отправлен из одного кошелька в другой кошелек. Затем он суммирует все эти индивидуальные цены и берет среднее значение. Затем он умножает эту среднюю цену на общее количество монет в обращении.
Double Zig Zag with High Low Prints for NimblerTA-FSTOREDouble Zig Zag is used for Marking the Highs and Lows to Help us in Trading and is important part of NimblerTA. Nimblerites use it on Daily Basis!
Aroon Backtest (Simple) [Loxx]Simple backtest for Bears Bulls Impulse found here:
What this backtest includes:
-Customization of inputs for Aroon calculation
-Take profit 1 (TP1), and Stop-loss (SL), calculated using standard RMA-smoothed true range
-Activation of TP1 after entry candle closes
-Long and short signal cross entries
-Continuation long and shorts entries calculated by lagged same-signal cross-ups and cross-downs
Happy trading!
Aroon [Loxx]The Aroon indicator is a technical indicator that is used to identify trend changes in the price of an asset, as well as the strength of that trend. In essence, the indicator measures the time between highs and the time between lows over a time period. The idea is that strong uptrends will regularly see new highs, and strong downtrends will regularly see new lows. The indicator signals when this is happening, and when it isn't.
Included:
-Long and short signal cross entries
-Continuation long and shorts entries calculated by lagged same-signal cross-ups and cross-downs
This is an exact clone of the "Aroon" for MT4 indicator
[VC] Cumulative Delta Volume BarsLet's first learn what is Delta & How to Use Cumulative Delta Volume Bars?
Cumulative Delta Volume Bars is one of the leading indicators that you can use when trading order flow. It gives you an instant snapshot of the buying and selling pressure in a market.
After reading the detailed description of "Cumulative Delta Volume Bars," you will understand how volume delta provides a critical edge by allowing you to spot significant potential reversals in the market. You will also learn to use this Cumulative Delta indicator in depth. (including rest session usability features)
What is Delta Volume?
Delta Volume is the difference between Buying and Selling Power. Delta Volume is calculated by taking the difference between the volume traded at the offer price and the volume traded at the bid price. (in simple words, the difference between buying pressure & selling pressure)
If delta volume is more than zero, you have more buying pressure than selling & vice versa, and if delta volume is less than zero, you have more selling pressure than buying.
In Order-Flow Analysis , traders used Cumulative Delta to measure the relationship between the Buying & Selling pressure Vs Price.
Cumulative delta volume takes the delta values for every bar and successively adds them together to provide a graph, as seen below visually.
Let me demonstrate by giving examples of how cumulative Delta can help measure the buying or selling pressure relative to the price move.
★ Trading Absorption & Exhaustion concepts with Delta
See the chart below & try to analyze the next possible move on the basses on the analysis mentioned on the chart.
➽➽ If you said Short, you were correct. ✅
Till Point A , both price & cumulative were aligned. (means there were no imbalances between Delta & Price).
But on Point B , the Cumulative Delta broke the previous resistance clearly and moved even further away from the resistance level, but the Price couldn't break the last resistance. It interprets that buyers applied a lot of buying pressure but no result. (Aggressive buying pressure absorbed by Passive sellers)
Due to this vast effort or failed attempt, buyers were exhausted and had no more strength to pull the Price up. That's why the Price reversed from Point B . See below image
★ Cumulative Delta Volume Bars is helpful when determining buying or selling pressure at different key price levels, such as swing highs or lows.
Let's recap on swing highs and swing lows.
➽ A swing high (S.H) is formed when the high reaches higher than the price action around it. Once the Price moves above a prior swing high and begins to retrace, a new swing high is formed.
➽ A swing low (S.L) is formed when the low reaches lower than price action around it. Once the Price moves below a prior swing low and begins to retrace, a new swing low is formed.
➽ When the Price makes higher highs and higher lows, a market is considered an uptrend.
➽ When the Price is making lower lows followed by lower highs, a market is considered a downtrend.
When evaluating Delta, it's beneficial to compare delta values at swing lows or swing highs to determine the amount of selling or buying pressure and how the market reacts.
The actual Power of Delta is revealed when we use it to determine the market's reaction to powerful buying or selling. We want to see if the market has reacted as we would expect or not.
In the above Example, you will notice that every time price breaks a swing, Delta does as well.
It makes sense as it takes selling pressure to break a swing low or buying pressure to break a swing high. In simple words, we can say that there is no anomaly between delta direction & price direction.
In simple words (No Absorption or Exhaustion)
But what's occurring when this isn't the case, and we have divergence between Price and Delta? Let's analyze it with real examples.
★ Understanding Delta Divergence.
(Lack of Harmony in Buying/Selling Pressure & Price Move)
Notice how the Price breaks out of the previous resistance level on the above chart, but the Delta didn't yet reach even close to its last resistance level. It's a clear divergence between Price and Delta. Buyers may be slightly exhausted at the previous resistance level, and Price & Delta may retrace slightly. But in a broader view, it reflects a strong bullish signal.
See the above chart & see when and why the Price moved. I hope it will help you understand the underlying relation & story between Price & Delta.
Cumulative Delta & Trade Management
Delta will help you spot significant reversals, but it can also be used to help manage your open trade. You want to see a high correlation between Delta and Price when in a long or short position.
Suppose you're short while the Price is breaking a new low. You want to see Delta breaking low if sellers aren't interested in selling at the recent lows, represented by Delta not breaking lows. The probability of a short term reversal or a significant retrace increases.
When in a position, always be on the lookout for exhaustion and absorption, signalling a reversal potential.
What Includes in V.C Cumulative Delta Volume Bars Indicator
Inputs & Settings
Reset accumulation on new session:
Allows you to rest accumulation at the start of each session (you may choose your customized starting & ending time as well by enabling ''Customize Rest Session Time''
Start/End of Session & During Session:
Allows you to show/hide & choose the background color & separator of each session
''Customize Rest Session Time''
When this setting is enabled, your customized given time will be applied, which can be set from the below box. Note: set your time in minutes. For Example, if you want to reset the session after every hour, you need to put 60. If you're going to reset after every 8 hours, you need to put 480. Additionally, your chart time frame must be lower than your customized rest time.
Reset Each Minutes:
Allows you to put your desired rest time in minutes. For Example, for 1 hour 60, for 8 hours 480. (8x60)
Reset Each:
Allows you to choose rest time from the drop-down menu. Note: To apply this setting, don't enable the ''CUSTOMIZE RESET SESSION TIME''.
Select Session:
Allows you to set customized starting & ending times of the session instead of the exchange's default time. For Example, the exchange reset time is 20:00, but if you want 22:00, first, you need to set your chart time as an exchange from the right bottom of the chart, and then you need to put 22:00 22:00 in both fields. Note: Put the same starting & ending time. In simple words, it should not be greater than or less than 24 hours.
Type:
It allows you to select Delta type. (there are two delta types you can choose from, 1st Simple Delta, 2nd Delta % or Volume Weighted Delta)
Candle Colors:
Allows you to change the color of candles.
Envelope Indicator:
Allows you to apply to Envelop Indicator on the delta candle. (all default settings of the Envelop Indicator can be customized as well)
See the below chart with Envelop applied to Delta Candles & Price Candles. (can be used to measure the Delta & Price movement at the micro-level)
Bollinger Bands Indicator:
Allows you to apply to Bollinger Bands Indicator on the delta candle. (all default settings of the Bollinger Bands Indicator can be customized as well)
See the below chart with Bollinger Bands applied to Delta Candles & Price Candles. (can be used to measure the Delta & Price movement at the micro-level)
Start/End of Session on Chart
Allows you to change the first & last candle of the session.
Style Settings:
Allows you to control all the visual settings of delta candles, Envelop & Bollinger bands.
-------------------------------------------------
➽Conclusion:
Cumulative Volume Delta Bars is one of the leading indicators you can include as an order flow trader in your arsenal. It gives you an inside look at buying and selling pressure and how the market reacts.
But Keep in mind, in trading & technical analysis, nothing is 100% certain. No indicator can give you a 100% success rate. There is no holy grail in the financial market. As a trader, with the help of technical & fundamental indicators, our goal is to find an edge over the market. A simple definition of an edge is: Anything that adds a few points to the winning side of an equation builds an edge that lasts a lifetime. A trading edge defines your technical or strategic advantage in the highly competitive market environment. Traders can establish multiple edges by starting with popular strategies and customizing rules to lower the risk of getting trapped with the emotional crowd.
Disclaimer Note:
V.C Cumulative Delta Volume Bars It is purely Volume, Delta, Demand & Supply imbalance and comparative analysis based tool. Before applying this Indicator to your study, you should know about Volume, Delta & Spread, Demand & Supply, and Aggressive & Passive behaviour of buyers/sellers.
Some basic understanding of Sir Richerd Wyckoff's Theory can also be helpful.
[blackcat] L1 OBV-MFI ComboLevel 1
Background
As requested, this is a combo of OBV and MFI indicators
Function
On-balance volume (OBV) is a technical trading momentum indicator that uses volume flow to predict changes in stock price. Joseph Granville first developed the OBV metric in the 1963 book Granville's New Key to Stock Market Profits.
The Money Flow Index (MFI) is a technical oscillator that uses price and volume data for identifying overbought or oversold signals in an asset. It can also be used to spot divergences which warn of a trend change in price. The oscillator moves between 0 and 100.
The combo of them is still an oscillator.
Remarks
Feedbacks are appreciated.
Fibo Candle Middle LineAdopt the idea of Fibo retracement 50% line, if a retracement move more than 50%, it is likely that the retracement will continue and made a new high or new low with 1.618 ratio from the middle line. You will find that the fibo 50% line also works as a support and resistance. The Dotted line is the projected 1.618 fibo target.