PanagiotisCharalampous's avatar
PanagiotisCharalampous
26 follower(s) 0 following 1006 subscription(s)
Replies

PanagiotisCharalampous
02 Oct 2018, 11:14

Ηι tekASH,

the followng methods should be helpful for you

HasCrossedAbove

HasCrossedBelow

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Oct 2018, 10:54 ( Updated at: 21 Dec 2023, 09:20 )

Hi ghazisameer,

Just right click on the indicator and choose "Delete File".

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Sep 2018, 10:16

Hi Paul,

Thank you for reporting this. We managed to reproduce the issue and we will fix it.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Sep 2018, 10:06

Hi fcomanjoncabeza,

This functionality is available only in cTrader 3.3. Do you use Spotware Beta?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Sep 2018, 17:31

Hi all, 

Renko and Range charts have been released on Spotware Beta. You can find more info here.

Best Regards, 

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Sep 2018, 14:44

Hi salihtrkr94,

You cannot trade on Binance using cTrader. cTrader is a platform for trading CFDs.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Sep 2018, 14:34

Hi salihtrkr94,

As far as I know Quantower is not a broker but just a trading interface that integrates with cTrader. So you can use Quantower to trade with your existing cTrader accounts.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Sep 2018, 14:32

Btw did you get in touch with AutoView in case they would be interested in supporting cTrader? That would be another alternative


@PanagiotisCharalampous

PanagiotisCharalampous
27 Sep 2018, 14:28

Hi Peter,

Fair enough. You can also consider contacting our Consultants.

Best Regards,

Panagiotis


@PanagiotisCharalampous

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