
Topics
Replies
PanagiotisCharalampous
11 Dec 2023, 10:18
RE: RE: Backtesting Max Drawdown in $
Intetics said:
PanagiotisCharalampous said:
Hi there,
This information is not available in backtesting results at the moment.
Best regards,
Panagiotis
Is this information available on the UI?
Regards
No it is not
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2023, 10:18
RE: RE: Backtesting Max Drawdown in $
Intetics said:
PanagiotisCharalampous said:
Hi there,
This information is not available in backtesting results at the moment.
Best regards,
Panagiotis
Is this information available on the UI?
Regards
No it is not
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2023, 09:30
Hi again,
Thank you. We managed to reproduce the problem and we will fix it in an upcoming release.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2023, 08:50
Hi swingfish,
Is this a .Net 6.0 algo? If not, please convert it first.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2023, 08:45
Hi swingfish,
It's not possible out of the box, but you could program this yourself. Here is an example how to do this with an indicator.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
namespace cAlgo
{
[Indicator(AccessRights = AccessRights.None, IsOverlay = true)]
public class NewIndicator2 : Indicator
{
protected override void Initialize()
{
Chart.KeyDown += Chart_KeyDown;
}
private void Chart_KeyDown(ChartKeyboardEventArgs obj)
{
if(obj.Key == Key.Z)
{
Chart.ZoomLevel = 30;
}
}
public override void Calculate(int index)
{
// Calculate value at specified index
// Result[index] =
}
}
}
You could program some custom levels using keys that you choose.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2023, 08:34
Hi there,
This information is not available in backtesting results at the moment.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2023, 08:25
RE: RE: RE: RE: Assistance Needed with Ctrader Backtesting Error
monteverdeinvestment2023 said:
PanagiotisCharalampous said:
monteverdeinvestment2023 said:
PanagiotisCharalampous said:
Hi there,
This is a known issue and will be fixed soon. In the meanwhile, try restarting your computer. Sometimes it works.
Best regards,
Panagiotis
Thank you, but even after restarting, it still doesn't work. Is there anything else I can do?
Hi there,
You could also try clearing your backtesting cache in C:\Users\user\AppData\Roaming\Broker cTrader\BacktestingCache
Beyond that I have no further suggestions at the moment
Best regards,
Panagiotis
Thank you, same issue as always. Do you think that buying external data could solve the problem?
Hi there,
I haven't tried this solution so I cannot tell for sure.
Best regards,
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2023, 08:08
RE: RE: RE: Meet cTrader for Mac
brandonjames0754 said:
PanagiotisCharalampous said:
brandonjames0754 said:
hello, I have downloaded this on my Mac, but I can not find the backtesting tab its non existent. I've even deleted the application and downloaded a new one. can you help me please?
Hi there,
These features will come in a later version.
Best regards,
Panagiotis
thank you for the reply, will this also include being able to add c bots from the download site
Hi there,
You should be able to run cBots in real time mode with the current version.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2023, 06:03
RE: RE: Assistance Needed with Ctrader Backtesting Error
monteverdeinvestment2023 said:
PanagiotisCharalampous said:
Hi there,
This is a known issue and will be fixed soon. In the meanwhile, try restarting your computer. Sometimes it works.
Best regards,
Panagiotis
Thank you, but even after restarting, it still doesn't work. Is there anything else I can do?
Hi there,
You could also try clearing your backtesting cache in C:\Users\user\AppData\Roaming\Broker cTrader\BacktestingCache
Beyond that I have no further suggestions at the moment
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2023, 06:00
Hi there,
Please share the complete cBot code so that we can reproduce this behavior.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2023, 05:58
Hi there,
Please send us the complete cBot code and your broker so that we can reproduce this issue on backtesting.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2023, 05:57
RE: Meet cTrader for Mac
brandonjames0754 said:
hello, I have downloaded this on my Mac, but I can not find the backtesting tab its non existent. I've even deleted the application and downloaded a new one. can you help me please?
Hi there,
These features will come in a later version.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Dec 2023, 05:55
RE: RE: algohost.exe "Application Error" and crashing
firemyst said:
PanagiotisCharalampous said:
Hi firemyst,
Could you please send us some troubleshooting information the next time this happens? Please paste a link to this discussion inside the text box before you submit it.
Best regards,
Panagiotis
I couldn't. cTrader became unresponsive. I had to kill it via task manager and restart.
However, if you can confirm the information will still be there even after restarting, I can try sending the trouble-shooting information? (I don't want to waste Spotware's time if it'll be pointless since I had to restart)
Hi firemyst,
Please send the information after the restart and we will check if there is something useful there.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Dec 2023, 06:42
Hi there,
You can use the DrawRectange() methods.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Dec 2023, 06:34
Hi firemyst,
Could you please send us some troubleshooting information the next time this happens? Please paste a link to this discussion inside the text box before you submit it.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Dec 2023, 13:32
Hi there,
Use the LastValue to access the last value of every data series that is an output of the indicator.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Dec 2023, 13:29
Hi there,
This is a C# question, not a cTrader one. Read about get and set below
https://www.w3schools.com/cs/cs_properties.php
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Dec 2023, 13:27
Hi there,
They should snap without pressing anything.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Dec 2023, 13:23
Hi there,
If you don't want data series to be considered as output, remove the Output attribute
[Output("Moving Average", LineColor = "Red")]
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Dec 2023, 12:52
RE: RE: CFD Backtesting Margin Calculations Bug
Intetics said:
Hi,
Yes it does.
Best regards,
Panagiotis
@PanagiotisCharalampous