Replies

PanagiotisCharalampous
18 Mar 2019, 10:41

Hi Ton,

If you can isolate the steps to reproduce this issue, please let me know to check it.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
18 Mar 2019, 10:39 ( Updated at: 21 Dec 2023, 09:21 )

Hi a.fernandez.martinez,

You cannot draw indicators from a cBot. However there are several objects you can draw. See below 

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
18 Mar 2019, 10:16 ( Updated at: 21 Dec 2023, 09:21 )

Hi ycomp,

Subaccounts appear under the main account in cTrader Copy. See image below

cTrader Copy section is only available to brokers that offer the service. Who is your broker?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 17:52

Hi ycomp,

Copied positions are only visible in cTrader Copy section. To see them you need to select the subaccount that is copying the strategy. If you still cannot see the copied positions, please send us some screenshots of both the strategy page and the subaccount page to investigate further.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 16:09

However you could implement a solution without a timer. You can record the starting time and check in OnTick if 24 hours elapsed since the cBot started.

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 16:07

Hi Lukas,

There is no such option at the moment.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 14:58

Hi Mikro,

This is not supported at the moment. Is it not possible to replace the python script with C# code?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 14:55

Hi tgjobscv,

Can you please try a clean installation and let us know if it resolves the problem?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 14:48

Hi dmn,

For fast actions, you can always use Ctrl+C to enable/disable crosshair without having to go back to the line tools.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 11:06

Hi Adrian,

Brokers are still using v3.3. So you can use a broker's cTrader.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 10:47

Ηi a.fernandez.martinez,

It is possible but you need to program your function properly to avoid NullReference exceptions.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 10:15 ( Updated at: 21 Dec 2023, 09:21 )

Hi Nasser,

Yes it is, see below

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 10:04

Hi trader.calgo,

You can use the MouseMove event to capture the mouse location at any moment. See below an example


        protected override void OnStart()
        {
             Chart.MouseMove += OnChartMouseMove;
            
        }
        
        void OnChartMouseMove(ChartMouseEventArgs obj)
        {
            Print(obj.TimeValue);
            Print(obj.YValue);
        }

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 10:03

Hi matayas,

Just to let you know that we have managed to reproduce the issue and we will fix it in an upcoming update.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 10:00

Hi bienve.pf,

There is no Selected state for the objects in the chart. When you say modify, do you mean when objects are dragged on the chart? If yes, you can use DragStart and  DragEnd events.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 17:07

Ηι a.fernandez.martinez,

GetSymbol will return you a Symbol object with general inforrmation about the symbol. GetSeries will return you a MarketSeries with historical prices information of a specific symbol and timeframe.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 15:22

Hi hmozahem,

Unfortunately we could not reproduce internally. Is it possible to arrange a TeamViewer session so that our QA team can inspect the issue? If yes, please send me an email at community@spotware.com

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 14:53 ( Updated at: 14 Mar 2019, 14:57 )

Hi Brian,

Can you please post such ads in the Third Party Products section please? 

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 12:35

Hi fxwisdom1@gmail.com,

The total time a message needs to travel from your application to our servers is the Server latency. Therefore this is the number you should consider. Your assumption about the flow is correct.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 11:40

RE:

terryww2 said:

Thanks for the quick answer. Regarding partially filled market order - isn't market order by definition always filled whole? I'd imagine a buy market order would be partially filled only if there are not enough sell (ask) limit orders in the orderbook.

Hi terryww2,

Your assumption is correct. If there are not enough orders in the order book then the order might be partially filled.

Best Regards,

Panagiotis

 


@PanagiotisCharalampous