Replies

PanagiotisChar
12 Dec 2022, 10:47

Hi there,

Bars.OpenPrices.Last(1)
Bars.ClosePrices.Last(1)

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
12 Dec 2022, 10:45

Hi there,

Can you share the cBot code and your parameters so that we can reproduce?

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
12 Dec 2022, 10:44

Hi there,

Spotware said they will add the option to hide the indicator names.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
12 Dec 2022, 10:42

Hi there,

It's not possible at the moment. Spotware said they will restore the feature soon.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
09 Dec 2022, 07:44

Hi there,

If you need Spotware to help you, then just follow their instructions. If they ask for something, it means they need it. You can't judge if something is needed for them or not. Obviously they are trying to recreate the same setup and investigate why the indicator is suspended. How would they do it without it? If you want to be helped, then help too :)

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
06 Dec 2022, 09:31

Hi Fischer,

See below an example on how to change the color of the last bar

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;

namespace cAlgo
{
    [Indicator(AccessRights = AccessRights.None, IsOverlay = true)]
    public class NewIndicator : Indicator
    {
        [Parameter(DefaultValue = "Hello world!")]
        public string Message { get; set; }

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

        protected override void Initialize()
        {
            Chart.SetBarColor(Bars.Count - 1, Color.Red);
        }

        public override void Calculate(int index)
        {
            
        }
    }
}

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
06 Dec 2022, 09:21

Hi there,

Check the Server Connected and Disconnected events.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
05 Dec 2022, 09:08

Hi Fischer,

If you need somebody to develop the exact function for you, you can consider posting a Job. If you just need a sample on how to change bar colors, I can provide you one.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
05 Dec 2022, 09:02

Hi there,

The forum is not documentation. You can find the documentation here

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
02 Dec 2022, 07:53

Hi there, 

Symbol names are provided by brokers. Ask your broker.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
02 Dec 2022, 07:52

Hi there,

No there isn't. Stop limit orders are IOC orders.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
02 Dec 2022, 07:50

Hi royhui,

When you export your history to HTML, you will get your transactions too.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
02 Dec 2022, 07:48

Hi there, 

Can you provide steps for us to reproduce this error?

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
29 Nov 2022, 09:02

Hi there,

The code you posted does not handle any position opening logic.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar