Replies

PanagiotisChar
11 Aug 2023, 13:14

Hi there, 

I don't see any 31% anywhere on the equity chart.

Aieden Technologies

Need help? Join us on Telegram


@PanagiotisChar

PanagiotisChar
11 Aug 2023, 13:13

Hi there, 

You can't do this using the built-in functionality of cTrader. You would need to develop something yourself.

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
11 Aug 2023, 08:03

It's because there are two different types of objects. First change

        private readonly ChartTrendLine _chartTrendLine;

In SignalLine class to

        public ChartTrendLine ChartTrendLine;

and then try


           foreach (var signalLine in SignalLineRepository.GetLines())
           {
               signalLine.ChartTrendLine.CalculateY(Server.Time);
           }


@PanagiotisChar

PanagiotisChar
11 Aug 2023, 06:11

Hi there,

You are using the indicators before initializing them. That's why you get the exception.

Aieden Technologies

Need help? Join us on Telegram


 

 


@PanagiotisChar

PanagiotisChar
11 Aug 2023, 05:19

Hi there,

What is a SignalLineRepository? Where did you find this?

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
11 Aug 2023, 05:15 ( Updated at: 21 Dec 2023, 09:23 )

Hi there,

Just click on the image and then edit your profile picture

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
11 Aug 2023, 05:12

Hi there,

Which bot? Did you talk to the cBot developer?

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
10 Aug 2023, 10:19

Hi there,

This message should be sent to the QUOTE channel. Can you send it again and share the response? Make sure you are sending it to the correct port as well

Aieden Technologies

Need help? Join us on Telegram


@PanagiotisChar

PanagiotisChar
10 Aug 2023, 06:03 ( Updated at: 21 Dec 2023, 09:23 )

Hi there,

Try creating separate profiles.

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
10 Aug 2023, 05:58

Hi there,

Do you still have this problem?

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
10 Aug 2023, 05:58

Hi there,

Do you still have this problem?

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
10 Aug 2023, 05:57

Hi there,

It takes up to 24 hours.

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
09 Aug 2023, 05:32

Hi there,

Can you share the exact FIX response as well?

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
09 Aug 2023, 05:30

Hi there,

Check the Python sample below. It should be helpful

https://github.com/spotware/OpenApiPy

Aieden Technologies

Need help? Join us on Telegram


@PanagiotisChar

PanagiotisChar
09 Aug 2023, 05:28

Hi there,

It's wrong. Try

                foreach (var order in PendingOrders)
                {
                   if (order.Label == "Ordine")
                   {
                       if(Symbol.Ask> order.TargetPrice + (Symbol.PipSize * 12))
                       {
                        double newPrice = Symbol.Ask + 5 * Symbol.PipSize;
                        ModifyPendingOrder(order, Symbol.Bid + 0.0003, null,20);
                        //metto il tp a 20 pips
                       }
                   }
                }

Aieden Technologies

Need help? Join us on Telegram


@PanagiotisChar

PanagiotisChar
09 Aug 2023, 05:21

Hi there,

No you cannot. You can consider running cTrader Desktop on a VPS or use Parallels on your Mac.

Aieden Technologies

Need help? Join us on Telegram


@PanagiotisChar

PanagiotisChar
08 Aug 2023, 09:13

Hi there,

You need to use a cBot for this

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
08 Aug 2023, 05:43

Hi there,

You would need to automate this using a cBot. If you are interested to assign the job to somebody, feel free to contact me at development@clickalgo.com

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
08 Aug 2023, 05:41

Hi there,

You only need to authenticate once. Then make sure the connection stays open by sending heartbeats.

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar

PanagiotisChar
08 Aug 2023, 05:40

Hi there,

If you are looking for an automated way to do this, there isn't. You need to do this manually.

Aieden Technologies

Need help? Join us on Telegram


 


@PanagiotisChar