Replies

PanagiotisCharalampous
22 Feb 2019, 10:07

Hi lec0456,

See here why.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
22 Feb 2019, 09:57

Hi Xavier R,

Since it will take time to respond to all points one by one, I would like to inform you that most of the points you raised are either under development or in the backlog. I will come back with a more detailed reply at a later stage.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
22 Feb 2019, 09:52 ( Updated at: 21 Dec 2023, 09:21 )

Hi thriscio,

See below just a few

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
22 Feb 2019, 09:40

Hi lec0456,

You can also use strings, like LineColor = "Red"

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
22 Feb 2019, 09:39

Hi Pierre,

Who is your broker? Does the same issue appear with Spotware Beta cTrader?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 14:51

Hi Pierre,

In the desktop application, you should be getting a Windows form as well. Did you try signing in using the Windows form? As for the web sign in, try a hard refresh (Ctrl+F5) of the page and let me know if it resolves the problem.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 14:41

Hi Pierre,

Thanks for posting in our forum. Do you get any messages after trying to login?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 14:40

Hi hirgentcekaj,

Yes there are. We will release improvements in the zoom function in one of the upcoming updates.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 14:04

Hi Jiri,

Thanks, I have forwarded your suggestion to the product team.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 12:46

Hi sameshima,

Thanks for posting in our forum. This will not be included in 3.5. We hope to release it later this year.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 11:19

Hi Conno123,

Are you running any cBots/Indicators working with these lines? If yes, can you share them with us?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 11:15

Hi Patrick,

Thanks, we managed to reproduce the issue and we will fix it in the next update.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 10:05

Hi Jiri,

At the moment there is no such feature. Can you give me a couple of use cases where this would be useful for you?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 10:00

Hi terryww2,

We will be updating our proxies over the weekend. We expect this to be solved after the updates.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 09:59

Hi ctid731646,

Thanks I have sent you an email.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 09:55

Hi ctid731646,

AF message will return the status of pending orders. If your orders have been executed then you will receive a  Business Message Reject(j). Same applies for positions. Only open positions are returned. I tried both messages using the FIX API example application and I can see no problem.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
21 Feb 2019, 09:28

Hi mosaddeqi@gmail.com,

Renk charts are available in cTrader Desktop since v3.3. You can read more here.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
20 Feb 2019, 17:36

Hi lw3010996,

Yes it is. Just set IsFilled property to true. See below

  rectangle.IsFilled = true;

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
20 Feb 2019, 15:31

Hi ctid731646,

What kind of orders do you place? Market or pending orders?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
20 Feb 2019, 14:59

Hi Ton,

To display values further to the right, just increase the index. For previous bars you first need to decide what to display. See below an example where the close value is displayed.

using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;

namespace cAlgo
{
    [Levels(0)]
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AutoRescale = true, AccessRights = AccessRights.None)]
    public class Neggie : Indicator
    {
        [Output("Ask", LineColor = "Blue")]
        public IndicatorDataSeries Ask { get; set; }

        [Output("Mid", LineColor = "Green")]
        public IndicatorDataSeries Mid { get; set; }

        protected override void Initialize()
        {
        }
        public override void Calculate(int index)
        {
            if (!IsLastBar)
            {
                Ask[index + 10] = MarketSeries.Close[index];
                Mid[index + 10] = MarketSeries.Median[index];
            }
            else
            {
                Ask[index + 10] = Symbol.Ask;
                Mid[index + 10] = (Symbol.Bid + Symbol.Ask) / 2;
            }
        }
    }
}

Let me know if this helps.

Best Regards,

Panagiotis


@PanagiotisCharalampous