Replies

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

PanagiotisCharalampous
03 Sep 2020, 07:51

Hi Zaur,

You can reach out to us at community@spotware.com.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
03 Sep 2020, 07:50

Hi Sam,

I am sorry but I cannot engage into custom development. If you cannot program this yourself, you should hire a professional.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Sep 2020, 07:45

Hi firemyst,

But that kind of defeats the purpose of having an indicatordataseries with "discontinuous lines" for plotting.

Discontinuous lines work fine when they are ... discontinuous :) Your lines are not discontinuous.

Unless there's another way to do it or a way from the API to get the settings from the IndicatorDataSeries settings under "Lines"? 

No there isn't at the moment. 

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Sep 2020, 16:25

Hi firemyst,

But you just told me there's no way to accomplish the logic without having two dataseries objects to use interchangeably for the same trend:

Yes because you are using the wrong tool for the job. You are trying to display discontinuous lines with continuous data series. Why don't you use trendlines instead?

   if (Result[index] > Result[index - 1])
            {
                Chart.IndicatorAreas[0].DrawTrendLine(index.ToString(), Bars.OpenTimes[index - 1], Result[index - 1], Bars.OpenTimes[index], Result[index], Color.Green);
            }
            
            if (Result[index] < Result[index - 1])
            {
                Chart.IndicatorAreas[0].DrawTrendLine(index.ToString(), Bars.OpenTimes[index - 1], Result[index - 1], Bars.OpenTimes[index], Result[index], Color.Red);
            }

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Sep 2020, 15:54

Hi LiamDuncanOgs24,

This should have been fixed in the latest version. Do you still have an issue?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Sep 2020, 14:58

Hi dkareithi,

cTrader Desktop still has the old Autochartist integration.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
02 Sep 2020, 12:42

Hi jensnig,

Thanks for your suggestion, it has been forwarded to the product team.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
02 Sep 2020, 12:36

Hi firemyst,

So essentially every developed cTrader indicator that uses different data series for up/down colors will have this issue?

No. This not a problem with cTrader but with your logic. So there is nothing to resolve here. cTrader leaves gaps when there are no values in the data series. But you leave no gaps, therefore there is no way cTrader to know that you do not want a line to be drawn. If your dataseries has values then cTrader will join the dots.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous