
Topics
Replies
PanagiotisCharalampous
08 May 2018, 09:09
Hi MaRCHeW,
Our office hours are 09:00 - 18:00 EEST. Contact me at community@spotware.com.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 17:44
Hi grzegorczyk.info,
At the moment, I do not have the exact details of the implementation, therefore I will need to consult the product team how it is working exaclty and if we can disclose the method. Why do you need such a detailed information?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 17:34
Hi irmscher9,
Soon cMirror will be replaced by cTrader Copy. In cTrader Copy, mirroring will take place using dedicated subaccounts where any other form of trading except copying will not be allowed. Therefore such a feature will become irrelevant.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 17:22
Hi Simon,
This feature is in our backlog, however we do not have a release date or release version yet.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 17:14
Hi grzegorczyk.info,
These are proxy servers and the host names change based on which proxy server provides the fastest connection at the moment. You cannot prevent this, it is an automatic feature of cTrader. Do you access the same account always from the same location or do you change locations often?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 17:08
Hi Marek,
I am sorry but I cannot understand what the problem is then. Could you please send two screenshots, one for cTrader Windows and one for cTrader Web so that I can see the difference you are talking about?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 16:27
Hi carlosdrcunha,
See below how you can do the same thing in a cBot
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 { DirectionalMovementSystem _dms; SimpleMovingAverage _sma; protected override void OnStart() { _dms = Indicators.DirectionalMovementSystem(14); _sma = Indicators.SimpleMovingAverage(_dms.ADX, 14); } protected override void OnTick() { } protected override void OnStop() { // Put your deinitialization logic here } } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 May 2018, 16:21
RE:
ctid418503 said:
It annoys me that when you select a trade in history and it displays it on the chart, you cant scroll the chart without the trade disappearing. Will something be done about this?
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
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
08 May 2018, 09:23
Hi irmscher9,
There is nothing you can do. You either trust the signal you are mirroring or.not. When you exit a strategy, you realize any P&L and cash out. It works in the same way as it would work if you invested your money in e.g. an investment fund. When you decide to exit, you cannot just take your stocks, bonds etc and walk away. You realize the value of your investment at the specific time and receive the equivalent amount.
Best Regards,
Panagiotis
@PanagiotisCharalampous