Topics
Replies
PanagiotisCharalampous
27 Mar 2020, 14:36
Hi Revobot,
Unfortunately I cannot advertise specific brokers. You will need to contact them yourself.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 13:59
Hi Luca,
Please stop spamming the forum with the same subject. I have given you guidance on how to program this simple algorithm on another thread. If you cannot program it yourself, you can consider paying somebody to do this for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 13:55
Hi Revobot,
Of course, it does. See a screenshot below from another broker where I am trading with 0.1 lots.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 11:55
Hi Peter,
If they are still listed in cTrader then it means your broker has not deleted them yet.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 11:52
Hi Revobot,
Did you talk to your broker?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 11:01
Hi mrha1000,
There is no command to refresh the chart. You have to write a method that recalculates all the values of the indicator.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 10:50
Hi Peter,
Do these accounts appear in cTrader too or only in cTrader Copy?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 09:56
Hi Tj11,
Thanks for reporting this. This is a known issue and will be fixed in v3.8.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 09:17
Hi Peter,
Can you send some screenshots showing that these accounts are missing from cTrader but they appear in cTrader Copy?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 08:02
Hi Maratimus,
Can you please provide more information about your problem? Where do you get this message? Can you post some screenshots?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 07:59
Hi Revobot,
Minimum position size is set by the brokers. You need to talk to your broker.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 07:58
Hi mrha1000,
You can use the Timer.TimerTick() to execute code at specific intervals.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Mar 2020, 07:55
Hi twoheartzin1soul,
You can use Server.Time, check the date and decide if the cBot will execute any actions or not.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2020, 15:19
Hi Luca,
You can use Symbols.GetSymbol() to get another symbol to check the spread and open a position.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2020, 14:50
Hi Luca,
Here is something quick
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 = 0.0)]
public double Parameter { get; set; }
private Random random = new Random();
protected override void OnStart()
{
// Put your initialization logic here
}
protected override void OnTick()
{
Print(Symbols[random.Next(Symbols.Count)]);
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
}
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2020, 14:08
Hi elenigna,
Is it possible to record a short video demonstrating the steps you are following to reproduce this behavior?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2020, 13:51
Hi Luca,
Indeed it is not very clear what do you mean. But whatever you are trying to do, you should check the example that gives you an idea on how to make random choices using the Random class. You just need to adjust it to your needs. If you want to select a random symbol, then use the Random class to generate a random index for the Symbols collection.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2020, 13:47
Hi Luca,
To open a position at the start of the cBot use the OnStart() method.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2020, 13:43
Hi Serkan26,
There is no such feature at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Mar 2020, 08:01
Hi twoheartzin1soul,
Can you please post the complete cBot code?
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous