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

PanagiotisCharalampous
12 May 2021, 08:03 ( Updated at: 21 Dec 2023, 09:22 )

Hi ctid3732010,

There is no ranking algorithm. You sort and filter the strategies yourself.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
12 May 2021, 08:00

Hi ctid4093009,

Here you go

Make sure SL and TP are checked. They need to be checked in order to see them on the chart.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 May 2021, 15:28

Hi mthazim428,

This improvement is planned for a future release of cTrader Web.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 May 2021, 08:07

Hi budda_dan2020,

No, this information is not available through the API. The data is retrieved from FxStreet.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
11 May 2021, 07:51

Hi douglascvas,

Historical positions are not accessible at the moment through Open API. If you need to store this information, you need to do this on your side.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
10 May 2021, 13:52

Hi dylenting81,

You can try this one

https://ctrader.com/algos/indicators/show/2630

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
10 May 2021, 13:51

Hi Mark,

Can you share some screenshots so that we can understand what you are looking at?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
10 May 2021, 08:48

Hi faizanrazasuser,

Try the workaround below

  1. Search for "ctrader.exe.config" files in your "...AppData\Local\Apps\2.0\" folder 
  2. Add "<gcServer enabled="true" />" as the fist element under the "<runtime>" in all the files you find. 
  3. Restart cTrader.

Let me know if this resolves the issue.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
10 May 2021, 08:39 ( Updated at: 21 Dec 2023, 09:22 )

Hi romerolr1497,

Your question is not very clear. You can backtest your cBot on any timeframe you wish, see below

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
10 May 2021, 08:19

Hi amml,

You are using a lot of periods in your indicators. Averaging 1000 periods on every tick would take some time. If you really need to use so many periods and the performance is critical to you, you could consider implementing your own custom indicators, which would be optimized for performance.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
06 May 2021, 10:31

Hi ctid4064603,

Check the SetBarColor() method.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
06 May 2021, 10:25

Hi ctid4064603,

Daily candles open on Sunday at 21:00 UTC and formed every 24 hours. The convention is the same for all platforms. 

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
06 May 2021, 10:21

Hi ctid4064603,

As explained above, Daily candles open on Sunday at 21:00 UTC. 

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
06 May 2021, 08:11

Hi there,

Renko backtesting is not available at the moment.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
05 May 2021, 12:22

Hi Jobauma,

Assuming that you need at least 1000 bars for your indicator to be calculated correctly, you can do the below in the Initialize() method

        protected override void Initialize()
        {
            // Initialize and create nested indicators
            if (Bars.Count < 1000)
                Bars.LoadMoreHistory();
        }

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
05 May 2021, 08:15

Dear rocco9929,

Can you please send us a screenshot of this message?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
05 May 2021, 08:09

Hi Jobauma,

This is a normal behavior. If you need more bars for your indicator to be calculated, just use LoadMoreHistory() method.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 May 2021, 09:13

Hi my_love52,

If your graphics cars is an Intel Iris, then this is a drivers bug. You can read more about it here.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 May 2021, 09:10

Hi TradingOne

  • What happens if a follower of a strategy stops following a strategy due to losses in that strategy but restarts following the same strategy later in a few weeks / months? What happens to the high-water mark here?

For strategies that are stopped restarted, the previous watermark is preserved

  • Some strategy providers have many followers but restart their strategy completely new after a failure or total losses. They sometimes come back with the same name and/or same strategy name. In this case, does the high-water mark disappear / reset for them and the followers? That would be a bit unfair for followers if they were able to return each time with a new strategy without the high-water mark.

If it is a new strategy, then there is a new high watermark as well. There is nothing relating the old strategy and the new one.

Best Regards,

Panagiotis 

Join us on Telegram  


@PanagiotisCharalampous

PanagiotisCharalampous
04 May 2021, 09:06

Hi anhnguyenbp,

You are only charged if the absolute profit surpasses the previous absolute loss e.g. in the first case, if you lost $2000 and then made $1200, you won't be charged performance fees. Same logic applies for the second case as well.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous