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

PanagiotisCharalampous
05 Nov 2020, 07:54

Hi pistrituadrian16,

Here is an example

Positions.Count(x => x.TradeType == TradeType.Buy)

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 14:37

Hi xabbu,

Not sure what do you mean. Which default values?  Which parameter file? Please provide us with the exact steps you are following.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 14:30

Hi Verigottab,

I am not sure what is the problem you are trying to report here. Do you disagree with the equity to equity recalculation? If yes, you need to provide some evidence why it is wrong e.g. what did you expect to happen, what happened instead and screenshots of the closing deals for which you disagree.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 14:01

Hi Shares4us,

Our support investigated the issue. You followed a different strategy than the one you are claiming. The strategy name was  "Relax 1" ans was provided by a different cTrader ID.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 12:50

Hi adzpapz28,

The difference in name was Relex1 and Relax 1

So it was a different strategy

Didnt check the ctraderID as I am a new user and it wasnt known or expected to me that there were scammers on the platform.

We are just technology providers. We do not provide any recommendations or suggestions about the strategies provided on cTrader Copy. Traders are fully responsible regarding their choices.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 11:13

Hi there,

I cannot provide you with a solution since I am not the author of the indicator but I would advise you to use parameters that have the Output attribute to pass results to a cBot. This will guarantee that Calculate method is executed. If you still do not get values, you should run some debugging to figure out why are the values not set.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 11:07

Hi adzpapz28,

You should always do some basic research before following a strategy. If somebody is impersonating somebody else, then he will have a different strategy name and a different cTrader ID.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 10:00

Hi adzpapz28,

Can you please explain why do you think it is a scam and why do you think your money was stolen?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 09:47

Hi adzpapz28,

cTrader Copy does not allow the same names for different strategies or same cTID names but similar names are possible. You should always carry out some due diligence before following a strategy.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 08:39

Hi Xavier,

You should contact your broker regarding execution issues.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 08:35

Hi ferrati_f,

This is not possible at the moment.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 08:32

Hi there,

The indicator does not have any public variables that can be read. You need to rewrite the indicator in a way that it exposed the relevant information through public properties.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Nov 2020, 08:29

Hi ajbozdar,

I used cTrader, so I can use detachable charts. However, chart detaching is not available in web edition. Could you please confirm if it is available? I haven't figured it out.

No this feature is not available at the moment

Could you please tell me why web and desktop editions are treated as two different applications when their real purpose is same?

As explained above, the two applications are developed by different teams having to work different technologies and facing different challenges. If were to keep the applications synchronized, you would only receive the common features missing many of the features you currently have. We don't see any reason to do that, instead we choose to release whichever feature is ready on each application without waiting for the other team to complete it as well.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Nov 2020, 15:59

Hi Christian,

There is no such option unfortunately.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Nov 2020, 14:13

Hi jayteasuk,

ProtoOADeal includes all the information you need. Each position has an opening and a closing deal and ProtoOADeal.executionPrice has the price at which the each deal was executed.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Nov 2020, 07:58

Hi ajbozdar,

The two applications are developed by different teams, each with their own priorities and backlogs. Hence the two applications are not 100% identical.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Nov 2020, 07:56

Hi matfx,

cTrader offers Open API that allows you to receive live price data feeds and build on top of it whatever application you can imagine.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Nov 2020, 15:21

Hi pistrituadrian16,

Here you go

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 NewcBot : Robot
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }

        protected override void OnStart()
        {
           Positions.Closed += OnPositionsClosed;
        }
        
        void OnPositionsClosed(PositionClosedEventArgs obj)
        {
            ExecuteMarketOrder(TradeType.Buy, Symbol.Name, 1000);
        }

        protected override void OnTick()
        {

        }

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

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Nov 2020, 08:54

Hi matfx,

You need to contact your broker regarding this issue.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Nov 2020, 08:36

Hi pistrituadrian16,

You can check the Positions.Count property and open new positions only if the value is 0.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous