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

PanagiotisCharalampous
02 Sep 2021, 08:16

Hi charles.ebert,

Each broker has his own cTrader instance. So you should know which broker you are using only by checking which cTrader platform you are using.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


@PanagiotisCharalampous

PanagiotisCharalampous
01 Sep 2021, 12:40

Hi theintelligentwolf,

It seems you are using absolute values for setting SL and TP. You should use pips instead.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 


@PanagiotisCharalampous

PanagiotisCharalampous
01 Sep 2021, 08:02

Hi cpicey,

cTrader Copy for iOS is currently under development. We hope to have this feature soon.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
31 Aug 2021, 14:47

Hi ehsan.khabiri,

I could not reproduce the described behavior. Could you please record a video so that we can see what you are actually doing?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
31 Aug 2021, 10:30

Hi Christian,

All changes for drawings are accumulated when user's code is executed and the text is drawn after the code completes execution. There is no command to force update.

A workaround is to you can push some action to the queue so it will be executed later  in the following way.

 

  1. Call Chart.DrawStaticText
  2. Call BeginInvokeOnMainThread and pass an action as an argument that will start optimization work. This method will be called after the current method has finished.

See below an example

protected override void OnStart()
{
    Chart.DrawStaticText("status", "Preparing...", VerticalAlignment.Top, HorizontalAlignment.Left, Color.White);
    BeginInvokeOnMainThread(DoHeavyWork);
    // OnStart method will be finished and DoHeavyWork() will be called later
}

private void DoHeavyWork()
{
    var endTime = DateTime.Now.AddSeconds(4);
    while (DateTime.Now < endTime)
        System.Threading.Thread.Sleep(100);

    Chart.DrawStaticText("status", "Started", VerticalAlignment.Top, HorizontalAlignment.Left, Color.White);
}

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
31 Aug 2021, 09:10

Hi Abstract,

We managed to reproduce the problem and our team looking at it.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
31 Aug 2021, 08:30

Hi Björn,

Please share your indicator code as well as the indicator parameters so that we can reproduce the problem.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
31 Aug 2021, 08:27

Hi vittorioroncagli,

We need more information in order to help you. Please provide us with the following

  1. Complete cBot code
  2. A detailed explanation describing why do you think it doesn't work and explaining how to reproduce this behavior

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Aug 2021, 15:55

Hi Nick,

You will probably have to buy one (google it, there are hundreds of them available) and implement it as per the developer's instructions.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Aug 2021, 15:23

Hi Nick,

You have two options

1) Hard code the expiration date in the cBot's code and exit the cBot in case the expiration date has passed.

2) Implement a licensing system that will control the trial period of your cBot.

See an example for point 1 below

            var dateTime = new DateTime(2021, 9, 30);
            if (Server.Time > dateTime)
                return;

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Aug 2021, 11:47

Hi there, 

You could consider programming a condition that would allow the cBot to trade only during that specific day.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Aug 2021, 08:38

Hi k_543210,

In principle, this is possible. You can construct Q1 and Y1 bars using the data available from M1 bars.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Aug 2021, 08:31

Hi SA_TRENDS,

Please provide us with some screenshots of this message so that we can investigate further.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Aug 2021, 08:26

Hi robertsteven6027,

The platform supports this option. However this needs to be supported by your broker as well.

Best Regards,

Panagiotis 

Join us on Telegram 


@PanagiotisCharalampous

PanagiotisCharalampous
30 Aug 2021, 08:25

Hi ethanmcowell,

Thanks for your feedback. It would be more helpful for us if you could elaborate of the exact problem you have so that we can investigate and solve it.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Aug 2021, 08:20

Hi SA_TRENDS,

Which button are you referring to? Can you share some screenshots?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Aug 2021, 08:16

Hi nickthgiav,

There is no limitation in historical data but there is a limitation in how much data can be retrieved in one single request. If the requested data exceeds this limitation, then it should be requested over multiple requests. This is something the NinjaTrader team needs to handle on their side.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Aug 2021, 08:11

Hi SmartMoneyFx,

This is by design. The follower's investment is allocated to the strategy's positions, as it would when invested in any other fund. Investors invest in strategies as a whole and not in individual positions.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
30 Aug 2021, 08:07

Hi rohitkarki,

Unfortunately this is not possible at the moment.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
27 Aug 2021, 14:03

Hi Neilsh,

We received the files and we are investigating. 

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous