
Topics
Replies
PanagiotisCharalampous
09 Jul 2019, 09:36
Hi mthunzibl,
Make sure that the cBot is working on the same timezone as your computer. If this is not the issue, you need to provide us with more information like the cBot code and examples where this problem occurs.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Jul 2019, 17:42
Hi Ton,
Indeed. But to check if the calculations are correct or wrong and if this is a known issue or not, we need to see the trades these numbers represent.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Jul 2019, 11:43
Hi nobulart,
Thanks for spotting this. We managed to reproduce and we will fix it soon.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Jul 2019, 11:13
Hi Ton,
If you can share the cBot then we can check.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Jul 2019, 10:58
Hi t0ranaga,
Markets open on Sunday 21:00 UTC and daily change takes place every day at 21:00 UTC. So a daily chart starts from 21:00 UTC to 20:59 UTC next day.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Jul 2019, 10:35
Hi Ton,
Why do you say so?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Jul 2019, 10:33
Hi Ton,
Yes but the opening time at 21:00 on the day before.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Jul 2019, 10:31
Hi mark.lite,
Thanks for posting in our forum
1. This works as designed.
2, 3. We could not reporoduce these issues. Is it possible to send us a short video demonstrating the steps you follow to reproduce them?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Jul 2019, 10:29
Hi 66281850,
It seems you are using the trading account number instead of the account ID. Please try using ProtoOATrader.ctidTraderAccountId and let us know if this works.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Jul 2019, 10:21
Hi amarnadeem1,
Here it is
foreach (var order in PendingOrders.Where(x => x.SymbolCode == Symbol.Name)) { CancelPendingOrder(order); }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Jul 2019, 17:14
Hi FireMyst,
Execution issues should be checked with the broker.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Jul 2019, 14:20
Hi amarnadeem1,
See below
using System; using cAlgo.API; using System.Linq; using cAlgo.API.Indicators; using cAlgo.Indicators; namespace cAlgo { [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class profit : Robot { [Parameter(DefaultValue = 100.0)] public double Parameter { get; set; } protected override void OnTick() { int? a = null; int? b = null; foreach (var position in Positions) a++; foreach (var position in Positions) if (position.Pips > Parameter) b++; if (a == b) foreach (var position in Positions.Where(x => x.SymbolName == Symbol.Name)) { ClosePosition(position); } } } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Jul 2019, 12:35
Hi benpepperwhittaker,
1) You can always hide the Active Symbol Panel by changing the layout modes
2) At the moment it is not possible. You can suggest this in the Suggestions section.
3) When you right click on a symbol, you should be able to see the relevant context menu. Favorites is not available anymore. You can create your own Watchlist instead.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Jul 2019, 09:34
Hi benpepperwhittaker,
You can use linked charts to do this. Just link your three charts together and then select your symbol from the market watch. All three charts should be updated.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Jul 2019, 09:27
Hi alexsanramon,
Can you send us troubleshooting information when this happens. Follow the instructions highlighted above.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Jul 2019, 09:16
Hi DelTrader,
The indicator you posted does not support passing series from another timeframe. It only works on the selected timeframe.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Jul 2019, 09:13
Hi jorgir72,
Thanks for the additional information. However the steps are still not clear. Any chance you can record a short video demonstrating the steps you follow to reproduce the problem?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Jul 2019, 16:01
Hi Alex,
You need ot use all the symbols fethced by the conversion chain.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Jul 2019, 15:24
Hi jasito,
Thanks. We managed to reprodice the problem and we will fix it.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Jul 2019, 09:42
Hi Alexis,
Can you share the cBot code with us?
Best Regards,
Panagiotis
@PanagiotisCharalampous