
Topics
Replies
PanagiotisCharalampous
11 Mar 2024, 08:18
RE: Export Optimisation Results
roul.charts said:
Is there any update?
It's a pain to manually export the best paramerte, run them in the backtester - export the HTML report.
And if the PC crashes you have to re run that specific optimizer again and again.
Please add an function to save an .optres file like described on your own help page:
https://help.ctrader.com/ctrader-automate/backtesting-and-optimizing-cbots/#saving-and-loading-optimisation-results
Hi there,
This functionality will be added in the next major update of cTrader Desktop.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Mar 2024, 08:17
Hi there,
Please provide us with the following information.
- A link to the cBot you are trying to install
- A video demonstrating the exact steps you take and the message you receive.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Mar 2024, 08:15
Hi there,
If your application is for personal use and does not involve authenticating on behalf of a third party user, you can obtain the token from your application's playground area

Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Mar 2024, 08:10
Hi there,
If you do not remember your password, try resetting it here
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Mar 2024, 08:08
Hi there,
No there isn't
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Mar 2024, 07:58
Hi there,
Backtesting is still not available for cTrader for Mac. It will be added in a future update.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Mar 2024, 07:45
RE: RE: PineScript to Ctrader Indicator
selva.note3 said:
Dear PanagiotisCharalampous,
I would like to request 2 indicators code to be converted to CTrader, Its really a good one which draws order blocks, Choch and FVG its really useful if you do this for me. if you can do that please reply i will DM the codes
PanagiotisCharalampous said:
Hi malleswaramma.ram,
Here you go
using System;using cAlgo.API;using cAlgo.API.Internals;using cAlgo.API.Indicators;using cAlgo.Indicators;namespace cAlgo{ [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class NewIndicator : Indicator { [Parameter("Source")] public DataSeries Source { get; set; } [Parameter("EMA Length")] public int EMALength { get; set; } [Output("R", LineColor = "Red")] public IndicatorDataSeries R { get; set; } [Output("G", LineColor = "Green")] public IndicatorDataSeries G { get; set; } private IndicatorDataSeries ema1 { get; set; } private IndicatorDataSeries ema2 { get; set; } private IndicatorDataSeries ema3 { get; set; } private IndicatorDataSeries _haOpen; private IndicatorDataSeries _haClose; protected override void Initialize() { _haOpen = CreateDataSeries(); _haClose = CreateDataSeries(); } public override void Calculate(int index) { // Calculate value at specified index // Result[index] = ... var open = Bars.OpenPrices[index]; var high = Bars.HighPrices[index]; var low = Bars.LowPrices[index]; var close = Bars.ClosePrices[index]; var previousOpen = Bars.OpenPrices[index - 1]; var previousClose = Bars.ClosePrices[index - 1]; _haClose[index] = (open + high + low + close) / 4; _haOpen[index] = (previousOpen + previousClose) / 2; var ema1 = Indicators.ExponentialMovingAverage(_haClose, EMALength); var ema2 = Indicators.ExponentialMovingAverage(ema1.Result, EMALength); var ema3 = Indicators.ExponentialMovingAverage(ema2.Result, EMALength); } }}
Best Regards,
Panagiotis
Hi there,
If you need a quote for the conversion, contact me at development@clickalgo.com
@PanagiotisCharalampous
PanagiotisCharalampous
11 Mar 2024, 07:43
RE: RE: Does CBots working in demo mode?
ampheee1337 said:
PanagiotisCharalampous said:
Hi there,
They do. What do you expect to happen here?
Best regards,
Panagiotis
Hello
I expect to see message Hello world! in logs tab. Cbot running, but logs tab absolutely clear )
Hi there,
It worked fine for me

Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2024, 08:47
RE: RE: RE: Converting to deposit currency
ctid4921325 said:
In the meantime, does any one know the easiest way to get the exchange rate between quote currency and deposit currency so I can do my own calc and not get blocked by asset converter?
Hi there,
The issue was reproduced and will be fixed in an upcoming update.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2024, 08:46
Hi there,
You can assign this job to a professional. See a list below
https://ctrader.com/consultants
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2024, 08:44
Hi there,
You can assign this job to a professional. See a list below
https://ctrader.com/consultants
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2024, 08:43
Hi there,
No it is not. You need to minimize the messages you print in the log.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2024, 08:42
Hi there,
Please share the complete cBot code that generate this message.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2024, 08:40
Hi there,
The next time this happens, please send us some troubleshooting information by tapping seven times on the logo in the main menu.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2024, 08:38
Hi there,
Unfortunately I cannot make it simpler. The stop loss has no relation with any P&L, it is only related to the price level.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2024, 08:36
Hi there,
There is no such tool available at the moment.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2024, 08:34
Hi there,
They do. What do you expect to happen here?
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2024, 08:34
Hi there,
Your question is not very clear. Can you rephrase it?
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Mar 2024, 08:14
Hi there,
Can you still reproduce this issue? If yes, please record a video that demonstrates all the steps you take to reproduce the problem and send it to us.
Best regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
11 Mar 2024, 08:20
Hi there,
You should contact your broker regarding deposit and withdrawal methods.
Best regards,
Panagiotis
@PanagiotisCharalampous