
Topics
Replies
PanagiotisCharalampous
27 Jun 2022, 12:20
Hi isabakas,
You can try something like this
if (History.Last().TradeType == TradeType.Sell)
{ }
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
27 Jun 2022, 12:16
Hi massimiliano.quarti,
Can you provide examples of what you are doing and it doesn't work e.g the messages you are sending and some evidence that it does not work?
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
27 Jun 2022, 12:14
Hi Florent,
When deals are aggregated, then it means one value will be displayed for each period instead of each deal.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
27 Jun 2022, 12:12
Dear kimveie,
Yes it can be. If you are looking for someone to do this for you, you can contact a Consultant or post a Job.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
24 Jun 2022, 13:28
Hi MongolTrader,
You need to be a little bit more specific. What exactly is your problem? Did you try something and it did not work?
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jun 2022, 16:19
Hi ncel01,
Here is an example for getting the highest price from all the bars loaded on the chart
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
namespace cAlgo.Robots
{
[Robot(AccessRights = AccessRights.None)]
public class NewcBot : Robot
{
[Parameter(DefaultValue = "Hello world!")]
public string Message { get; set; }
protected override void OnStart()
{
// To learn more about cTrader Automate visit our Help Center:
// https://help.ctrader.com/ctrader-automate
Print(Bars.HighPrices.Maximum(Bars.HighPrices.Count));
}
protected override void OnTick()
{
// Handle price updates here
}
protected override void OnStop()
{
// Handle cBot stop here
}
}
}
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jun 2022, 15:55
Hi to both,
It should be fine now
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jun 2022, 15:54
Hi cW22Trader,
You should reach out to Pepperstone to check.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jun 2022, 15:53
Hi yearn,
Please provide us with the complete cBot code so that we can check,
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jun 2022, 15:51
Hi PEF.Machine.Intelligence,
Yes it is. Just right click on the History and select Export to Excel.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jun 2022, 15:49
Hi saiedparto,
Custom indicators are not available on cTrader Web unfortunately.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
17 Jun 2022, 15:01
Hi xabbu,
We are aware of the issue and we are building an updated site that will resolve it.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
20 May 2022, 08:57
Hi kebbo,
Heikin Ashi charts are not available in cTrader Desktop yet. They will be added in a future update.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
20 May 2022, 08:09
Hi aidanfrankgriffiths,
Can you share your cBot's source code?
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
17 May 2022, 15:37
Hi horac73,
Can you please share the indicator code so that we can reproduce the issue?
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
16 May 2022, 08:26
Hi haohan51,
Please use the correct topic for your issue.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
16 May 2022, 08:25
Hi ovidiucbd,
This behavior usually occurs when you are using the same workspace between different brokers that do not have the same symbols. Consider using a different workspace for each of the brokers.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
13 May 2022, 08:00
Hi amraror2010,
You can make the ray horizontal if you press Shift while dragging it.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
12 May 2022, 15:42
Hi srtp1978,
cTrader allows you to see the depth of market. Check here for more information.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
PanagiotisCharalampous
27 Jun 2022, 12:21
Hi there,
This is not possible at the moment unfortunately.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous