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

PanagiotisCharalampous
30 Jun 2024, 13:54

Hi there,

Does this happen in cTrader 5.0 as well?

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jun 2024, 13:50

RE: RE: RE: RE: MacOS App Backtesting

ctid6885650 said: 

PanagiotisCharalampous said: 

cBotTrader said: 

PanagiotisCharalampous said: 

Hi there,

Backtesting is not available yet, it will be delivered in an upcoming update.

Best regards,

Panagiotis

Hi,

There are a few months already. Can we get an estimated date for backtesting in macOS?

Thanks!

Unfortunately we do not have an ETA at the moment.

So this means Mac users are completely locked out of backtesting :( You cannot do it via the web UI, and not supported on Mac either?

Great shame as it completely ruins the point of using ctrader.

Do you know when you will commit to a release date?

Kind regards, Steve. 

Hi Steve, 

We do not commit to release dates. When it will be ready it will be released.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jun 2024, 13:42

Hi there,

Talk to your broker. They need to create a new account for you on the same server as the strategy providing account.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jun 2024, 06:22

Hi there, 

Renko charts are already available in all cTrader applications.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jun 2024, 06:21

Hi there,

This will be added in a future update of the calculation.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jun 2024, 06:20

RE: RE: Wrongly cited gains/losses

narino901garces said: 

PanagiotisCharalampous said: 

Hi there,

This is probably caused due to swaps. Check your swaps.

Best regards,

Panagiotis

 

Hey hey, thanks for the early response.

I forgot about swaps, I came from mt4 where the swaps would not be calculated in your open position. 

But the explaination seems fitting.

 

Every night that you hold open a position, does your swap cost increase?

Also would you know why pepperstone has market hours on bitcoin/usd ? That would seem odd to me.

It depends on your broker's settings. You should address these questions to your broker.


@PanagiotisCharalampous

PanagiotisCharalampous
29 Jun 2024, 08:48

Hi there,

This is probably caused due to swaps. Check your swaps.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
29 Jun 2024, 08:36

Hi there,

You can use Trade Copier to copy trades from one account to other accounts.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
29 Jun 2024, 08:34

RE: RE: RE: Candle chart

evanperry99 said: 

evanperry99 said: 

PanagiotisCharalampous said: 

Hi all,

This issue is currently under investigation.

Best regards,

Panagiotis

Mine is now working by the looks of it, there are gaps between 2am - 6am potentially when it was being fixed, however after that and now  it is clean 

not sure whether it’s due to news, but mine has started doing the same thing again, showing gaps, and 15min down to 1min is not saving candles on my chart if I come off the chart 

 

Can you check now?


@PanagiotisCharalampous

PanagiotisCharalampous
28 Jun 2024, 10:30

Hi there,

You should talk to your broker regarding execution issues.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Jun 2024, 10:27

RE: RE: RE: list of symbols

ncel01 said: 

PanagiotisCharalampous said: 

ncel01 said: 

Hello,

Is this not yet possible?

Forex symbols have consistent names across brokers, but other symbols don't.

Considering this and a multi-symbol cBot:

The possibility to add a drop-down list (to the parameters) containing all the available symbols for the current account would be very useful. As already available (by default) with every cBot instance.
 

Thanks.

Hi ncel01,

It is possible to use an enum as a parameter now.

Best regards,

Panagiotis

Hi Panagiotis,

I mean a dynamic drop-down list, containing all the exact symbol names for the current account. Not a static list.

Is this possible?

No this is not possible


@PanagiotisCharalampous

PanagiotisCharalampous
28 Jun 2024, 10:17

Hi Faheed,

This issue is currently under investigation.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Jun 2024, 08:14

RE: RE: RE: RE: Incorporation of different method's arguments in a new method

Giorgi_1 said: 

PanagiotisCharalampous said: 

Giorgi_1 said: 

PanagiotisCharalampous said: 

Hi there,

You can't just pass parameters to a method arbitrarily. If you want to record which mouse key was pressed, use Chart.KeyDown event 

Best regards,

Panagiotis

Thanks Panagiotis, i did think the above wouldn't work, it was just more of an attempt to understand how i would achieve it. Could you show/explain how it could be achieved? 

Thanks in advance

Hi there,

As per my previous post, if you want to capture which button was pressed you need to use the Chart.KeyDows event. Here is a small example

        protected override void Initialize()        {            Chart.KeyDown += Chart_KeyDown;        }        private void Chart_KeyDown(ChartKeyboardEventArgs obj)        {            Print(obj.Key);        }

Best regards,

Panagiotis

Thanks Panagiotis. Perhaps i can clarify further using code:

Do you know if it's possible to do something like:

 

        private void Highlight_Click(ToggleButtonEventArgs obj, ChartKeyboardEventArgs keyobj)
        {
             
             if(keyobj.AltKey)
                {
                
                    if(obj.ToggleButton.BackgroundColor == Color.Green)
                        {
                            Print("Option1");
                        
                        }
                }
             if(!keyobj.AltKey)
                {
                
                    if(obj.ToggleButton.BackgroundColor == Color.Green)
                        {
                            Print("Option2");
                        
                        }
      

I'm trying to use a single method but incorporate the keydown events, as well as the togglebutton events. Is that something that can be done?

No this is not possible


@PanagiotisCharalampous

PanagiotisCharalampous
28 Jun 2024, 07:15

RE: RE: Incorporation of different method's arguments in a new method

Giorgi_1 said: 

PanagiotisCharalampous said: 

Hi there,

You can't just pass parameters to a method arbitrarily. If you want to record which mouse key was pressed, use Chart.KeyDown event 

Best regards,

Panagiotis

Thanks Panagiotis, i did think the above wouldn't work, it was just more of an attempt to understand how i would achieve it. Could you show/explain how it could be achieved? 

Thanks in advance

Hi there,

As per my previous post, if you want to capture which button was pressed you need to use the Chart.KeyDows event. Here is a small example

        protected override void Initialize()
        {
            Chart.KeyDown += Chart_KeyDown;
        }

        private void Chart_KeyDown(ChartKeyboardEventArgs obj)
        {
            Print(obj.Key);
        }

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Jun 2024, 07:08

Hi there,

Buy orders are executed by Ask prices. Candles are drawn by Bid prices. Probably Ask price never reached your order due to the spread.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Jun 2024, 07:04

RE: list of symbols

ncel01 said: 

Hello,

Is this not yet possible?

Forex symbols have consistent names across brokers, but other symbols don't.

Considering this and a multi-symbol cBot:

The possibility to add a drop-down list (to the parameters) containing all the available symbols for the current account would be very useful. As already available (by default) with every cBot instance.
 

Thanks.

Hi ncel01,

It is possible to use an enum as a parameter now.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Jun 2024, 07:02

Hi all,

This issue is currently under investigation.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2024, 13:03

Hi there,

You can't just pass parameters to a method arbitrarily. If you want to record which mouse key was pressed, use Chart.KeyDown event 

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2024, 12:18

Hi there,

Can you record a video demonstrating this happening?

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Jun 2024, 12:16

Hi there,

Could you please send us some troubleshooting information the next time this happens? Please paste a link to this discussion inside the text box before you submit it.

Best regards,

Panagiotis
 


@PanagiotisCharalampous