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

PanagiotisCharalampous
18 Feb 2021, 14:28

Hi Christian,

I cannot seem to be able to build the indicator. There are a lot of references missing.

In any case a slower backtesting does not necessarily mean that there is a problem. Some calculations are more complicated and take more time than others.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 Feb 2021, 14:02

Hi Christian,

Can you please post the complete cBot and Indicator source codes and steps to reproduce the problem?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 Feb 2021, 11:36 ( Updated at: 21 Dec 2023, 09:22 )

Hi,

Did you add a reference to System.Windows.Forms?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 Feb 2021, 11:13

Hi Shares4us,

We investigated this issue and it seems that when you ask for an indicator with the exact same parameters (none in this case) for a second time, the constructor will return you the previous instance, for memory efficiency purposes. It seems that the way you use the indicators was not anticipated while designing this behavior. I will discuss it with the product team. In the meanwhile the workaround is to pass some kind of a dummy parameter to the constructor to force it to generate a new instance of the indicator e.g.

        [Parameter(DefaultValue = Modes.Mode3)]
        public Modes ModeParameter { get; set; }
        
        public  Modes Mode { get; set; }
        
        protected override void Initialize()
        {
            Mode = ModeParameter;
        }

The result should be

_indicator1 = Indicators.GetIndicator<IndicatorWithModes>(Modes.Mode2);
_indicator2 = Indicators.GetIndicator<IndicatorWithModes>(Modes.Mode3);
Print("Object indicator1 reference equals object indicator2 {0}", object.ReferenceEquals(_indicator1, _indicator2)); //returns FALSE

Let me know if this helps.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 Feb 2021, 10:16

Hi mehmetozhanhastaoglu,

It is not clear from your description what really happened. Can you please provide more information i.e. what steps did you take to get these requests? For example, did you press a button? Are you running a cBot? What actually happened?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 Feb 2021, 10:01

Hi fishing_v,

Do you still experience this issue? Can you provide more information?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 Feb 2021, 09:58

Hi wisefincial.

Do you still have this issue? Can you please explain what is the exact problem?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 Feb 2021, 09:51

Hi wayli724,

Can you please provide more information about this issue? What is the exact problem?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 Feb 2021, 09:45

Hi deknibar,

Did you try the ZoomChanged event?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 Feb 2021, 09:27

Hi ctid3408324,

Circles and arches are not available at the moment in cTrader Desktop. We might add them in a future update.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 Feb 2021, 09:25

Hi ctid2022215,

Notifications should work fine on both applications. If you have issues, please send us some troubleshooting information (tap seven times on the logo of the menu).

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 Feb 2021, 09:18

Hi matt92,

When a strategy is being followed, but then the account drops below $100, the user is still following the strategy, correct?

Yes this is correct.

Regarding the amount limit, given the fact that cTrader Copy has introduced a limitation of 300 followers per strategy to ensure a high quality of service, we need to make sure that these limited seats provide some value to the strategy provider and the service provider. If for example the minimum limit was $10, then it is possible the following capital to be caped at $3000.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
17 Feb 2021, 16:56

Hi all,

It seems to be an issue with your graphics cards. This seems to happen on Intel Xe Graphics video cards. You need to wait for a fix in the drivers from Intel.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
17 Feb 2021, 16:16

Hi yuval.ein,

No this information is not available via the API.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
17 Feb 2021, 12:39

Hi yakeshansd,

I am not sure what do you mean. Can you elaborate on what the problem is?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
17 Feb 2021, 12:38

Hi quantumtrading,

There were some issues in cTrader Copy stats. The team is working on fixing them.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
17 Feb 2021, 08:26

Hi tradethemkt,

Can you please explain what is the problem?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
17 Feb 2021, 08:17

Hi r.stipriaan,

Here you go

            if ((Positions.Find("Short", SymbolName, TradeType.Sell)) != null && rsi.Result.LastValue < 30)
            {
                ClosePosition(Positions.Find("Short", SymbolName, TradeType.Sell));
            }

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
17 Feb 2021, 08:15

Hi ctid2022215,

You cannot use Spotware Public Beta to connect to broker accounts. You can find the latest version of Pepperstone cTrader Mobile here.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
17 Feb 2021, 08:11

Hi lisabeaney,

The proxies are selected based on the fastest connection at the moment.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous