
Topics
Replies
PanagiotisCharalampous
22 Jul 2020, 08:09
Hi ctid438915,
You can check the Equity Stop Loss feature of cTrader Copy.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Jul 2020, 14:42
Hi ramio,
You can only transfer funds between your account and its subaccounts. If you want to transfer funds between different accounts, you need to talk to your broker.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Jul 2020, 14:21
Hi koktos632,
We could not reproduce such a behavior. Please note that there is a different order kept for MultiChart and FreeChart in case there is a confusion there.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Jul 2020, 14:15
( Updated at: 21 Dec 2023, 09:22 )
Hi ramio,
Can you please check if showing stopped strategies is enabled?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Jul 2020, 12:38
Hi ramio,
From cTrader Copy please, the same screen you took the photo but the complete screen.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Jul 2020, 12:26
Hi ramio,
We cannot see the complete list of your accounts. Can you please post a complete list of all accounts and subaccounts under your cTrader ID? It would be better not to send a photo from a mobile phone but take a complete screenshot from your computer.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Jul 2020, 12:07
Hi ramio,
Can you please post a screenshot from cTrader Copy showing all your subaccounts to show that this subaccount is missing?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Jul 2020, 09:57
Hi all,
We have released a hotfix for this issue. Can you please check again?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Jul 2020, 08:33
Hi rgasch,
Yes it is.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Jul 2020, 08:29
Hi kobit,
A subaccount following another strategy cannot become a strategy provider.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Jul 2020, 08:22
Hi Sam,
What parameters are you using?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Jul 2020, 16:41
Hi Alessandro,
There was no change in this functionality in the latest updates and did not have any complaints regarding this until now. However we will check how can we improve this in order to become more user friendly.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Jul 2020, 16:21
Hi tradermatrix,
It depends on what are you trying to achieve. In principle, you can set your timer to a fast interval e.g. one second, and then implement time checks on custom intervals. See an example below
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 = 30)]
public int Interval1 { get; set; }
[Parameter(DefaultValue = 50)]
public int Interval2 { get; set; }
DateTime _interval1;
DateTime _interval2;
protected override void OnStart()
{
_interval1 = Server.Time;
_interval2 = Server.Time;
Timer.TimerTick += Timer_TimerTick;
Timer.Start(1);
}
private void Timer_TimerTick()
{
if (_interval1.AddSeconds(Interval1) < Server.Time)
{
Print("Interval 1 Triggered");
_interval1 = Server.Time;
}
if (_interval2.AddSeconds(Interval2) < Server.Time)
{
Print("Interval 2 Triggered");
_interval2 = Server.Time;
}
}
protected override void OnTick()
{
// Put your core logic here
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
}
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Jul 2020, 15:49
Hi GlenHendriks,
This is the intended behavior in the current version. In v4.0 we plan to introduce the Object Manager which will work as is works currently in cTrader Desktop 3.8.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Jul 2020, 15:14
Hi tradermatrix,
I do not see why you cannot implement different checks with a single timer event, one for every strategy. It needs some coding but its achievable.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Jul 2020, 14:31
Hi K100,
Can you provide steps that we can follow to reproduce the problem?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Jul 2020, 11:09
Hi malleswaramma.ram,
No that is not possible. The only solution would be to somehow change the values of your Williams R so that they fall within the range of the Awesome oscillator.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Jul 2020, 10:38
Hi marcovs,
Send it to community@spotware.com
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Jul 2020, 10:31
Hi marcovs,
You did not sent any video. Can you please send it to us?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Jul 2020, 08:11
Hi ctraderftmo+115,
Can you please provide steps to reproduce this behavior?
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous