
Topics
Replies
PanagiotisCharalampous
07 Jan 2022, 07:45
Hi ibiam.jef,
Please post your suggestions in the Suggestions section.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
07 Jan 2022, 07:44
Hi semperfilmes3,
Your strategy can be followed by traders of all brokers that offer cTrader Copy, as long as their brokers offer the symbols you trade.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
05 Jan 2022, 10:15
Hi pawelmarzec,
Which version of the .Net Framework do you have installed?
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
05 Jan 2022, 10:09
Hi pawelmarzec,
Seems like an issue with the .Net Framework. Can you please try reinstalling the .Net Framework?
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
05 Jan 2022, 08:32
( Updated at: 21 Dec 2023, 09:22 )
Hi Alex,
Just drag the time counter to the left
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
05 Jan 2022, 08:30
Hi tjn0xxx,
Please use the Suggestions section for your suggestions.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
03 Jan 2022, 14:23
Hi there,
Payment methods are not provided by the platform, but by your broker. Please talk to your broker.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
03 Jan 2022, 11:40
Hi,
No, a tick is a change in price. What you described is three changes in price. This means three ticks. Each time the price field blinks, it's one tick.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
03 Jan 2022, 11:15
Hi,
A tick is a change in the Bid or Ask price.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
03 Jan 2022, 11:09
Hi there,
What does 103 mean exactly?
It's the number of ticks received during that bar
So the volume here just include the clients who use ctrader, or all the clients who use ic markets as broker, or include all the liquidity providers?
You should ask IC Markets about this.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
03 Jan 2022, 09:18
Hi there,
Please use the Suggestions section for voting for existing suggestions or posting new ones.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
03 Jan 2022, 09:17
Hi Sue,
No, you cannot start an instance programmatically at the moment.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
31 Dec 2021, 09:55
Hi doni,
You can start from here. Regarding the specific cBot, just enter the date you want to scroll back to and press Play.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Dec 2021, 15:30
Hi doni,
There is no built in feature unfortunately. Try the cBot below instead
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 ScrollTo : Robot
{
[Parameter(DefaultValue = 2014)]
public int Year { get; set; }
[Parameter(DefaultValue = 1)]
public int Month { get; set; }
[Parameter(DefaultValue = 1)]
public int Day { get; set; }
protected override void OnStart()
{
var date = new DateTime(Year, Month, Day);
while (Bars.OpenTimes[0] > date)
Bars.LoadMoreHistory();
Chart.ScrollXTo(date);
}
protected override void OnTick()
{
// Put your core logic here
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
}
}
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Dec 2021, 11:51
Hi anwar_osman,
It's better to address your questions to the broker, since it's them who decide how the margin will be calculated. Regarding the list, unfortunately we cannot know every broker's setup. You need to do your own research.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
30 Dec 2021, 08:11
Hi CTGood,
I would advise a minimum of 2 cores and 4 GB of RAM.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
29 Dec 2021, 16:00
Hi crou,
Can you provide specific instructions to reproduce your issue e.g an indicator and specific settings that will reproduce this behavior? Is this a custom indicator or a built in indicator? Can you provide the source code?
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
29 Dec 2021, 15:31
Hi crou,
Can you provide instructions to reproduce your issue?
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
29 Dec 2021, 14:56
Hi mh17462,
You can do this by using Multiple Profiles. Check here.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
07 Jan 2022, 07:48
Hi lagartharagn,
As explained above, the issue seems to be on the side of the ISP. The application is used in dozens of countries and hundreds of mobile networks and the issue has been reported for 2 ISP providers only. Please contact your ISP provider to investigate further.
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous