PanagiotisCharalampous's avatar
PanagiotisCharalampous
26 follower(s) 0 following 1006 subscription(s)
Replies

PanagiotisCharalampous
29 Jun 2022, 09:23

Hi zakarisaad,

No it does not. You need to run a cBot from the desktop app to achieve this.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
28 Jun 2022, 14:28

Dear matthewgrayiveta,

Thanks but unfortunately we cannot reproduce it. Can you please share your cBot's code?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
28 Jun 2022, 10:03

Dear matthewgrayiveta,

Thanks for posting your issue. Can you please share exact steps to reproduce this behavior? We need

  1. cBot code
  2. Optimization parameters
  3. Optimization dates

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2022, 16:43

Hi rafaelpierre,

Unfortunately we cannot identify the cause of the error without having access to the source code that has triggered it.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2022, 15:52

RE: Error code

Hi rafaelpierre,

Our team has received the error and they are checking.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2022, 12:41

Hi mh17462,

It seems like an issue with your broker's price feed that does not allow renko charts to be drawn. You should contact your broker to check this.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2022, 12:29

Hi MongolTrader,

My problem is my bot only use label and it can't identify which symbol work with. 

Why not? You can use SymbolName property to check the symbol the cBot is running on.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2022, 12:27

Hi rafaelpierre,

Please share your indicator code so that we can check.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2022, 12:21

Hi there,

This is not possible at the moment unfortunately.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2022, 12:20

Hi isabakas,

You can try something like this

            if (History.Last().TradeType == TradeType.Sell)
            { }

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2022, 12:16

Hi massimiliano.quarti,

Can you provide examples of what you are doing and it doesn't work e.g the messages you are sending and some evidence that it does not work?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2022, 12:14

Hi Florent,

When deals are aggregated, then it means one value will be displayed for each period instead of each deal.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2022, 12:12

Dear kimveie,

Yes it can be. If you are looking for someone to do this for you, you can contact a Consultant or post a Job.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jun 2022, 13:28

Hi MongolTrader,

You need to be a little bit more specific. What exactly is your problem? Did you try something and it did not work?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jun 2022, 16:19

Hi ncel01,

Here is an example for getting the highest price from all the bars loaded on the chart

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.Robots
{
    [Robot(AccessRights = AccessRights.None)]
    public class NewcBot : Robot
    {
        [Parameter(DefaultValue = "Hello world!")]
        public string Message { get; set; }

        protected override void OnStart()
        {
            // To learn more about cTrader Automate visit our Help Center:
            // https://help.ctrader.com/ctrader-automate

            Print(Bars.HighPrices.Maximum(Bars.HighPrices.Count));
        }

        protected override void OnTick()
        {
            // Handle price updates here
        }

        protected override void OnStop()
        {
            // Handle cBot stop here
        }
    }
}

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jun 2022, 15:55

Hi to both,

It should be fine now

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jun 2022, 15:54

Hi cW22Trader,

You should reach out to Pepperstone to check.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jun 2022, 15:53

Hi yearn,

Please provide us with the complete cBot code so that we can check,

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jun 2022, 15:51

Hi PEF.Machine.Intelligence,

Yes it is. Just right click on the History and select Export to Excel.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jun 2022, 15:49

Hi saiedparto,

Custom indicators are not available on cTrader Web unfortunately.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous