Category Volatility  Published on 27/02/2021

cTrader Volatility Dashboard Widget

Description

The cTrader Volatility Dashboard Widget is part of the professional trading components collection that gives you a unique view of the Depth of Market and Volatility of a security or currency. The user interface is clean and simple so you can make decisions at a glance.

(New Feature Added - extra large volatility panels - 10.03.2018)

WATCH A VIDEO DEMO

DOWNLOAD THE SOFTWARE TODAY

INDEPENDENT VOLATILITY & DEPTH OF MARKET

The dashboard widget contains all the information you need to monitor the current volatility of an instrument, it is graphically simple to allow you to see what is going on with a glance.  Included with the depth of market you can see the current price volatility which measures the movement of pips on each incoming tick of data together with an audible alarm when a set threshold has been reached.

HOW TO LAUNCH THE DASHBOARD

When you launch the dashboard from the chart, the Depth of Market and Volatility Gauge will be for the symbol that was on the chart, you will see the symbol name on all the widgets as shown below "EURUSD".

WHAT IS DEPTH OF MARKET (DOM)

The depth of the market (DOM) is a measure of the number of open buys and sell orders for a currency at different prices. The depth of market measure provides an indication of the liquidity and depth of that security or currency. The higher the number of buy and sell orders at each price, the higher the depth of the market. The depth of market data is also known as the order book since it shows pending orders for a security or currency.

Please note that not all Brokers support Depth of Market, please check first using the cTrader Platform.

WHAT IS THE VOLATILITY GAUGE

The volatility gauge shows you at a glance how much price movement is occurring on the instrument as it happens, so you can set an audible alarm that will alert you when you are away from your desk that volatility is happening like during a news release or market movers.

EXTRA-LARGE VOLATILITY PANELS (New Feature)

Now you can have multiple symbol panels open to monitor volatility, the extra large visual display will keep you updated on how fast or slow the markets are moving for a given symbol.

CUSTOM SOUND SETTING

We have added an extra feature that will allow you to configure the volume of the alert much higher than your PC system sounds, this will allow you to be in another room or away from your workstation and still hear the audible alarm without having to increase the normal sounds on your computers like email and Facebook notifications. The maximum volume of the alert is twice as loud as normal, you can turn it down by using the volume slider at the bottom.

"This is perfect when you are either away from your desk or looking at another chart, be informed as soon as the price starts to move."

CLICK HERE TO DOWNLOAD

"Position the Dashboard Anywhere On or Off the Charts"

VISIT PRODUCT PAGE

"PLEASE NOTE THAT THIS IS A CBOT AND SHOULD BE LAUNCHED AS A CBOT, BUT IT BELONGS UNDER THE CATEGORY INDICATOR"

WATCH A VIDEO DEMONSTRATION

 

Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

Twitter | Facebook | YouTube | Pinterest | LinkedIn

 


using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
using System.Windows.Forms;
using System.Threading;

// To download the software please visit: https://clickalgo.com/ctrader-volatility-dashboard-widget

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

        private static Mutex dialogMutex = new Mutex();
        private static bool dialogIsShownOnce = false;

        protected override void OnStart()
        {
            ShowDialogBox();
        }

        protected override void OnTick()
        {
            // Put your core logic here
        }

        protected override void OnStop()
        {
            // Put your deinitialization logic here
        }

        public static void ShowDialogBox()
        {
            dialogMutex.WaitOne();

            if (dialogIsShownOnce)
                return;

            var ret = MessageBox.Show("It is not possible to download the software from the cTDN website.\nWould 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/ctrader-volatility-dashboard-widget");
            }

            dialogIsShownOnce = true;

            dialogMutex.ReleaseMutex();
        }
    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: ClickAlgo Software.algo
  • Rating: 0
  • Installs: 3339
Comments
Log in to add a comment.
No comments found.