Topics
Replies
PanagiotisCharalampous
09 Dec 2019, 14:41
( Updated at: 21 Dec 2023, 09:21 )
Hi ctid1253733,
If you mean the Target on the chart then this is a signal coming from Trading Central.
To reply to threads, just press the Reply button on the top right of the thread.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 14:31
Hi Ton,
There are no immediate plans for this. Regrading
any idea how to calculate the risk taken before taking a position in a Pair not equal to the account currency without using the symbol Class?
The only workaround at the moment is to use Open API.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 14:29
Hi ctid1253733,
I am not sure about which indicator you are talking about. Can you share a link?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 11:39
Hi kofidk24,
These tools are already there.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 11:24
Hi abc,
No it is not. You can use any broker's cTrader instead.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 11:04
Hi abc,
The current brokers version is 3.6 and you should not have this problem. The problem was reported on 3.7 which is currently only on Beta.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 09:40
Hi Ton,
Symbols are not supported in Optimization at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 08:59
Hi jcr1818,
Are you referring to the Rank Correlation Index indicator?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 08:52
Hi tgjobscv,
This can be easily programmed into a cBot. You can post a Job for this or contact a Consultant.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 08:47
( Updated at: 21 Dec 2023, 09:21 )
Hi kofidk24,
Here it is
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 08:43
Hi mbv4f,
You should report this issue to your broker for further investigation about what caused this issue.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 08:35
Hi dynamites,
News are not added on the chart yet. This will be added in a future release. Events can be filtered by symbol.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 08:31
Hi Patrick,
Indeed, templates are not backwards compatible. You should be overriding your templates if you plan to use them on an older version.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Dec 2019, 09:25
Hi eofe,
Christmas was the target for the Beta :) We cannot give an ETA for release to brokers, it depends on how the Beta testing will go. We will release to brokers as soon as we are confident that 3.7 is stable enough for production environments.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Dec 2019, 09:03
Hi ctraderftmo+115,
We are considering two factor authentication for future versions of cTrader ID but at the moment this is the only secure option. Regarding
they simply could not get my account operational again
If the broker has issues with this they should contact us directly to check it.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Dec 2019, 08:50
Hi calagan33,
Please try the solution proposed in this video and let us know if it solves the problem for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Dec 2019, 08:38
Hi eofe,
The bar's open time is taken from the first new tick that will arrive for that bar. This is why you get different opening times.
Regarding sample, I am not sure what do you need exactly but below you can see a very simple example of listening to the BarOpened event
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 BarOpenedExample : Robot
{
protected override void OnStart()
{
var bars = MarketData.GetBars(TimeFrame.Minute, "GBPUSD");
bars.BarOpened += Bars_BarOpened;
}
private void Bars_BarOpened(BarOpenedEventArgs obj)
{
Print("New bar created for " + obj.Bars.SymbolName + " at " + obj.Bars.Last(0).OpenTime);
}
}
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Dec 2019, 17:20
Hi A.R.
Thanks for the code. We managed to reproduce it and it seems to be an issue on our side. We will fix it in an update.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Dec 2019, 16:55
( Updated at: 21 Dec 2023, 09:21 )
Hi Xavier R,
1) As a good practice please try to create new threads for such discussions. It will be easier for future searches by other users.
2) I am not sure what is the issue. The 16 seconds? Note that this data needs be downloaded from the server so you should also take that into consideration. In my case, bars are loaded almost instantly. See below
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2019, 15:01
Hi ctid1253733,
We do not know how do they do it. You might want to contact them directly for more information but I do not think they will reveal their method to anybody.
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous