
Topics
Replies
PanagiotisCharalampous
07 Oct 2019, 09:21
Hi felipefucsm,
Thanks for posting in our forum. BetterTrader signals are not available in cTrader but as far as we know BetterTrader has integrated with cTrader using Open API, meaning that you should be able to use your cTrader account with your BetterTrader application. However you should contact them for more information.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Oct 2019, 09:17
Hi jcr1818@gmail.com,
Such indicators can be programmed in cTrader Automate. If you cannot do it yourself, you can always contact a Consultant or post a Job and somebody can develop this for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Oct 2019, 09:12
Hi Jonathan,
Thanks for posting in our forum. Please use the Suggestions section for such suggestions so that we can keep track of then and they are managed properly.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Oct 2019, 09:10
Hi Peter,
Thanks for posting in our forum. All symbols have PipSize, a PipValue and a LotSize property. The pip value is the value of a pip in the account's balance currency for each unit. Combining this with the pip size and the LotSize, you can get the value you are looking for. The equation should be the below
Lot Trade Value = PipValue / PipSize * LotSize.
Let me know if this helps you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Oct 2019, 09:02
Hi Johan,
There is no built in functionality to do this but you can always use the snipping tool available in Windows.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Oct 2019, 08:59
Hi Steve,
If you have closed the chart then there is no way to get it back. I will suggest to the product team for a confirmation on closing a chart that includes objects on it.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Oct 2019, 08:56
Hi Chris,
posMaintRptID should be unique for each position. Can you please explain to us why do you think it is not unique?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Oct 2019, 08:50
Hi ctid712216,
Thanks for posting in our forum. Can you please tell us your account number as well?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Oct 2019, 15:47
Hi ganatooff1,
Thanks for posting your suggestion in our forum. This feature will be available in the next versions of both cTrader Desktop and cTrader Web. Stay tuned!
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Oct 2019, 11:36
Hi fathi.tarik91@gmail.com,
Thanks for the additional information. This will be fixed soon in an upcoming update.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Oct 2019, 10:46
Hi ctid1253733,
The data comes from many brokers using cTrader.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Oct 2019, 10:43
Hi FireMyst,
Yes this should be the case. You can check it with the example 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 double Parameter { get; set; } public static int Counter; protected override void OnStart() { // Put your initialization logic here } protected override void OnTick() { Counter++; Print(Counter); } protected override void OnStop() { // Put your deinitialization logic here } } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Oct 2019, 10:24
Hi ctid1253733,
Thanks for posting in our forum. This section is only for suggestions. Pleas epost your question again in the proper section and I will reply there. I will be deleting this thread in a while.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Oct 2019, 08:41
Hi GoldnOil750,
We would appreciate if you could send us troubleshooting information. It would be helpful to determine the cause of the issue. To do so, press Ctrl+Alt+Shift+T, paste a link to this discussion into the textbot that will show up and press Submit.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Oct 2019, 08:35
Hi thoy1,
Thanks for sharing your cBot with us. You can always upload it in the relevant algo section so that it does not get lost in the discussions.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Oct 2019, 08:28
Hi ctid1566965,
There is no such feature at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Oct 2019, 08:27
Hi xavier.affringue,
I have explained this above. You need to create a public function in the form, pass the price as a parameter and print the value on a label.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Oct 2019, 08:25
Hi reza h,
We plan to release this feature in v3.7.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Oct 2019, 08:24
Hi Be Rich,
There is no such field available in Open API. You need to calculate it on your side using the position's entry price and the current symbol price.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
07 Oct 2019, 09:24
Hi FireMyst,
There isn't a way at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous