
Topics
Replies
PanagiotisCharalampous
16 Dec 2019, 08:34
Hi Matt,
That is not correct. cTrader Copy copies all the orders of the strategy provider. If the strategy provider's position is closed, then the copier's position is closed, no matter at what price level it is at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Dec 2019, 08:31
Hi M K,
I have tried this cBot but I do not see any issues. Also I cannot understand where is eurusdBars used.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Dec 2019, 08:27
RE:
Hi fardugotra,
You can read more about multisymbol optimization here. You can try TryChangeTimeFrameAndSymbol for changing symbols. Note that this function only works in indicators and when there are no cBots running on the chart.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 15:49
Hi A.R.
I have tried to reproduce point 1 but I could not. cBot is visible when I close and open cTrader. Could you record a video demonstrating this behavior?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 14:58
Hi mag2kus,
Do you run any cBots or custom indicators on your charts?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 12:35
Hi myinvestmentsfx,
If you need more bars, you can use LoadMoreHistory() method. You can find more information here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 12:13
Hi velu130486,
I see that you posted something here and you got a response https://ctrader.com/jobs/764. Did you try contacting them?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 12:09
Hi velu130486,
Did you try contacting the consultants directly?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 11:50
Hi velu130486,
It will need some work to add these features in the cBot. You can consider posting a Job or contacting a Consultant to develop a single, tailor made cBot for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 11:25
Hi velu130486,
If you do not have the cBot code then you can use the cBot below in parallel. This cBot will close all positions of the chart symbol that have loss bigger than the pips specified in the parameters
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 = 100)]
public double Pips { get; set; }
protected override void OnStart()
{
}
protected override void OnTick()
{
foreach (var position in Positions.Where(x => x.SymbolName == Symbol.Name))
{
if (position.Pips < -Pips)
{
position.Close();
}
}
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
}
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 08:18
Hi Matt,
This is not possible. To follow a strategy provider you need to have a cTrader account.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 08:17
Hi velu130486,
In order to help you, you will need to share the cBot code with us.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 08:15
Hi tgjobscv,
You can manage your notifications here. If you are referring to the cTrader notifications, you can go to Settings > Notifications and manage them there.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 08:11
Hi tgjobscv,
There is no built in feature for this but you could develop an indicator to do it.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 08:10
Hi tgjobscv,
The faster the CPU and the more RAM, the better.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Dec 2019, 08:06
RE:
tgjobscv said:
When ? How ?
You can do this using a cBot in 3.7 and using SetBarColor() method. You can read more here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Dec 2019, 16:11
Hi tnt_22,
We have fixed the issue but we have not released the fix yet.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Dec 2019, 15:27
Hi anthony.vella.2409,
It is possible to do this, you just need to use Chart.IndicatorAreas. See below an example
Chart.IndicatorAreas[0].DrawText("Test", "Test", Server.Time, 1, Color.Red);
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Dec 2019, 14:43
Hi VFX Managing Trader,
There are many reasons this can happen. As you can see there are different entry and exit prices as well as different commissions. You can find all the possible reasons that can cause copying results to differ between a strategy provider and an investor here in section 11.1.II.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Dec 2019, 08:36
Hi pooria222222,
To change the performance fee of a strategy, you need to stop providing the strategy first.
Best Regards,
Panagiotis
@PanagiotisCharalampous