Volume Flow BFBased on code by oh92 and kiasaki.
Measures volume to indicate Bull vs Bear.
Go long when green, short when red, wait patiently when white.
Hacim Göstergesi
Volume ValueInstead of the Volume this plots the closure price times volume, hence the Value.
Useful in study of long term phenomenons.
Weis Wave Volume (Pinescript 4)Port of LazyBear's Weis Wave Volume indicator to pinescript v4 from v2.
Better OBVJust On balance volume but without the volume from the wick/shadow. Only considers volume in proportion to the body of the candles w.r.t. total length of the candle.
Lancelot ATR Volume MeterThis is an experiment I did a while back ago.
I often think On Balance Volume is a great indicator as trend direction and volume cannot lie.
However, I bumped into a few problems.
It is slow, doesn't show volatility and often time it is prone to chop.
That's why I added ATR to the equation.
Original OBV calculation
src > 0? : +volume : src < 0? -volume
Modified OBV with ATR
src > 0 ? +volume * (volume / atr) : src < 0? -volume * (volume / atr)
I have used 2 ema for this modified OBV.
ema 3
ema 18
By adding ATR to the equation we can smooth out many erratic price movement. (Stop hunting)
Also, when price move slowly but steady, often prepping for a big move, this indicator will move faster.
In short, this indicator prevents you from being stop hunted and also provide great entry for a trending market.
Works well on BTCUSD XBTUSD, as well as other major liquid Pair.
Feel free to follow me on Twitter @Lancelot_Auger for more free Alpha.
Please acknowledge my effort by like and follow.
And lastly,
Save Hong Kong, the revolution of our times.
Volume Weighted DistanceThis script holds several useful functions from statistics and machine learning (ML) and takes measurement of a volume weighted distance in order to identify local trends. It attempts at applying ML techniques to time series processing, shows how different distance measures behave and gives you an arsenal of tools for your endeavors. Tested with BTCUSD.
REM: oddly enough, many people forget that the scripts in PS are generally just STUDIES, i.e. exercises, experiments, trials, and do not embody a final solution. Please treat them as intended ;))
[CS]DirtyFish_TopBottomReaction v1.0DirtyFish Indicators is useful in high frequency trading to check the book resistance of a Support or of a Resistance; in summary you can hint the rejection of a specific support. From the indicator you can see information such as trend, resistance to trend, Higher Volume at price levels.
Delta Volume Columns [LucF]Displays delta volume columns using intrabar volume information. Each volume column is divided into three sections: buying, selling and neutral volume. Volume for each section is determined from the volume and price movement of each intrabar at a user-selected lower resolution.
Features include:
- Choice of color themes for either dark or light chart backgrounds
- Delta volume columns
- Volume Balance displayed as the difference between the MAs of buying and selling volume
- Display of divergences between a bar’s volume balance and the bar’s price movement (example: buying volume > selling volume but close < open). Divergences can be shown in 2 different color schemes (including green/red showing a tentative direction), on volume columns and/or on chart bars
- Display of bar by bar volume balance with highlighting of above average volume
- Display of the usual total volume MA
- Choice of the lower resolution used to retrieve intrabar information
- Alerts configurable on any combination of the markers, with control over long/short direction
- Choice of 3 different markers:
1. Double bumps: two consecutive bars where buying or selling volume is in the same direction and where volume > volume MA
2. Divergence confirmations: direction of the price bar following a price/volume balance divergence
3. Volume balance shifts: zero level crossings of the volume balance MA delta
The chart shows the two main modes of display:
- Top pane : shows the stacked volume columns with divergences in orange and the flattened volume balance MAs delta at the bottom of the volume columns. This volume balance is the same shown in the bottom pane. The top pane also shows the instant volume balance strip above the volume columns. The strip’s colors show which of the buying or selling volume was greater, and colors are brighter if the total volume was above the total volume MA.
- Bottom pane : shows the volume balance MAs delta with markers 1 and 2. Given that this graphic has no price momentum component, I find quite eerie how it often looks like a momentum-based signal.
The default 5 minute intrabar resolution is used in combination with the weekly chart, which is excessive.
This script uses a special characteristic of the security() function’s behavior when it is sent to a resolution lower than the chart’s resolution. Details are given in the script’s comments. This method has the advantage of working under more circumstances than some of the other loop-based methods, but it also has its limits.
IMPORTANT
This is what you need to know:
- The method used does not work on the realtime bar—only on historical bars. Consequently, the volume column shown on the realtime bar is a normal volume column plotted in green or red, following price movement. The column will only show delta volume information after it closes and becomes a historical bar.
- The indicator only works on some chart resolutions: 5, 10, 15 and 30 minutes, 1, 2, 4, 6, and 12 hours, 1 day, 1 week and 1 month. The script’s code can be modified to run on other resolutions, but chart resolutions must be divisible by the lower resolution used for intrabars.
- Intrabar resolutions can be selected from 1, 5, 15, 30, 45 minutes, 1, 2, 3, 4 hours, 1 day, 1 week and 1 month. The intrabar resolution must of course be smaller than the chart’s resolution.
- Contrary to my other indicators where alerts must be configured to trigger “Once Per Bar Close” in order to avoid false triggers (or repainting), all this indicator’s alerts are designed to trigger using previous bar information since the indicator’s calculations in the realtime bar are not exact. Markers are not plotted with a negative offset; they appear at the beginning of the realtime bar following confirmation of the marker’s condition on the previous bar. Alerts for this indicator should thus be configured to trigger “Once Per Bar” so they trigger at the beginning of the realtime bar. Note that the penalty is not that great, as it is simply the instant between the close of the previous realtime bar and the opening of the next. The advantage of using this technique is that the indicator does not repaint; a marker that appears at the beginning of the realtime bar will never disappear.
- The script only plots information that is reliable in the realtime bar, i.e., total volume and markers. All other plots are set to n/a to prevent misleading traders.
- When the difference between the chart’s resolution and the lower resolution is too important, volume columns will not calculate for all bars in the dataset.
On Delta Volume
Buying or selling volume are misnomers, as every unit of volume transacted is both bought and sold by 2 different traders. There is no such thing as “buy only” or “sell only” volume, but trader lingo is riddled with original fabulations.
Without access to order book information, traders work with the assumption that when price moves up during a bar, there was more buying pressure than selling pressure. The built-in volume indicator available on TradingView uses this logic to color the volume columns green or red. While this script’s numbers are more precise because it analyses a number of intrabars to calculate its information, it uses the exact same imperfect logic to calculate its buying/selling/neutral sections.
Until Pine scripts can have access to how much volume was transacted at the bid/ask prices, our so-called buying/selling volume information will always be a mere proxy.
Divergences
You may wonder how there can be divergences between buying/selling volume information and price movement. This will sometimes be due to the methodology’s shortcomings we have just discussed, but divergences may also occur in instances where because of order book structure, it takes less volume to increase the price of an asset than it takes to decrease it.
As usual, divergences are points of interest because they reveal imbalances, which may or may not become turning points. I do not share the overwhelming enthusiasm traders have for divergences. To your pattern-hungry brain, the orange bars this indicator shows on chart will—as divergences on other indicators do–appear to often indicate turnarounds. My opinion is that reality is generally quite sobering, as many who have tried building automated rules based on divergences will tell you. I do not have hard numbers on the lack of performance of divergences—only many failed attempts to make them perform, which a few experienced strategy modelers I know share with me. Please don’t try to read too much into them. While they look great on past data, I find they are often difficult to use in realtime to make bets with good odds.
Thanks to:
- A guy called Kuan who commented on a Backtest Rookies presentation of an intrabar delta volume indicator using a for loop. The heart of “my” indicator is code borrowed from Kuan; I just built a hopefully useful wrapper around it.
- @theheirophant, my partner in the exploration of the sometimes weird abysses of security() ’s behavior at lower resolutions.
Volume multiple indicatorThis indicator shows when the volume is extraordinary increased or decreased.
You can change *multiple*, default is 2.
When today's volume is multiple times greater than yesterday's volume, background is green (regardless of close price. It is related to just volume)
Black means today's volume is multiple times smaller than yesterday's volume.
간단하게 거래량 급증과 급락을 알려주는 지표입니다.
multiple을 조절할 수 있고, 기본값은 2배 입니다.
오늘거래량이 어제거래량보다 2배 많으면 배경색이 초록색이 됩니다.
배경색이 검정색이 된다면, 오늘 거래량이 어제 거래량보다 2배 적다는 뜻입니다.
Volume Flow v3DepthHouse Volume Flow indicator is used to help determine trend direction strictly based on Negative and Positive volume data.
How to Read:
- Moving Average crossovers are used to help determine a possible trend change or retracement.
- The area cloud on the bottom is calculated by the difference of the moving averages. This could be used to help determine the trending volume strength.
- Bright colored volume bars are large volume spikes calculated by the x factor in the options.
Other changes:
- DepthHouse is going open source with numerous of its indicators. This is only one of many!
- Volume is now displayed without being altered for calculations.
Volume moving indicatorHi guys,
This is a multiple Volume MA script. Editing is free for use.
You can use several ma lines by adding one indicator only, and I put 10,20,30,60,100,200 as a threshold which I frequently use.
It is made as an open source at any time possible, so that you are free for playing with it. Even you can add more if you are keen to do so.
Cheers,
JB
Volume moving indicatorJB가 만든 거래량 이평선 모음입니다.
하나의 지표 추가 만으로 여러개의 거래량 이평선들을 사용하실 수 있고, 제가 자주 사용하는 10,20,30,60,100,200선 넣어 놨습니다.
에디트 언제든 가능하시게 오픈소스로 구성되어있으니 매매에 도움되시길 바랍니다.
Cyatophilum VolumeCustom volume indicator
Green dots - "Buy" alert : bullish volume spike
Red dots - "Sell" alert : bearish volume spike
Set alerts to "Once per bar" for manual trading. "Once per bar close" for automation.
This indicator should be used in combinations with other technical tools. Not every dot is a good opportunity.
BTC and USD volume overtime [XBT]Compares BTC volume vs USD volume overtime
Best used on 4hr timeframe. Not really some crazy alpha but good overview/statistic to keep track of.
(make sure to use on XBTUSD pair since it isnt using security calls to call the data)
Enjoy!
BTC Volume Aggregator"Volume Aggregator" indicator gathering the volume data from usd markets usdt markets and contracts. I will expand is euro, Korean and china pairs.
Volume ClimaxThis indicator couples RSI oversold and overbought regions with unusual volume . Often times you will see the final leg of a trend exhaust itself with this volume climax. This indicator is meant to help spot these instances.
User has the ability to customize oversold and overbought regions as well as a multiplier for how much more the volume needs to be relative to the 20 SMA . You can also set an alert with this indicator.
TEDong OBV MACD OSC ==> ProfitHi, Folg,
OBV MACD OSC gives a Buy signal when the OBV value crosses up its EMA and a Sell signal when it crosses down its EMA.
Cross over markers Directional bgcolor, where RED for bearish (S) and GREEN for bullish (B)
If you include volume analyses in your trading strategy, automating OBV MACD OSC will give buy signals whenever volume and price are rising altogether.
DONATE/TIP
BTC: 13nhMN2H4LoRi4VMcPcyR96jitxrH3uivB
Net Volume - GuppyDisplays the net volume filtered via ALMA in different bands. Default length is 90. It is divided and multiplied into shorter and longer lengths from the mean (the source length). As the faster band crosses the bands towards the mean the color changes. Above 0 net volume is towards the buyers, below 0 the sellers.
BTCUSD Volume(100 Percent Stacked Area Chart)
Display the volume of 4 exchanges with BTC / USD pair in 100% stacked area chart.
The target exchanges are 3 companies that BitMEX refers to indexes (Coinbase, Bitstamp, Kraken).
And I'm adding Bitfinex, which I think has a strong impact on the market.
If you uncheck the "100 Percent Stacked Area Chart", the volumes of each exchange will be displayed in piles.