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

PanagiotisCharalampous
03 Mar 2021, 12:36

Hi yuval.ein,

You should contact Pepperstone regarding this issue.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Mar 2021, 10:48

Hi JeanPaul,

It seems that you are comparing historical times with the current time. Server.Time always displays the current time so it should be aligned with the last bar only. See below

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Mar 2021, 10:10

Hi muhammadtayyabafridi,

It is not possible to charge fees using a demo account.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Mar 2021, 08:14

Hi glanzwurde,

Thank you. I cannot reproduce any problem with positions and deals being displayed on the chart. Any chance you can share some screenshots or videos so that we can see what you are looking at?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Mar 2021, 08:11 ( Updated at: 21 Dec 2023, 09:22 )

Hi fabulman,

If you are referring to the chart, you can just drag the time counter to the left. See below

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Mar 2021, 08:08

Hi JeanPaul,

Yes this should work.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Mar 2021, 08:05

Hi aayzenband,

Make sure the options below are checked.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
03 Mar 2021, 07:57

Hi Tengu,

Unfortunately it is not possible to modify IndicatorDataSeries color through code. You can only set the color through the interface.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Mar 2021, 07:54

Hi there,

I cannot recall cTrader FIX API offering tag 17. If you need a tag to identify your orders, use tag 11.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
03 Mar 2021, 07:50

Hi jarivandalen18,

You need to contact your broker regarding this.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Mar 2021, 15:29

Hi yuval.ein,

Your money is always with your broker. The cTrader Copy subaccounts belong to the broker as well.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Mar 2021, 14:56

Hi robymall, 

As per the above

The Volume Fee is deposited to the Strategy Provider account along with other types of Fee, unlike previously, when the Volume Fee was deposited at the end of the day.

So from now and on, you will receive fees from each follower every thirty days. If you still think that you should have received fees but you did not, please create a separate thread and provide us with more information, like your broker and strategy name, so that we can investigate

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Mar 2021, 14:33

Hi SmartArtsStudio,

There is no such option in the API to achieve that. The only way to achieve it is to set your time2 variable in a distant future time and keep the distance far away as the chart moves to the right.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Mar 2021, 10:47

Hi xabbu,

Here is an example

            var fractals = Indicators.Fractals(10);
            int lastUpFractalIndex = 1;
            int lastDownFractalIndex = 1;
            
            while (double.IsNaN(fractals.UpFractal.Last(lastUpFractalIndex)))
                lastUpFractalIndex++;
            while (double.IsNaN(fractals.DownFractal.Last(lastDownFractalIndex)))
                lastDownFractalIndex++;

            if (lastUpFractalIndex < lastDownFractalIndex)
                Print("Last Fractal  was Up");
            if (lastUpFractalIndex > lastDownFractalIndex)
                Print("Last Fractal was Down");

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Mar 2021, 09:56

Hi JerryTrader,

Here you go 

var tickValue = Symbol.PipValue * (Symbol.TickSize / Symbol.PipSize);

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Mar 2021, 08:11

Hi robymall, 

You can see the fees you receive in the Transactions tab of the TradeWatch.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
01 Mar 2021, 23:07

Hi jcr1818,

This usually happens when cTrader is disconnected and connected again. cTrader needs to be synchronized with the server when connection is reestablished.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
01 Mar 2021, 20:51

Hi eelko14,

Thanks, it is a known issue and it will be fixed in v4.0 which will be released soon on IC Markets.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
01 Mar 2021, 20:39

Hi jcr1818,

Can you explain what do you mean with synchronization? 

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
01 Mar 2021, 20:38

Hi jiminparky,

You can find examples of request messages in our Rules of Engagement. You can also use our sample application to generate such FIX messages.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous