Category Volatility  Published on 02/12/2019

Colorful Volume

Description

Download This indicator ==> http://bit.ly/2MaktPT

(without sourcecode)

 

I change TicK volume in color and add Exp. Moving average in volume

if Tick volume more than 2 times of Moving avergage , that volume bar will change to Green bar ( Price up) or Red ( Price down)

if Tick volume between 1 and 2 times of Moving avergage , that volume bar will change to Blue bar ( Price up) or Pink ( Price down)

if Tick volume less than 1 times of Moving avergage , that volume bar will change to orange bar ( Price up , Price down)

 

 

Download

 

see more indy at

 https://www.youtube.com/playlist?list=PLLBpu3yzESmv-hLoqKxSKl7xPwU8Ep1Z9

 


// -------------------------------------------------------------------------------------------------
//
//    This code is a cAlgo API example.
//    
//    All changes to this file will be lost on next application start.
//    If you are going to modify this file please make a copy using the "Duplicate" command.
//
// -------------------------------------------------------------------------------------------------

using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;

namespace cAlgo
{
    [Levels(0)]
    [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AutoRescale = true, AccessRights = AccessRights.None)]
    public class ColorfulVolume : Indicator
    {
        [Parameter("Periods", DefaultValue = 10)]
        public int Periods { get; set; }
        [Parameter("Volume Change from MA (2 x) ", DefaultValue = 2)]
        public int Vchg1 { get; set; }
        [Parameter("Volume Change from MA (1 x)", DefaultValue = 1)]
        public int Vchg2 { get; set; }



        private MovingAverage Tickma;


        protected override void Initialize()
        {
            // download this indicator at
            // http://bit.ly/2MaktPT        
        }

        public override void Calculate(int index)
        {
            /// See Dowload link without soure code at descriptions
        }
    }
}


GO
goldclay

Joined on 27.05.2017

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: ColorfulVolume.algo
  • Rating: 0
  • Installs: 3003
  • Modified: 13/10/2021 09:55
Comments
Log in to add a comment.
No comments found.