Topics
Replies
PanagiotisCharalampous
02 Sep 2019, 10:15
Hi Matteo,
Please post your suggestions in the Suggestions section.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Sep 2019, 09:52
Hi Andrew,
It it just an option for a dark theme on the full screen chart.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Sep 2019, 09:46
Hi heinvan,
Can you please share some screenshots demonstrating this problem so that we can check further?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Sep 2019, 09:43
Hi jcr1818,
Can you please provide more information about the problem? Do you get any error messages? Can you share some screenshots?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Sep 2019, 09:41
Hi danblack9988
Try the indicator below
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; namespace cAlgo.Indicators { [Indicator(IsOverlay = true, AccessRights = AccessRights.None, TimeZone = TimeZones.UTC)] public class MTFMA : Indicator { [Parameter("Timeframe 1", DefaultValue = "Minute15")] public TimeFrame MATimeframe1 { get; set; } [Parameter(DefaultValue = 14)] public int Periods1 { get; set; } [Parameter("FMA Type", DefaultValue = MovingAverageType.Weighted)] public MovingAverageType MAType { get; set; } [Output("Timeframe 1", Color = Colors.Lime, Thickness = 1)] public IndicatorDataSeries MA1 { get; set; } private MarketSeries series1; private MovingAverage Ma1; protected override void Initialize() { series1 = MarketData.GetSeries(MATimeframe1); Ma1 = Indicators.MovingAverage(series1.Close, Periods1, MAType); } public override void Calculate(int index) { var index1 = series1.OpenTime.GetIndexByTime(MarketSeries.OpenTime[index]); if (index1 != -1) { MA1[index] = Ma1.Result[index1]; } } } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Sep 2019, 09:35
Hi rgnfreeman,
If you are referring to the deals generated by the backtesting, go to History, right click on the grid and then "Export to Excel".
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Sep 2019, 09:31
Hi chiat213,
Thanks for posting in our forum.This feature will come in one of the upcoming updates of cTrader Desktop.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Sep 2019, 09:29
Hi BullittTraders,
We do not have an ETA for this feature yet.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Sep 2019, 09:28
( Updated at: 21 Dec 2023, 09:21 )
Hi Chris,
The Position ID for each deal in the History tab of cTrader can be found in the deal's infromation form. See below
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2019, 16:59
Hi jcr1818@gmail.com,
Thanks for reporting this issue. We will fix it in an upcoming update.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2019, 16:53
Hi trader.andyng,
What you describe is possible, but the detached charts location is not saved as a template but in your workspace instead.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2019, 10:02
Hi FireMyst,
The fix should arrive soon.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2019, 09:36
Hi buccinator,
Which cBot do you use? What happens exactly? Please provide us with the full source code.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2019, 09:20
Hi buccinator,
Can you provide us exact steps to reproduce this problem?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2019, 09:11
Hi piwowar.jakub,
There is no built in option in cTrader for this. However it seems a partner is selling a paid product in case you are interested.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2019, 09:09
Hi danblack9988,
As the message says, there is no property called Result. Try the below
Print(dma.MA1.Last(1));
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Aug 2019, 09:06
Hi Andre,
This post is from 2015. At that time you had the option to use cTrader ID or not. Afterwards, unlinking was implemented. But after migrating to a cTrader ID only environment, it is not possible to unlink an account since signing in with a trading account is not an option anymore. If you do not want to use some accounts any more, you need to ask your broker to delete them for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Aug 2019, 16:03
Hi rgnfreeman,
Of course you can. If you want to receive emails for price alerts, you can configure your Notifications accordingly.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Aug 2019, 15:59
Hi therealnakedtrader,
I would suggest i. Point iii can help a bit but I din't know how much and eventually you will end up at the same situation.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Sep 2019, 10:33
Hi Kafeldom,
Thanks for reporting this. We will fix it in an upcoming update.
Best Regards,
Panagiotis
@PanagiotisCharalampous