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

PanagiotisCharalampous
05 Jul 2022, 12:21

Hi waym77,

There is nothing special about this. You just need to use the starting and ending time you need.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
05 Jul 2022, 12:18

Hi Ja wid,

It's not possible to know what your problem is with such a little information. If you need somebody to help you, you need to explain exactly what the problem is and share the indicators code so that somebody can reproduce it.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
05 Jul 2022, 12:15

Hi tradeaccnt001,

You can check Server.Time to check the current time and MarketHours.Sessions for the sessions.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
05 Jul 2022, 12:08

Hi rjalopes,

It seems that the exception is coming from your indicators. Please check your indicators.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
05 Jul 2022, 12:06

Hi vt-aero,

There is no such option at the moment.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Jul 2022, 12:05

Hi ncel01,

Can you provide us  with a cBot that will allow us to reproduce what you are looking at?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
05 Jul 2022, 12:01

Hi there,

Is it possible to explain the problem in English and provide some more information e.g. screenshots?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
05 Jul 2022, 12:00

Hi osospeed,

Here are some detailed instructions on how to do this.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
05 Jul 2022, 11:49

Hi trading1,

Can you try sending us troubleshooting information? If not, then please try to record a video demonstrating this and send it to us.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
01 Jul 2022, 16:22

RE:

Hi lebaruch,

Amazing, let us know if anything else.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


@PanagiotisCharalampous

PanagiotisCharalampous
01 Jul 2022, 15:16

Hi m.rafi7722,

It seems you are comparing Balance and Equity drawdown, which is wrong. They are different values.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
01 Jul 2022, 15:14

Hi lebaruch,

Is it possible to demonstrate this behavior with a video?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
01 Jul 2022, 15:10

Hi dm1988air,

Please send us some troubleshooting information so that we can check this.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
01 Jul 2022, 08:57

Hi yuval.ein,

No it is not.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
01 Jul 2022, 08:54

Hi tuanpham1208,

The message prompts you to contact your broker. Did you?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jun 2022, 15:26

Hi vs6900240,

You need to contact FxPro regarding this.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jun 2022, 08:13

Hi MongolTrader,

Here is an example on how to get only the positions of the symbol the cBot is currently working on

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(Message);
        }

        protected override void OnTick()
        {
            // Handle price updates here
            foreach (var position in Positions.Where(p => p.SymbolName == SymbolName))
            {
                
            }
        }

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

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
29 Jun 2022, 09:28

Hi MongolTrader,

What exact sample do you need?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
29 Jun 2022, 09:27

Hi mr.Gekko,

If you are looking to connect to your follower's account, you cannot do this through APIs.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
29 Jun 2022, 09:24

Hi vs6900240,

What is prohibiting you from creating a demo account? Did you contact your broker?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous