Topics
Replies
PanagiotisCharalampous
19 Feb 2020, 16:25
Hi kmthen,
There is no option to backup a workspace at the moment. However the purpose of workspaces is to synchronize your work between different computers. So even if you change your pc, your work should be synchronized.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 15:31
( Updated at: 21 Dec 2023, 09:21 )
Hi Xavier R,
I ran the optimization today and it completed without problems
If you still have problems, please post the exact optimization settings (symbol, timeframe, cBot parameters, dates) you are using and I will check it again.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 14:01
Hi travkinsm1,
In order to help you we need to reproduce the problem. If you can create a sample cBot that reproduces the issue, that would help.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 09:37
Hi Nazanin,
Can you please provide us with exact steps to reproduce this problem?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 08:39
Hi Vipin,
No that is not the case. The StopTriggerMethod defines when a stop loss will be triggered. If you go to the order screen and hover on top of the respective button you will get the description of each option.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 08:33
Hi itchamp84,
If you need somebody to write code for you, you can post a Job or hire a Consultant.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 08:30
Hi all,
Renko charts will come soon to the mobile app.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 08:23
Hi Crystal Silver,
We do not use the feed of a specific broker, we have our own feeds.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 08:22
Hi travkinsm1,
Please provide a complete cBot code and steps to reproduce this behavior.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 08:20
Hi traderfxmaster007,
You are using InstanceName as a string but it is not. Use it as the example below
Positions.FindAll(InstanceName.ToString(), SymbolName)
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 08:14
Hi David,
That is the function you should use. Do you mind explaining what did you do and did not work?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 08:11
Hi firemyst,
No that is not possible.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2020, 11:00
Hi ctid1006205,
I still do not have all the information I need. I asked for the position ID for which you expected the TP to be triggered but was not. I was expecting the follower's position ID but you have provided your strategy provider's DID. Can you please provide the follower's position ID as well as a screenshot showing that this trade was not copied correctly?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2020, 10:51
Hi reza h,
Here is a general example on how to raise/lower a flag based on conditions
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
{
bool _hammerDetected;
protected override void OnStart()
{
// Put your initialization logic here
}
protected override void OnBar()
{
if (LowerFlag())
{
_hammerDetected = false;
}
if (!_hammerDetected && HammerDetected())
{
_hammerDetected = true;
}
}
private bool LowerFlag()
{
// put here the conditions to lower your flag
return true;
}
private bool HammerDetected()
{
// detect your hammer
return true;
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
}
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2020, 10:43
Hi traderfxmaster007,
It is not clear what is the issue. Can you please post the complete cBot code so that we can reproduce the error messages you are receiving?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2020, 09:28
Hi stakhurlov,
Thanks for reporting your issues. If possible, please use English language in this forum. We have released a hotfit on Spotware Beta that should resolve the performance issue. Please test your cBot there and let us know if the performance is improved. The hotfix will be pushed to brokers soon.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2020, 08:23
Hi ctid1006205,
I cannot find such a strategy in cTrader Copy. Can you send me a link to the strategy? Also you have not provided the relevant deal from the strategy that was supposed to be copied.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2020, 08:18
Hi lithast,
We do not have an ETA. As soon as we finish testing and the build is stable.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2020, 08:17
Hi miloscicmil,
You can use DrawIcon() method and draw a circle or another icon of your choice.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2020, 16:34
Hi kmthen,
If your workspace is lost, there is not much you can do. If you have any steps that allow us to reproduce such a behavior i.e. cTrader losing its workspaces unexpectedly, we are happy to have a look at the issue.
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous