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

PanagiotisCharalampous
12 Jan 2021, 09:19

Hi haohan51,

The product team has received this error and will investigate this issue.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
12 Jan 2021, 08:01

Hi daniel_dimitrov94,

If your account belongs to a broker, you need to contact your broker.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
12 Jan 2021, 07:58

Hi tperalta82,

The UI is locked because of this

                                    while(tOperation.IsExecuting)
                                    {
                                        Thread.Sleep(50);
                                    }

The whole point of ClosePositionAsync is not to wait for the order to be executed and proceed with the code execution. If you need to do something as soon as the position is closed, use the Position.Closed event.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
12 Jan 2021, 07:53

Hi jayteasuk,

Please note that the timestamp delta (and all deltas in general) is the distance from the previous tick and not from the first one. So to get the time for the last tick, you need to add all the deltas from the first one. Can you please confirm that this is how you do it?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 15:56

Hi m.mohammadreza.m.s,

Sorry I misread your question. It is possible to do this but it will require substantial work to achieve it.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 12:36

Hi m.mohammadreza.m.s,

You need to program your own indicator that will display the RSI as a histogram. See this one for example.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 11:20 ( Updated at: 21 Dec 2023, 09:22 )

RE:

prosteel1 said:

ICMarkets has BTC/USD with two decimal places and when I tried to change the TP to more than $5000 I got an error.

ICMarkets says it is coded into cTrader. Can this limit please be removed or substancially increased?

 

The main issue is when running a cBot if the TP or SL is more than this limit then the TP or SL wont be set and could result in a trade without a SL.

While I was able to manually set the TP to the price I wanted when the price went down, when it went back up I couldn't change the SL as the TP was more than 500,000 pips.

This also applies to cTrader Desktop.

 

Hi prosteel1,

I have sent this issue to the product team for investigation and resolution.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 10:47

Hi imrealfighter,

You can use the FirstVisibleBarIndex and loop through the visible bars to find the highest high and lowest low.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 10:35

Hi SmallStep,

These issues should have been fixed in cTrader Web 4.0. You can check here https://ct.spotware.com/copy/strategy/11419

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 10:20

Hi jayteasuk,

The limits are 100000 rows or one week of data.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 09:41

Hi viniciusfre,

As per the documentation, the format is milliseconds. You can check our .Net Sample.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 09:36

Hi firemyst,

1) Yes

2) Yes

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 09:19

Hi jayteasuk

Your ProtoOAGetTickDataRes has a hasMore field. If this is set to true, it means that not all data have been sent and you need to request them again using the last timestamp as the new TO value. Execute this recursively until you receive all the data.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 09:06

Hi evgrinaus,

Your broker is informed about cTrader maintenance. They should be informing you. Also you can check your mobile application, you should receive a maintenance status.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 09:02

Hi TraderAcademyThailand,

What is AgileDotNet. Do you use any custom indicators in your cTrader?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 08:57

Hi ,

Try changing

            else if (SellOrder3 != null)
            {

                foreach (var position in Positions)
                {
                    if (position.Pips > 30)
                    {
                        ClosePosition(position);
                    }
                }
            }

to 

            if (SellOrder3 != null && SellOrder3.Pips > 30)
            {

                foreach (var position in Positions)
                {
                     ClosePosition(position);                    
                }
            }

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 Jan 2021, 08:48 ( Updated at: 21 Dec 2023, 09:22 )

Hi ifadi123,

You can do this by dragging the time counter to the left.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Jan 2021, 16:34

Hi Tiago,

So, since we have no idea how to mitigate the possible LP issue (it's not a thing that we can just switch, or am I wrong?), do you think trying it on another broker would fix the issue?

You can try

Another thing i just thought of, we did some tests on demo and this did not occur, is it possible that when using demo, the LP's won't be an issue as the orders won't even go there?

Demo orders are not sent to the liquidity provider.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Jan 2021, 14:34

Hi Tiago,

I mean liquidity provider.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
08 Jan 2021, 13:39

Hi progy85,

If you need somebody to develop this for you, you can contact a Consultant or post a Job.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous