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

PanagiotisCharalampous
26 Feb 2019, 10:38

Hi Patrick,

The broker-cTrader, as shown in my previous post. If this happens on FxPro, then FxPro-cTrader.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Feb 2019, 10:35

Hi Nick,

No it is not but I am not sure what do you expect to hear. You have asked if cTrader can send external email alerts and I said that this is possible. Here is how

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Feb 2019, 10:19

Hi lec0456,

For which symbol? Do other brokers have market sentiment for that symbol?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Feb 2019, 10:16

Hi lw3010996,

The reason you see nothing is because showSMA is always false.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Feb 2019, 10:13

Hi Nick,

In principle it is possible. But I cannot advise you futher than that since I do not have any details about what you are talking about.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Feb 2019, 09:57

Hi hishalv,

Thanks for posting in our forum. Yes this is possible. See an example below

 Chart.ColorSettings.BackgroundColor = Color.Red;

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Feb 2019, 09:53

Hi FMogyi,

The following links might be helpful

https://stackoverflow.com/questions/4758283/reading-data-from-a-website-using-c-sharp

https://www.codeproject.com/Tips/443588/Simple-Csharp-FTP-Class

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 17:55

Hi Nick,

Do you need to read external alerts using cTrader and execute the traders with in cTrader?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 17:38

Hi Nick,

cTrader cannot connect to an exchange. It only connects to the liquidity offered by your broker.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 17:24

Hi Nick,

Thanks for posting in our forum. cTrader is a CFD trading platform therefore it does not have direct access to crypto exchanges. However there are several cTrader brokers that offer cryptocurrency CFDs via cTrader.

Regardng point 2 it is not clear to me what do you mean with external alerts. Can you please elaborate?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 16:27

Hi darcome,

Sorry I missed the indicators. No you cannot get indicator data from Open API or any other source.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 16:18

Hi darcome,

You can use Open API.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 12:29

Hi Patrick,

Can you please send us your settings file at community@spotware.com? You can find it at C:\Users\UsernameAppData\Roaming\Broker cTrader.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 11:02

Hi jpwtrading,

See an 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 CustomcBot : Robot
    {
        [Parameter(DefaultValue = 1, MinValue = 1)]
        public int MaxPositions { get; set; }

        protected override void OnStart()
        {

        }

        protected override void OnTick()
        {
            if (Positions.Count < MaxPositions)
            {
                // Do somehting
            }
        }

        protected override void OnStop()
        {

        }
    }
}

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 10:30

Hi jpwtrading,

These errors are caused by

        public override void Calculate(int index);
        }

But even if you fix that more errors appear. It seems you have copied and pasted things for other cBots/Indicators and it is not clear what are you trying to do. Maybe yous hould consider rewriting the strategy from start.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 10:25

Hi jasdel24,

Thanks for posting in our forum. Stop limit orders and market range have not been included yet in FIX API.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 10:22

Hi Ziyad,

Thanks for posting in our forum. See below an example of setting the alpha for a rectangle.

            var rectangle = Chart.DrawRectangle("Rectangle", Server.Time.AddHours(-20), Symbol.Bid - 0.01, Server.Time, Symbol.Bid, Color.FromArgb(128, 255, 0, 0));
            rectangle.IsFilled = true;

At the moment, you cannot draw the chart on the background.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 10:08

Hi Patrick,

I tried this but I do not see any difference with v3.0. It is not opening as a modal window. It is just on top of the rest.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 10:03

Hi aricesar,

You can check this discussion.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
25 Feb 2019, 09:50

Hi leohermoso,

Swaps are not available at the moment in cTrader Automate API.

Best Regards,

Panagiotis


@PanagiotisCharalampous