
Topics
Replies
PanagiotisCharalampous
02 Nov 2020, 08:31
Hi cranmer767,
This functionality can be easily coded by the community. See a cBot 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 ScrollTo : Robot
{
[Parameter(DefaultValue = 2014)]
public int Year { get; set; }
[Parameter(DefaultValue = 1)]
public int Month { get; set; }
[Parameter(DefaultValue = 1)]
public int Day { get; set; }
protected override void OnStart()
{
var date = new DateTime(Year, Month, Day);
while (Bars.OpenTimes[0] > date)
Bars.LoadMoreHistory();
Chart.ScrollXTo(date);
}
protected override void OnTick()
{
// Put your core logic here
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
}
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Nov 2020, 08:23
Hi SmartArtsStudio,
We plan to add more customization options in future releases like the option to develop plug ins, but we have not started working on such features yet, hence you should not expect them in the next few versions.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Oct 2020, 15:24
Hi jayteasuk,
The port is 5035, the same as for demo.ctraderapi.com. I am not sure which code are you referring to, if you are looking for open authentication instructions, check here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Oct 2020, 12:15
Hi Lisa,
No this is not possible at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Oct 2020, 12:15
Hi SmartArtsStudio,
At the moment it is not possible to customize such functionality in cTrader.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Oct 2020, 12:08
Hi jayteasuk,
I do not see what is the problem. If you only have one demo account then you can authorize it only on demo.ctraderapi.com:5035. tradeapi.spotware.com is not a valid proxy for Open API 2.0 and live.ctraderapi.com should be used only for live accounts.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Oct 2020, 12:00
Hi aldo.zorzi,
It would be better to use the Suggestions section for your suggestion so that the product team can consider them.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Oct 2020, 11:57
Hi testpossessed,
Please provide us with a complete indicator code to reproduce the issue.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Oct 2020, 14:25
Hi m.francomano,
It seems that your settings have been also saved in your workspace on the cloud. We removed them from the cloud. Please delete the contents of the folder again and then restart cTrader.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Oct 2020, 10:10
Hi mstf.dgn199940,
To investigate this further, our QA team needs to inspect your computer. If you are available for a TeamViewer session, please contact me at community@spotware.com or on Telegram to arrange this.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Oct 2020, 08:27
Hi victorabundis2014,
cTrader Copy and cMirror are not available on the mobile applications at the moment. Also we will shut down cMirror service soon.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Oct 2020, 08:24
Hi jayteasuk,
You need to provide more information. Can you please describe the exact steps you follow? How did you implement OAuth? which parts of the code did you modify? Which part of the code returns the example account number?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Oct 2020, 16:53
Hi SArt,
You can develop a custom indicator and include whatever you wish.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Oct 2020, 16:52
Hi mstf.dgn199940,
You did not answer question 1. We need this information.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Oct 2020, 09:29
Hi mstf.dgn199940,
1) Can you please provide us with the exact address if your Documents folder e.g. C:\Users\<user_name>\Documents\
2) Can you tell us if a C:\Users\<his_user_name>\Documents\cAlgo folder exists and if there are any contents there? Please provide a screenshot if possible.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Oct 2020, 07:50
Hi Daletrade,
It is not possible to export your orders with TP/SL at the moment from cTrader. You can only export your trading history and all the executed deals.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Oct 2020, 07:47
Hi duketv,
You are calling OpenPosition() using two arguments e.g.
OpenPosition(TradeType.Buy, stopLossPips);
but you should be using only one e.g.
OpenPosition(TradeType.Buy);
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Oct 2020, 07:44
Hi YouFX,
Indicators do not print in the cBot log at the moment but we plan to add this possibility in a future update.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Oct 2020, 16:29
Hi mstf.dgn199940,
Please provide us with the following information as well
1) Confirm that the issue persists after restarting cTrader.
2) Which broker's cTrader you are using
3) Where do you download cTrader from?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Nov 2020, 08:33
Hi yuval.ein,
No there isn't.
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous