
Topics
Replies
PanagiotisCharalampous
12 Mar 2018, 15:15
Hi burakocak1903,
Thanks for your suggestion. We will be definitely adding this feature in a future release.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Mar 2018, 10:00
( Updated at: 21 Dec 2023, 09:20 )
Hi emeeder1,
The feature is available when right clicking inside the History grid. See below
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Mar 2018, 09:47
Hi .ics,
This issue has been fixed. Please make sure you have cleaned your cached chart history. Please see more details here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Mar 2018, 17:39
Hi depot051,
Open API v2.0 is currently under development. We hope that we will be able to announce more soon.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Mar 2018, 17:02
RE: RE:
eklon.sousa@gmail.com said:
Panagiotis Charalampous said:
Hi eklon.sousa@gmail.com,
You must have noticed that we usually avoid committing on dates :) We will roll out as soon as we make sure that we have a stable product. And the community's help in reporting issues is accelerating this process, therefore in much appreciated.
PS: We have managed to reproduce your issue and our engineers are working on fixing it.
Best Regards,
Panagiotis
Ok thank you!
Is possible to connect to my broker using Beta version? This will help to test further
No this is not possible.
Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Mar 2018, 16:47
Hi eklon.sousa@gmail.com,
You must have noticed that we usually avoid committing on dates :) We will roll out as soon as we make sure that we have a stable product. And the community's help in reporting issues is accelerating this process, therefore in much appreciated.
PS: We have managed to reproduce your issue and our engineers are working on fixing it.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Mar 2018, 12:13
Hi,
Regarding your first question on how to avoid executing an order if one position is open has negative profit, you can use a condition like the following
if (Positions.Count == 0 || Positions[0].NetProfit > 0)
However it is still vague to me what you are trying to do, so I cannot advise you how to properly use it in your code.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Mar 2018, 11:35
Hi jjwes76@gmail.com,
What happens if many positions are open?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Mar 2018, 09:51
Hi dimitri.vid101,
Based on your description, this can be implemented using cAlgo. You can consider assigning this task to a Consultant or post a Job.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Mar 2018, 09:13
Hi jjwes76@gmail.com,
You can use the NetProfit property of the opened position to check if is profitable. If you most your cBot code, I might be able to modify it accordingly for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2018, 14:27
Hi Cyril,
Your exceptions are thrown from the following two statements
1)
Symbol.Code.Substring(3, 3)
BRENT has only 5 characters so this statement will throw exception for BRENT.
2)
MarketData.GetSymbol("USD" + Symbol.Code.Substring(3, 3))
This will return "USD.GA". This is not a valid symbol. Please reconsider your GetVolume() function logic.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2018, 12:58
Hi Cyril,
The cBot throws an exception. I will need the cBot code in order to tell you why the exception is thrown.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2018, 12:48
Hi Cyril,
Can you check the log if there is any issue with your cBot? I checked both symbols on FxPro cAlgo and I don't see any problem with the tick data. If you can send me your cBot then I can check what is going on.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2018, 11:28
Hi Cyril,
Thanks for posting in our forum. Please tell us which broker's cAlgo you are using and send us a screenshot of the time ranges where you have detected an issue so that we can check.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2018, 09:59
Hi oneplusoc,
The example works fine. Probably you are doing something wrong in the process. It would be better to tell what you would like to do instead of solving exceptions one by one. It seems there are a lot of coding mistakes in your code because you mix bits and pieces from different code samples, but I cannot advise you on that since I don't know what you are doing. You could also consider getting some professional help from a Consultant.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2018, 09:46
Hi jalmir.coelho@gmail.com,
Please see below an example how to get an indicator for a timeframe of your choice.
var m15 = MarketData.GetSeries(TimeFrame.Minute15).Median; var macd = Indicators.MacdCrossOver(m15, 26, 12, 9);
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2018, 09:42
Hi all,
This has been added to our backlog but for a future release.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2018, 09:37
Hi elmstreettrading,
There is no such feature currently in cTrader. You can suggest it in the Suggestions section.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2018, 09:32
Dear guimaraesfc,
Thanks for posting in our forum. Currently there is no way to change the location of the cBot buttons.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Mar 2018, 17:04
Hi peeppalts,
Probably your margin does not allow you to open such a high volume. If you hover your mouse over the volume dropdown in QuickTrade panel, you will see the margin required for the volume specified.
Best Regards,
Panagiotis
@PanagiotisCharalampous