Topics
Replies
PanagiotisCharalampous
27 Sep 2018, 14:13
Hi Peter,
Another option is if you understand what the indicators do, to ask somebody create the indicators in cTrader. I pressume that would be easier than integrating TradingView alerts in cTrader.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Sep 2018, 11:28
Hi bessmertnyy,
Good to hear that. Please note that we have deployed the fix only to your broker therefore other traders might still experience the issue. Upon making sure that the problem is resolved, we will roll out the fix to all brokers.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Sep 2018, 10:44
Hi Vitali,
Check the MouseMove event made available in cTrader Automate 3.01.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Sep 2018, 09:50
Hi Peter,
We are not aware of such a tool. May I ask why do you need to get alerts from TradingView? What kind of alerts are they?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Sep 2018, 14:32
Hi daniele84ct,
Thanks for posting in our forum. It is possible to create your custom tick charts in cAlgo. You can use this indicator as a guide.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Sep 2018, 14:29
Hi Jonkey,
The method needs to be called inside the cBot attached on the chart. Could you please explain us what are you trying to do? Maybe we can suggest something different.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Sep 2018, 14:20
Hi John,
I have asked you to contact us to arrange a TeamViewer session with our QA department but I did not receive a reply. We need to be able to reproduce this issue. Screenshots do not help us in this case.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Sep 2018, 12:01
RE:
alexander.n.fedorov said:
So , it was a misprint in API reference?
Yes we will fix
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Sep 2018, 11:27
Hi Sasha,
Here it is
var symbolLeverage = Symbol.DynamicLeverage[0].Leverage;
You should also have in mind that as the volume of open positions for the specific symbol increases, the leverage might change. This is why the leverage is provided in a tiered structure with parameters the volume and the applicable leverage for each tier. So if you trade large volumes then you should also check at which tier you are at that moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Sep 2018, 10:10
Hi fcomanjoncabeza,
Here it is
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; } protected override void OnStart() { Chart.ObjectAdded += OnChartObjectAdded; var highPrice = MarketSeries.High.LastValue; var openTime = MarketSeries.OpenTime.LastValue; var text = Chart.DrawText("text1", "High is here", openTime, highPrice, Color.Red); text.VerticalAlignment = VerticalAlignment.Bottom; text.HorizontalAlignment = HorizontalAlignment.Center; } void OnChartObjectAdded(ChartObjectAddedEventArgs obj) { Print("Object Added: " + obj.ChartObject.ObjectType.ToString()); } protected override void OnTick() { // Put your core logic here } protected override void OnStop() { // Put your deinitialization logic here } } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
25 Sep 2018, 16:01
Hi lec0456,
I don't know which code are you talking about but indeed this is how it is calculated. We will investigate why this is the case and come back to you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
25 Sep 2018, 12:15
Hi John,
We cannot reproduce this issue. Are you available for a TeamViewer session so that somebody from our QA team can check it on your pc?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
25 Sep 2018, 09:35
Hi Xavier,
I will forward this to the product team for further consideration.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
25 Sep 2018, 09:31
Hi John,
Can you please contact us at community@spotware.com so that we can arrange a TeamViewer session with our QA department?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Sep 2018, 12:34
Hi Alexander,
This indicator is a good starting point https://ctrader.com/algos/indicators/show/924. However, in order to be more accurate, it should be combined with the Symbol Leverage. In all cases the leverage used is the minimum of the two.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Sep 2018, 12:01
Hi swingfish.
The API does not offer such functionality. You will need to program it yourself.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Sep 2018, 11:07
Hi Sasha,
The visualization will be released on other brokers as well soon.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Sep 2018, 10:30
Hi Sasha,
Unfortunately no, this is currently not available via the API.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
24 Sep 2018, 10:21
Hi ctid569842,
Thanks for posting in our forum. Check tag 1007 in Security List message.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
27 Sep 2018, 14:28
Hi Peter,
Fair enough. You can also consider contacting our Consultants.
Best Regards,
Panagiotis
@PanagiotisCharalampous