Topics
Replies
PanagiotisCharalampous
30 May 2018, 10:54
Dear Trader,
You can get the executed deals either by using History in cAlgo.API or using Connect API
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 May 2018, 17:01
Hi rasool.nasr@gmail.com,
I must admit that editing capabilities of cAlgo are basic when compared to professional IDEs. If you are an experienced programmer, I would advise you to try creating cBots using Visual Studio.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 May 2018, 16:41
Hi pogostick,
You can always keep the previous price in a variable. See an example below
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 { [Parameter(DefaultValue = 0.0)] public double Parameter { get; set; } private double _previousAsk; protected override void OnStart() { // Put your initialization logic here } protected override void OnTick() { if (_previousAsk > Symbol.Ask) { //do something } _previousAsk = Symbol.Ask; } protected override void OnStop() { // Put your deinitialization logic here } } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 May 2018, 16:36
Hi AwarenessForex,
Thanks for posting in our forum. There is no comprehensive list of all brokers offering cTrader. However you can find most of them by searching on Google.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 May 2018, 16:34
Hi GoldnOil1050,
If cTrader crashes, then the solution is to fix the crashes, not split the applications. Please report to us when the crashes happen so that we can fix them. Beyond that, your answer does not provide any other reason why you cannot use two instances of cTrader, one for trading and one for developing your cBots. Honestly, there is nothing different here than running cTrader and cAlgo in parallel. Even if one instance crashes the other one stays intact.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 May 2018, 16:17
Hi joreypull@gmail.com,
Thanks for reposting this issue to us. I have forwarded it to our product team for investigation.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 May 2018, 16:12
Dear Trader,
Thanks for posting your feedback. Regarding the logins, we are the first to have pushed a single-sign-on approach in this market and you can login into the entire cTrader ecosystem with a single login, your cTID. Trading account logins are kept from some brokers for compatibility but we hope that soon everyone will embrace our cTID approach. Therefore I do not understand what is your complain about. If you can elaborate further, then we can understand if there is a problem or not.
Regarding the second part of your post, cTrader 3.0 has been released and announced as a Beta three months ago. Since then we have gathered and incorporated plenty of traders feedback into the final release. Also some brokers offer cTrader to their clients for the past month. We would be happy if we had received your feedback earlier in this process so that we could address your concerns better. Nevertheless, you can still let us know about any bugs and issues you might have with the new release so that we can improve the application in the following updates.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 May 2018, 13:50
Hi guys,
I understand that this is a big change but what prevents you from running two instances of cTrader at the same time, one for trading and one for coding? There is no difference to running an instance of cTrader and an instance of cAlgo. It is exaclty the same thing, just a different name and logo. On the other hand, it makes it easier to novice users to discover cAlgo and much much easier for us to maintain one codebase instead of two. This arrangement, will allow us to delivered more features in less time to you in future updates.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
25 May 2018, 12:35
Hi all,
Hopefully by the end of next week all brokers should have cTrader 3.0.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
25 May 2018, 09:36
( Updated at: 21 Dec 2023, 09:20 )
Hi Eklon,
The trend does not change. What is changing is the slope of the line which is related to the scale of the X and Y axis. The slope will change even in the same chart if you chance the scale of the Y or the X Axis. See below some examples from the same time frame.
When you change timeframes then scales change. Based on that the slope will change as well
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
25 May 2018, 09:26
Hi proteusz_3000,
Thanks for posting in our forum. However we do not have enough information to understand what the problem is. Did you try to communicate this with your broker? Would you like to share some more information with us about your positions like entry prices, stop losses, when did they close, what would you expect to happen instead?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 May 2018, 17:36
Hi Eklon,
I don't see any problem. This is expected when the scale of the Y Axis changes.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 May 2018, 10:40
Hi juangmez87,
I have both versions and did not experience this issue. Anyway, by next week you should have received cTrader 3.0 for ICMarkets as well, therefore you should not have this issue anymore.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 May 2018, 10:37
Hi ctrade888,
Thank you. So it is not a matter of equal distance between price points within the same symbol but about the difference in scale between different symbols. Would you mind posting your suggestions in the Suggestions section so that we can easily trace it and add it to future releases?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 May 2018, 09:50
Hi juangmez87,
Could you post a screenshot of the error message?
Best Regards
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 May 2018, 09:44
Hi,
You can try something like this
_volume = (long)Math.Ceiling(Account.Equity / 1000) * 1000
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 May 2018, 09:37
Hi ctrade888,
This is by design. Templates should be loaded only when new charts are loaded.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 May 2018, 09:34
Hi ctrade888,
Thanks for your suggestion. However, why do you say that the steps are not equal? Could you send me a screenshot?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 May 2018, 09:32
Hi brianchan661,
You can use DrawLine for that.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 May 2018, 10:58
Hi GoldnOil1050,
Thanks for the screenshots. We will investigate this.
Best Regards,
Panagiotis
@PanagiotisCharalampous