Trade Statistics unreliable
Trade Statistics unreliable
23 Mar 2020, 10:20
Hi CTDN,
Looking back in the forum the stats have been wrong from quite some time now.
As some guys look at the stats to see wheter they've don a nice job and the
results are consistent it is important that the stats ar 100% Okay.
But although it has been reported before, again i want to stress the importance of
getting data that is correct!
How can you have long Drawdown if there are no long positions!!!
Also for negative results: almost 20K positions but the stats say ZERO!
So CTDN please fix the stats to be reliable!
Best rgds.
Replies
Shares4UsDevelopment
23 Mar 2020, 14:30
Statistics drawdown error bot
this one is for the drawdown error
using System;
using System.Collections.Generic;
using cAlgo.API;
using cAlgo.API.Requests;
using cAlgo.API.Internals;
using System.IO;
namespace cAlgo
{
[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class Test : Robot
{
[Parameter("p1", DefaultValue = TradeType.Buy)]
public TradeType tt { get; set; }
protected override void OnStart()
{
ExecuteMarketOrder(tt, SymbolName, 1000, "", 100, 10);
ExecuteMarketOrder(tt, SymbolName, 2000, "", 100, 10);
}
}
}
do not have time to strip a bot to show the other error but the error is obvious i think.
@Shares4UsDevelopment
Shares4UsDevelopment
23 Mar 2020, 14:40
RE: Statistics drawdown error bot
Shares4UsDevelopment said:
this one is for the drawdown error
using System; using System.Collections.Generic; using cAlgo.API; using cAlgo.API.Requests; using cAlgo.API.Internals; using System.IO; namespace cAlgo { [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class Test : Robot { [Parameter("p1", DefaultValue = TradeType.Buy)] public TradeType tt { get; set; } protected override void OnStart() { ExecuteMarketOrder(tt, SymbolName, 1000, "", 100, 10); ExecuteMarketOrder(tt, SymbolName, 2000, "", 100, 10); } } }
do not have time to strip a bot to show the other error but the error is obvious i think.
Jus found out the second error also occurs when equity gets negative.
@Shares4UsDevelopment
PanagiotisCharalampous
23 Mar 2020, 15:01
Hi Shares4UsDevelopment,
I still need cBot parameters, dates and optimization parameters so that we can reproduce the results you are seeing.
Best Regards,
Panagiotis
@PanagiotisCharalampous
Shares4UsDevelopment
23 Mar 2020, 16:08
RE:
I guess it'll fail on any date and any pair just run buy once and sell once one these times it will fail
@Shares4UsDevelopment
PanagiotisCharalampous
24 Mar 2020, 07:58
Hi Shares4UsDevelopment,
I cannot reproduce the case with the zeros in the stats. Whenever you have some time, please provide us with the necessary information to look into this further.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Mar 2020, 11:23
Hi Shares4UsDevelopment,
Please provide us with the cBot code, cBot parameters, dates and optimization parameters so that we can reproduce the results and explain the statistics.
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous