Topics
Replies
PanagiotisCharalampous
23 Jul 2019, 16:10
Hi Eliezer,
Can you please provide more information about the error you are referring to e.g. a screenshot? Which broker are you using? Which symbol?
Best regards,
Panagiois
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 14:28
Hi eyeball,
We do not have an ETA for renko backtesting yet. Regarding the other two there are no plans yet.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 14:07
Hi therealnakedtrader,
Thanks for posting in our forum. Can you please post the complete cBot code including the statement used to print? It seems that your print function is just concatenating the two values as strings
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 10:58
Hi Ivan,
Thanks for the info. Can our QA team contact you directly? If yes, please send me an email at community@spotware.com to arrange this.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 10:01
Hi benpepperwhittaker,
Yes that could work.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 09:30
Hi wolfager,
Thanks for posting in our forum. We will be releasing v3.6 soon. Please check when released and let us know if it resolves the issue.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 09:15
Hi benpepperwhittaker,
Currently this is not possible. We will provide a solution in a future update.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 12:45
Hi bankuow@hotmail.com,
This is not what the link says. You have used the equation for Rn. The equation you need to use is for TWR (%). Also it seems you are using the balance instead of the equity.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 12:27
Hi bankuow@hotmail.com,
You can find how ROI is calculated here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 11:02
Hi Jens,
We have considered the feedback of the community and we will fix this behavior in one of the upcoming updates.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 10:13
Hi Rosesmillionaire,
Thanks for posting in our forum.On hovering the mouse on top of each option a detailed explanation of each one pops up. Explanation is also offered here. Could you elaborate on what is not clear for you?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 10:06
Hi webbuk,
Thanks for posting in our forum. Backtesting does not consisder swap fees.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 10:03
Hi Ivan,
Can you post the screenshots from where you got these numbers? Are you sure they refer to the same period? Please make sure the period is visible in all the screenshots.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 10:00
Hi bitmext,
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; } protected override void OnStart() { Positions.Closed += OnPositionsClosed; } void OnPositionsClosed(PositionClosedEventArgs obj) { if (obj.Reason == PositionCloseReason.TakeProfit) { if (obj.Position.TradeType == TradeType.Buy) ExecuteMarketOrder(TradeType.Sell, Symbol.Name, obj.Position.VolumeInUnits); else ExecuteMarketOrder(TradeType.Buy, Symbol.Name, obj.Position.VolumeInUnits); } } protected override void OnTick() { // Put your core logic here } protected override void OnStop() { // Put your deinitialization logic here } } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 09:54
Hi muradekmekci,
Thank you for posting in our forum but it is not very clear which arrow are you referring to. Could you share a short video or screenshots demonstrating what you are describing?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2019, 09:49
Hi Lorenzo,
Thanks for posting in our forum. There is no such option currently.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Jul 2019, 16:23
Hi btcjamendoza,
Yes of course. cMirror will mirror your trades no matter where they come from.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Jul 2019, 15:38
Hi exellentoak@gmail.com,
You are not doing anything wrong, this is how it is working at the moment. We will provide the option for separate installations in a future update.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Jul 2019, 14:58
Hi Dinko,
Multiple connections to the same account adn proxy are not supported for FIX API. Could you describe what would you need them for?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2019, 16:39
Hi Eliezer,
Backtesting data is only available untll the day before. For today's backtesting data, you will need to wait till tomorrow. At this moment backtesting data for 22/07 is available.
Best Regards,
Panagiotis
@PanagiotisCharalampous