Topics
Replies
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
29 Dec 2021, 08:18
Hi ncel01,
The provider's contact is not accessible to investors unless the provider discloses his contact information in the strategy description.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
28 Dec 2021, 13:23
Hi firemyst,
Happy holidays! From the next update, there won't be any dependencies to the cTrader platform, therefore you will be able to use any IDE for .Net projects you wish.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
28 Dec 2021, 10:28
Hi khoshroomahdi,
The actual code is not available but you could find the formulas here. If you need somebody to write the code for you, you can reach out to a Consultant.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
27 Dec 2021, 07:47
( Updated at: 27 Dec 2021, 07:48 )
Hi opusensemble,
No there is no such option at the moment. However you can consider launching two instances of cTrader.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
27 Dec 2021, 07:46
Hi mh17462,
This is not possible at the moment but a cross broker cTrader is in our future plans.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
27 Dec 2021, 07:42
Hi CTGood,
Investors will have manually start to copy again since they need to agree to the new fees.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
24 Dec 2021, 15:39
Hi TraderBass,
You can disable them here.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
24 Dec 2021, 08:32
Hi jmenotts,
if you are serious about this e.g. operating your service under a business registered in the UK, no matter what you read here, better consult with a lawyer or a with FCA directly. To be honest, I am trying to answer the question myself for the last one year, here in Cyprus, but nobody is 100% sure. Not even the chairman of CySec. 99% the answer you get is that you need to be regulated. Better safe than sorry.
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