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

PanagiotisCharalampous
03 Jan 2019, 12:28

Hi Chainaronk,

Thanks for posting in our forum. GM and FM are not related to your account but to your broker. If your broker is a Guest Member(GM) then you cannot use cTrader Copy.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
03 Jan 2019, 09:59

Hi jam584St1,

It works fine on my side and I do not see any problem in your message. Unfortunately, I cannot offer further advise since I do not have access to your account neither to the code you are using. Did you try reproducing with the sample application? If you can reproduce it with a demo account, then please send me the credentials at community@spotware.com to have a look.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
03 Jan 2019, 09:50

Hi cogstrader,

Thank you for your suggestion but I am not sure what is the problem you are trying to solve? Can you provide an example?

Best Regards,

Panagiotis 


@PanagiotisCharalampous

PanagiotisCharalampous
03 Jan 2019, 09:42

Hi 3nen1000nichi,

Thank you for posting in our forum. You cannot plot an indicator from a cBot. You need to manually add it on the chart.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
03 Jan 2019, 09:41

Hi 1001camel,

Can you please send me your broker and your account numbers at community@spotware.com?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
03 Jan 2019, 09:38

Hi persk,

Thanks for posting in our forum. This feature is still not available for backtesting. It is currently under development and we hope that we can deliver something to you during the following months.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Jan 2019, 17:28

Hi tasr1r1,

New charts are loaded using the template you have set as default. Therefore, if you have disabled deal map from the default template then it should not show the deal map when opening a new chart.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Jan 2019, 12:13

Hi jam584St1,

I do not see any problem in the message. Are you sure there are open positions on this account?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Jan 2019, 11:54

Hi Ton,

We do not have an estimation for this yet. I will inform you as soon as we have one.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Jan 2019, 11:50

Hi khemrathy,

Thanks for posting in our forum. See below an example on how to achieve this.

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 MarketAnalysis : Robot
    {
      
        protected override void OnStart()
        {
            Positions.Closed += Positions_Closed;
        }

        private void Positions_Closed(PositionClosedEventArgs obj)
        {
            if (obj.Reason == PositionCloseReason.StopLoss)
                PlaceLimitOrder(obj.Position.TradeType, Symbol, obj.Position.VolumeInUnits, obj.Position.EntryPrice);
        }
    }
}

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Jan 2019, 11:35

Hi enam3074,

Thank you for posting in our forum. We do not have an ETA for this feature but the development team is currently working on it. It should be included in one of the releases planned for 2019.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Jan 2019, 11:23

Hi to both,

Currently there is no option to predownload all backtesting data at once. As soon as the backtesting data is downloaded, it is kept until a reason to redownload occurs e.g. software update that affects the way the data is read. Therefore if you have downloaded your data once, you will rarely need to redownload it.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Jan 2019, 11:17

Hi oliveira.phc,

I tried this today but could not reproduce any delay. It could be related to your network connection since the data need to be downloaded.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Jan 2019, 11:05

Hi eliezer_barros,

Which broker's cTrader do you use?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Dec 2018, 13:10

Hi lec0456,

This is the rule we are using. We agreggate the data at 17:00 EST.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Dec 2018, 12:55

Hi lec0456,

If you want to have a fixed time for day change throughout the year, the use EasternStandardTime. The change of the day takes place at 17:00 EST.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Dec 2018, 12:24

Hi oliveira.phc,

Can you share the cBot code so that we can check?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Dec 2018, 11:17

Hi lec0456,

A day changes at 22:00 UTC +0. 

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Dec 2018, 09:56

Hi,

You can try something like the below

            foreach (var position in Positions)
            {
                if ((Server.Time - position.EntryTime).Days > 90)
                    position.Close();
            }

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Dec 2018, 09:28

Hi ywsing,

Thanks for posting in our forum. Did you check cTrader UI to see if the subcribed symbols still receive spots?

Best Regards,

Panagiotis


@PanagiotisCharalampous