Description
Divide each bar volume into the bullish and bearish volume.
Free Download: https://www.algodeveloper.com/product/advanced-volume/
If you have any question or issue with our product please contact us via our site live chat or if we were offline leave a message, if you post a comment here we will not get any notification and we will not be able to help you.
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
using System.Collections.Generic;
using System.Linq;
namespace cAlgo.Indicators
{
[Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class Blank : Indicator
{
protected override void Initialize()
{
ChartObjects.DrawText("AlgoDeveloper", "Please download this indicator from AlgoDeveloper.com", StaticPosition.Center, Colors.Red);
}
public override void Calculate(int index)
{
}
}
}
afhacker
Joined on 15.10.2015
- Distribution: Free
- Language: C#
- Trading platform: cTrader Automate
- File name: Blank.algo
- Rating: 0
- Installs: 6418
- Modified: 13/10/2021 09:54
Comments
Smth wrong with this indicator as i can see...volumes are different from any other tick volumes and have much more correlation with candle size (i mean non % mode).
procumulative@gmail.com
We already have an indicator for showing volume strength: https://www.algodeveloper.com/product/high-and-low-volume/
could you do that in a bar for those bars where is volume above moving average? or also option for breakout candles...
perhaps just showing signal on candles with certain imbalance between buy/sell tick volume...
I am basically looking for indicator which will show candles with strong volume for bar chart...
Would you mind adding (up volume - down volume) like delta? Thanks,
@DavalRista
Send me an email with more detail about your idea and I will create an indicator based on your idea.
my email: afhackermubasher@gmail.com
Looks interesting, but I think it would be better if it would only show the up volume if the #/ratio of up ticks would be greater than down ticks and vice versa for down volume. Maybe an idea for the alternative version heh. Thanks.
Would be nice to see both selling and buying volume separated. Maybe 2 histograms, above 0 for buy and below for sell. Anyway, great idea! Thanks for sharing. :)
crazydobbi
Thanks for reporting, the issue has been resolved.