Category Other  Published on 18/06/2019

Daily High/Low/Mean

Description

This indicator shows three lines which represent the developing daily high/low/mean values, the lines will reset every day and you will be able to set the time offset and day start time.

Free Download: https://www.algodeveloper.com/product/daily-high-low-mean/

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;

namespace cAlgo
{
    [Indicator(IsOverlay = false, 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)
        {
            // Calculate value at specified index
            // Result[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: 3183
  • Modified: 13/10/2021 09:54
Comments
Log in to add a comment.
afhacker's avatar
afhacker · 5 years ago

[procumulative@gmail.com]

Thanks for providing your feedback, but we aren't going to add any other time frame H/L/M lines on this indicator.

Regarding adding labels the separator line separates each day lines so you don't need any label.

You might try my [Custome Period Candles] indicator that shows custom time frame candles on your current chart and it allows you to set the color and transparency.

This indicator is built by a request I received from a user, and we added everything he asked.

We aren't going to extend this and if you need anything specific for your self you can try our programming service or ask other cTrader consultants to build it for you.

PR
procumulative@gmail.com · 5 years ago

or for sessions...

to not have too messy, perhaps those lines for high, low, close could be visible only for a few n-bars back

and also, neccessary to have option to change colour, line thickness and trapnsparency...

Possibility to change labels size!!!

PR
procumulative@gmail.com · 5 years ago

Nice..

Can you enhance it a lil bit...
For monthly (M), weekly (W), daily (D)... Current high, low, open... for example: DH, ML, WC...

Previous M, W, D high and low, close... for example: DH-1 or DL-2. DC-1

Labels further evey from last candle, would be better if we could be able to chose placement, so labels dont overlay...