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

PanagiotisCharalampous
10 Nov 2020, 08:12

Hi samuel.jus.cornelio,

The message clearly describes the problem

Error CS0029: It is not possible to implicitly convert the type 'System.TimeSpan' to 'double'

Your variable should be of type TimeSpan and not double.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
10 Nov 2020, 08:10

Hi pistrituadrian16,

There are lots of volatility indicators available for cTrader. What exactly do you want to detect?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 15:06

Hi samuel.jus.cornelio,

You can try something like the below

                var tradingStarts = TimeSpan.ParseExact("17:00", "hh\\:mm", null);
                var tradingStops = TimeSpan.ParseExact("18:00", "hh\\:mm", null);

                if (Server.Time.TimeOfDay >= tradingStarts && Server.Time.TimeOfDay < tradingStops)
                {
                    // trade
                }

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 14:11

Hi imrealfighter,

There is no built in feature for this but you can use a cBot to achieve this.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 14:10

Hi Christian,

If the previous OnBar event has not been processed yet, then the new one is ignored.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 14:08

Hi there,

I am not sure what is the issue. Spotware cTrader Beta is just a demonstration platform to get familiar with the platform's features. If you want realistic a demo account, create a demo account on your broker's platform.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 14:05

Hi Ben,

No this is not possible. For other ways to interact with the indicator, please talk to the developer.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 14:02

Hi mcm187,

There is no such thing as enabling an account for NinjaTrader. As far as I know, NinjaTrader supports only netting accounts. If you have a netting account but you cannot see it in NinjaTrader, then you need to talk with NinjaTrader. There is nothing we can do on our side.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 10:15

Hi lec0456,

If you mean to uncheck the box from the code, then no this is not possible. You can program such behavior yourself using custom parameters.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 09:21

Hi samuel.jus.cornelio,

Here is how to reference a custom indicator.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 09:19

Hi samuel.jus.cornelio,

You need to provide the complete cBot code and steps to reproduce this behavior.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 09:18

Hi YouFX,

There is no such method in the API. You will need to write your own code for this.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 09:16

Hi Fabio,

To delete your demo account, please send us an email at community@spotware.com using the email address under which the account is linked.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 09:11

Hi aedu777,

There is already a snap feature when drawing lines.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 09:01

Hi mgpublic,

You can use the Stop() method to do so.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 08:59

Hi hartonoshen,

Check here for more information.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 08:57

Hi Peter,

This happens because Pepperstone does not offer cTrader Copy.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 08:46

Hi tgjobscv,

This is not possible at the moment.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 08:40

Hi ManArrow,

You can find all the information you need here.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
09 Nov 2020, 08:39

Hi lcpleopro,

There is no way to do this and you should not be able to copy signals from another strategy provider and provide them as your own.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous