Category Oscilators  Published on 18/06/2019

Advanced Volume

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's avatar
afhacker

Joined on 15.10.2015

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Blank.algo
  • Rating: 0
  • Installs: 6221
Comments
Log in to add a comment.
afhacker's avatar
afhacker · 5 years ago

crazydobbi

Thanks for reporting, the issue has been resolved.

CR
crazydobbi · 5 years ago

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).

afhacker's avatar
afhacker · 5 years ago

procumulative@gmail.com
We already have an indicator for showing volume strength: https://www.algodeveloper.com/product/high-and-low-volume/

PR
procumulative@gmail.com · 5 years ago

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...

 

burakbirer's avatar
burakbirer · 6 years ago

Would you mind adding (up volume - down volume) like delta? Thanks,

afhacker's avatar
afhacker · 7 years ago

@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

DA
DavalRista · 7 years ago

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.

Jiri's avatar
Jiri · 8 years ago

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. :)