Topics
Replies
PanagiotisCharalampous
23 Jul 2018, 09:39
Hi johnreygalax8,
Unfortunately this is currently not possible. You could consider a workaround by printing labels on top of the lines.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2018, 09:36
Hi jmoises.hc@gmail.com,
Thanks for posting in our forum. If you wish to run code on the change of each tick you can use the OnTick() function.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Jul 2018, 16:50
Hi Vince,
Thanks for the indicator, I thought this was a cBot. I would not put all this logic in an indicator but in a cBot that reads the indication values. In the cBot I would sent a notification whenever the conditions are met and then raise a flag so that the notification is not sent again at least within the same bar. When the bar changes, I would reset the flag. See below
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 int Periods { get; set; } private Supertrend _supertrend; private bool _notificationSent; protected override void OnStart() { _supertrend = Indicators.GetIndicator<Supertrend>(Periods); } protected override void OnTick() { var sendNotification = false; // Make all your indicator checks here // . // . // . if (sendNotification && !_notificationSent) { Notifications.SendEmail("email", "email", "Subject","Text"); _notificationSent = true; } } protected override void OnBar() { _notificationSent = false; } protected override void OnStop() { // Put your deinitialization logic here } } }
You can modify the above example accordingly.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Jul 2018, 14:48
Hi Vitore,
I would like to make some comments on the subject of communication and update process.
Regarding communication, we agree with you that efficient communication is a must in this business sector. First of all, I need to stress out that traders are not our direct clients but they are clients of their brokers. Not all brokers wish that we contact their clients directly neither we have the explicit authorization from traders to do so. Spotware communicates all changes in cTrader platform to brokers in an efficient and timely manner. Brokers are responsible to propagate all the relevant information to their clients.
However we understand that theory is one thing and practice is another. Therefore during the last year we have taken a lot of measures to allow traders to find the information they need regarding cTrader, at least in an indirect way. Some of them are
-
We created a full time community management team that responds to trader queries via all available channels in a very reasonable time.
-
We post all important information regarding cTrader in the forum announcements and what’s new sections.
-
We update our Spotware Public Beta applications at least a month before rolling out to brokers allowing traders to try them out and provide their feedback.
-
We are communicating all upcoming changes to all traders that have explicitly gave their consent to contact them and send them such information.
We are also open for any further suggestions that will allow you to receive all information in time.
Regarding our upgrade policy, I will agree with you that the latest upgrades of all applications have imposed drastic changes to the way users use cTrader. We have redesigned and re-architected all applications. But these were necessary changes that now allow us to bring the platform up to date and use latest technologies, build a new philosophy around trading and develop all these features that have been queued for years. From now and on, and for the years to come, updates will be more incremental and frequent, allowing you to adopt new features and changes gradually in your daily trading activities.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Jul 2018, 09:24
Hi Vince,
In this case, you can raise a flag when the email is sent and reset it on each bar change. If you post the full cBot code, I can show you how to do it.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Jul 2018, 15:42
Hi Symposium,
In the past cTrader allowed traders to sign in either with their trading account or with their cTID. Therefore you had the choice to unlink/remove an account from your cTID. From cTrader 3.0 and on, cTID will become the only choice for signing in. Therefore all trading accounts will need to be linked to a cTID and that is why the option has been removed. If you wish to get rid of the account, you need to contact your broker to unlink it for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Jul 2018, 14:34
Hi ctid362150,
Application version is available in Menu > Settings.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Jul 2018, 11:51
Hi swingfish,
You can use something like this
foreach (var position in Positions) { if (position.SymbolCode == Symbol.Code) { ModifyPosition(position, null, null); } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Jul 2018, 09:28
Hi Vitore,
Unfortunately older versions are not available.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Jul 2018, 09:26
Hi tt6052@gmail.com,
Drawing tools have not been implemented yet in the new mobile applications. They will be added in future versions.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
17 Jul 2018, 17:47
Hi Patrick,
It is planned for version 3.02, hopefully sometime this autumn.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Jul 2018, 16:31
Hi John,
TinyTake allows you to upload the video and send us a link. Alternatively you can send it to community@spotware.com.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Jul 2018, 15:39
Hi John,
I use TinyTake. It has a Mac version as well.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Jul 2018, 15:32
Hi again,
Which version of the application do you use? v1.x or the new v2.x native mobile application? Can you tell us the broker as well?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Jul 2018, 15:22
Hi zedodia,
You can send me the code at community@spotware.com
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Jul 2018, 15:20
Hi Symposium,
Thanks for posting in our forum. You can try the code below
Notifications.SendEmail(EmailAddressF, EmailAddressT, SymbolCode + " XeroLag Indicator is now displaying a BUYING opportunity", emailBodyB);
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Jul 2018, 15:11
Hi John,
Thanks for reporting this. I have tried to reproduce this but I could not. Could you send us a video demonstrating this behavior?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Jul 2018, 15:01
Hi Lavio,
Can you try performing a clean installation?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Jul 2018, 14:52
Hi zedodia,
Thanks for reporting this issue. We will forward it to the product team.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Jul 2018, 14:22
Hi,
Thanks for posting in our forum. Regarding your question, see below
Best Regards,
Panagiotis
@PanagiotisCharalampous