Topics
Replies
PanagiotisCharalampous
07 May 2018, 16:00
Hi ppossanzini@gmail.com,
Currently there is no such feature in cTrader. However we already working on features that will allow you to subscribe to chart events like the selection of a chart object(indicator).
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 15:55
Hi MaRCHeW,
We cannot reproduce this behavior consistently internally. Could you please contact me at community@spotware.com? Our engineers would like to have a more closer look and maybe we can arrange a remote connection via TeamViewer.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 15:41
Hi sarxweb,
cTrader Copy has not been released yet. We will inform you as soon as this happens.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 15:38
Hi Marek,
Thanks for posting in our forum. Deal map is available in cTrader Web. Just right click on a chart > Viewing Options > Deal Map.
I hope this resolves the issue for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 15:30
Hi ppossanzini@gmail.com,
Thanks for you post. Unfortunatelym, this is currently is not possible.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 14:38
Hi Sylvain,
Thanks for your suggestion. Do you mind posting it in the Suggestions section of the forum so that they are all in one place?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 14:34
Hi ctid449222,
Thanks for posting in our forum. You can create a cBot to do that. See below an example.
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 ProfitLevel { get; set; } protected override void OnStart() { // Put your initialization logic here } protected override void OnTick() { var profit = 0.0; foreach (var position in Positions) { profit += position.NetProfit; } if (profit >= ProfitLevel) { foreach (var position in Positions) { ClosePosition(position); } } } protected override void OnStop() { // Put your deinitialization logic here } } }
Let me know if this helps.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 14:17
Hi yoannes,
Try Positions.Modified event.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 12:56
Hi ogima.515@gmail.com,
Thanks for your post however I will need a better explanation. What do you mean to count bars? From where to where? And based on what condition? Also what do the positive and negative numbers represent e.g. opening price? For example, do you want to count the number of bars from the last 10 that had a closing price lower than the opening price? If you can explain better, I might be able to help you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 12:50
Hi MaRCHeW,
Right click on Chart > Viewing Options > Targets.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 12:43
Hi Patrick,
Please send an email to feedback@spotware.com so that they can check the issue. Mention the trading accounts you are talking about.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 12:36
Hi cedric.anover,
Currently you can only place SL and TP in pips. If you wish to set your SL and TP in dollars then you will need to make the conversion before placing the order. If your account's balance is in $ then you can find out how much a pip is worth using the Symbol.PipValue property.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 12:31
Hi ycomp,
No this is not possible.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 12:28
Hi patrick.sifneos@gmail.com,
Please send an email to feedback@spotware.com to investigate this. Mention your cTID and your trading accounts so that they can check.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 12:08
Hi simjopaul@gmail.com,
Do you still have this problem? Did you try to create a new cBot, paste the code and build again? Please let me know if I can still help you in any way.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 11:58
Hi pac.ros68,
Thanks for posting in our forum. Exporting indicators and templates is not possible in cTrader Web. However, your templates are part of your workspace and can be retrieved when signing in to cTrader Web from different devices.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 11:49
( Updated at: 29 Aug 2022, 08:36 )
Hi Simon,
There is no issue here, this is the way these averages are calculated. EMA allows you to calculate from the first value while TSMA does not.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 11:38
Hi 1222Ht,
My advice is that you create a cBot listening to the Positions Opened event that will modify the opened position stop loss based on an indicator's value.
Let me know if this suggestion helps you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 11:31
Hi jeffwong_86,
In C# you can use Math.Round() method to perform rounding on your numbers. If you post some code, I can modify it for you and demonstrate how to use the Math.Round() method.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 16:21
RE:
ctid418503 said:
Dear Trader,
As a matter of proper operation of the forum, please post new subjects in separate threads. Regarding your issue, I cannot reproduce it. I assume that you talk about the deal map however my deals do not disappear when I scroll the chart. Could you please provide exact steps on how to reproduce? A video demonstrating the problem would be very helpful.
Best Regards,
Panagiotis
@PanagiotisCharalampous