
Topics
Replies
PanagiotisCharalampous
29 Nov 2018, 10:54
Hi dmn,
I cannot reproduce this. Which version of cTrader are you running? Can you make sure you are running the latest version?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Nov 2018, 10:36
Hi researchscrap,
There is no text font size feature at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Nov 2018, 10:29
Hi dmn,
No, there is no such setting.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Nov 2018, 10:00
Hi netread2004,
Since I do not have any code I can only assume what is happening. In general, you should not program your application in a transactional way. Since FIX API messages are streamed and they might not have a one to one correspondence to the messages sent, you should have a listener function that constantly reads and parses messages received via the stream, no matter how many messages are sent. This way you will receive your messages as soon as they arrive and not when your application decides to read a message from the stream.
Also you can consider using 35=AF which returns the status of all orders instead of asking for them one by one.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Nov 2018, 09:39
Hi dmn,
Currently a custom indicator is the only way. It is in our plans to allow displaying multiple indicators in one window. You can vote for the feature here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 16:46
Hi Mihai,
At this moment, Indicators print only in the Log tab of the cTrader Automate section. We will enable them to print in the cBot Log as well in one of the future releases.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 15:13
Hi Gabriele,
We have released an update today that fixes this issue. Can you please install it and confirm?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 15:12
Hi derangedlol,
We have released an update today that fixes this issue. Can you please install it and confirm?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 11:48
Hi RustyNomad,
I get your point and I understand the benefits of this approach however it contradicts with our business model at the moment. cTrader is a white labeled solution and allows brokers to customize their clients experience. Each broker tries to differentiate the offered services hence you will notice differences from cTrader to cTrader. Merging all brokers under one cTrader will eliminate this possibility.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 11:32
Hi RustyNomad,
Since each broker has his own cTrader platform, you can only trade with the accounts of the broker owning the cTrader platform you run. cTrader Copy is a cross broker application and allows you to create subaccounts using any account of any member broker and follow strategies from the same or another broker. There are no plans to change this at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 10:34
Hi Eklon,
We released an update today. Can you check if you have received it?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 10:31
Hi dmn,
We have released an update today that fixes this issue. Let me know if you have received it.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 10:26
Hi dmn,
The object list is the only place where you can access the objects on the chart. I will discuss with the product team how we can make it more usable.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 10:22
Hi all,
I suggest that you post this idea in UserVoice so that we can measure the demand for it. There are countless feature requests but we have finite resources therefore UserVoice helps us to prioritize based on demand. In UserVoice you will notice that suggestions with the highest amount of votes are managed accordingly.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 10:13
Hi dmn,
Stop losses and take profits are not shown in the Orders tab.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 10:01
Hi Mihai,
Here it is
using System; using System.Linq; using cAlgo.API; using cAlgo.API.Indicators; using cAlgo.API.Internals; using cAlgo.Indicators; namespace cAlgo.Robots { [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class NewcBot : Robot { protected override void OnStart() { Chart.MouseDown += Chart_MouseDown; } private void Chart_MouseDown(ChartMouseEventArgs obj) { Print("Time: " + obj.TimeValue); Print("Price: " + obj.YValue); } protected override void OnTick() { // Put your core logic here } protected override void OnStop() { // Put your deinitialization logic here } } }
We are working on the documentation as well :)
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 09:50
Hi dmn,
This is by design. All changes are saved automatically to your workspace. Save workspace is used for saving the settiings on a new on another workspace.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 09:44
Hi dmn,
There is no way to disable this feature.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
28 Nov 2018, 09:24
Hi dmn,
I could not reproduce a serious delay in workspace switching. Can you post a screenshot of such a setup? The heavier it is, the longer will take to load.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Nov 2018, 11:01
Hi anghenly,
We checked the troubleshooting information you submitted and it seems you are using cBots and custom indicators. We need to investigate if they cause the memory consumption. Can you please share them with us?
Best Regards,
Panagiotis
@PanagiotisCharalampous