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

PanagiotisCharalampous
07 Sep 2020, 13:56

Hi xabbu,

No there is no such option at the moment.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 11:17

Hi nord0n,

This probably happened due to equity to equity readjustment due to deposits/withdrawals taking place in your strategy provider's account. You can read more about such cases here.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 11:11

Hi xabbu,

Your problem is here

        protected override void OnBar()
        {

            Positions.Closed += OnPositionsClosed;

On each bar you add a new event handler on the event. This is why the method is executed multiple times. You should do this only once in the OnStart() method

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 10:20

Hi nord0n,

Can you please provide better images as well as links to the strategies?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 09:48

Hi Damian,

Please use the Suggestions section for your suggestions.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 09:44

Hi Adlin,

The fix to this issue will be released soon.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 09:32

Hi mpistorius,

It seems there is a general issue with AMD processors. We are currently investigating this.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 08:46

Hi TheUnnamed,

There is a limit of followers a strategy can have from each broker. This number of followers is dependent on the follower's broker infrastructure.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 08:37

Hi Kobit,

The feature is still under development. It will be released when it is ready.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 08:36

Hi BaliTrader,

You can only synchronize Workspaces between different computers. There is nothing you need to do for workspaces, just sign in with your cTrader ID and your workspaces will become available in the workspaces dropdown list.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 08:27

Hi crou,

Yes it is. See below

Chart.IndicatorAreas[0].AddControl(button1);

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 08:10

Hi Peter,

Can you please provide more information about the problem? What is preventing you from removing funds?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 08:09

Hi drozva,

You can connect to LMAX using cTrader as long as you pay for your own cTrader plant.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 08:04

Hi surangawije77,

You can post a Job or contact a Consultant.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Sep 2020, 08:02

Hi ctid2522292,

If you need to save different TP and SL per symbol, then you can try having a different workspace for each symbol.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
04 Sep 2020, 12:56

Hi xabbu,

Please provide us with the complete cBot code.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
04 Sep 2020, 12:36

Hi koktos632,

You need to provide more information about this issue

  1. Do you get any error messages? Please post them here.
  2. Are you running any cBots/Custom Indicators? If yes, please provide the source code
  3. Can you send some troubleshooting information (Ctrl+Alt+Shift+T, paste the link to the discussion in the text box)?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
04 Sep 2020, 12:27

Hi andi21,

This is not a bug, it works by design. SL is set on the requested distance from the position's entry price. StopTriggerMethod affects only the trigger method, not the SL price level.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
04 Sep 2020, 08:42

Hi trander002,

Here is an example

            var totalSL = 0.0;
            foreach (var position in Positions)
            {
                var slAmount = (position.EntryPrice - position.StopLoss) * (Symbol.PipValue / Symbol.PipSize) * position.VolumeInUnits - (position.Commissions * 2);
                Print("Position ID: " + position.Id + " Stop Loss Amount: " + (-Math.Round((double)slAmount,2)));
                totalSL += (double)slAmount;
            }
            Print("Total SL " + (-Math.Round(totalSL, 2)));

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
04 Sep 2020, 07:58

Hi xFors,

1) You can program custom indicators to have this option

2) This is how it works at the moment

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous