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

PanagiotisCharalampous
15 Jul 2020, 16:52

Hi findxbuy,

Please let us know the following

1) Broker and cTrader version

2) Please confirm that this happens when you remove the custom indicators from the chart.

3) It is still not clear to us what steps do you follow. It one comment you say that you close the platform, then you say when you switch charts. What does switch charts mean? Do you change the symbol within the same chart or do you navigate between different charts? Recording a video with the steps will help us understand what you are doing.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
15 Jul 2020, 16:40

Hi jngetichwork,

cTrader Copy will be added to the mobile applications in an upcoming update.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 Jul 2020, 15:59 ( Updated at: 21 Dec 2023, 09:22 )

Hi malas7malas,

The time now in Ireland is GMT+1.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
15 Jul 2020, 13:42

Hi tgjobscv,

You cannot execute any trading activity when you are offline.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 Jul 2020, 12:51

Hi findxbuy,

Can you please provide more information regarding this issue i.e. steps to reproduce or a short video demonstrating this behavior?  

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 Jul 2020, 10:01

Hi hahoob.af,

It would be easier to get answers to your questions if you split them in different threads since they are separate subjects. It is a lot of work for somebody to answer all these questions at once and nobody will bother.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 Jul 2020, 09:55

Hi ricckytrading,

You need to provide more information regarding your problem. You need to provide at least the following

1) The complete cBot code so that we can use it and get the same results as you.

2) A clear description of what does the code do and what should it do instead.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
15 Jul 2020, 09:50

Hi Lorenzo,

The sample cBots are not available for download but uninstalling and reinstalling cTrader should restore the sample cBots.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 Jul 2020, 09:44

Hi duongphuongtrinh92,

Can you please provide more information about this issue e.g. screenshots?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jul 2020, 15:16

Hi wddy0206,

Dark mode is available in Spotware Beta for iOS. It will be available for brokers soon.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jul 2020, 12:46

Hi mark.lite,

You might find this cBot useful

using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;

namespace cAlgo.Robots
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class ScrollTo : Robot
    {
        [Parameter(DefaultValue = 2014)]
        public int Year { get; set; }

        [Parameter(DefaultValue = 1)]
        public int Month { get; set; }

        [Parameter(DefaultValue = 1)]
        public int Day { get; set; }

        protected override void OnStart()
        {
            var date = new DateTime(Year, Month, Day);

            while (Bars.OpenTimes[0] > date)
                Bars.LoadMoreHistory();
            Chart.ScrollXTo(date);
        }

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

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

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jul 2020, 12:23

Hi koktos632,

I was asking about the chart more. Is it Multi-Chart mode, Free-Chart mode or Single-Chart mode?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jul 2020, 10:27

Hi koktos632,

Which chart mode do you use?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jul 2020, 09:58

Hi MATRIXTRADER,

Please post the complete cBot code that is generating these errors.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jul 2020, 08:37

Hi benpaulsharpe,

Can you provide a code sample demonstrating what you are doing?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jul 2020, 08:35

Hi MATRIXTRADER,

Try

MACD = Indicators.MacdHistogram(MarketData.GetBars(AnotherTimeFrame2), LongCycle, ShortCycle, MACDPeriod);

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jul 2020, 08:32

Hi malas7malas,

Your cTrader timezone is set to UTC+1. Your cBot is set to Greenwich Mean Time. As mentioned above, Greenwich Mean Time is the same as UTC time. The time is correct.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jul 2020, 08:29

Hi there,

Symbols are added by brokers, not by cTrader.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jul 2020, 08:28

Hi tothpal,

There is no ETA for this feature yet.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jul 2020, 08:27

Hi ricckytrading,

Check here.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous