Category Trend  Published on 27/02/2021

D&I Solutions Custom VWAP Indicator

Description

In associate with other indicators, there is a possibility to determinate the critical points and the VWAP after this region. In the image above has appeared a red bar in Volume Activity indicator that means the high probability that an institutional player started his position here. So, you can put the VWAP at this moment and follow the volume average weighted price by volume.

Vendor: D&I Solutions for Trading

cTrader VWAP Indicator

Best Use of this Indicator

This indicator compliments the trading strategy used by this vendor using the DI Volume Activity and Weis Wave Volume Collection of indicators for the perfect trade setup.

Tracking big players is at the very foundation of these indicators, If we can consistently reveal where the Big players are entering and the direction they are trading, then we have all the information we need to make a profitable trading decision and the Volume Activity and Weis Wave Volume indicators will help you do that.

Download this Free Indicator

 

Why not sell your indicators with us and boost your sales?


Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

Twitter | Facebook | YouTube | Pinterest | LinkedIn

 


using cAlgo.API;
using System.Windows.Forms;

namespace cAlgo
{
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class ClickAlgoIndicator : Indicator
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }

        [Output("Main")]
        public IndicatorDataSeries Result { get; set; }


        protected override void Initialize()
        {
            var ret = MessageBox.Show("It is not possible to download the software from the cTDN website. Would you like to visit us at ClickAlgo.com where you can download it?", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

            if (ret == DialogResult.Yes)
            {
                System.Diagnostics.Process.Start("https://clickalgo.com/vwap-indicator");
            }
        }

        public override void Calculate(int index)
        {
            // Calculate value at specified index
            // Result[index] = ...
        }

    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: ClickAlgo Indicator.algo
  • Rating: 0
  • Installs: 1772
Comments
Log in to add a comment.
RO
robert.vanderlaan · 4 years ago

Can't find it in under "VWAP" after installation is done..