Replies

PanagiotisChar
24 Apr 2023, 10:12

Hi,

That's what I say. Copying accounts are subject to the same rules as normal accounts.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
24 Apr 2023, 09:53

Hi,

The problem is that the follower's broker does not allow trading with 0.001 lot.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
24 Apr 2023, 09:44

Hi Jexodus,

You cannot modify positions using an indicator. You need to use a cBot.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
24 Apr 2023, 09:40

Hi there,

This feature is only available in cTrader 4.7.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
24 Apr 2023, 09:37

Hi there,

Minimum trading size is configured by the broker. You should suggest this to your broker.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
21 Apr 2023, 13:24

Hi Dennis,

DateTime.Today shows the current day on your computer. Use Server.Time.DayOfWeek.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
20 Apr 2023, 08:18

Hi Jexodus,

It's hard for us to understand what happens if we are not able to easily reproduce. I would advise to post a sample cBot that prints these discrepancies in the log and post it here so that we can use it. Also post some screenshots of what you are looking. It is also possible that you will find the issue yourself while you are doing this.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
20 Apr 2023, 08:13

Hi there,

You can also use something like this

    Chart.DrawText("Example", "Example", Chart.FirstVisibleBarIndex + Chart.MaxVisibleBars - 7, Chart.TopY - Symbol.PipSize * 2, Color.White);

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
19 Apr 2023, 08:03

Hi there,

Can you share your cBot code so that we can try it as well?

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
18 Apr 2023, 19:53

Hi Daniel,

Check if this option is checked. If yes, uncheck it and try again.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
18 Apr 2023, 14:59

Hi there,

Can you share some code so that we can try it too?

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
18 Apr 2023, 09:39

Hi there,

Try wrapping the volume with the Symbol.NormalizeVolumeInUnits() method.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
18 Apr 2023, 09:32

Hi there,

Check the cBot's log. There might be some useful information there.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
18 Apr 2023, 09:29

Hi there,

It seems there is an issue with custom indicators. If you have any on the chart, try removing them.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
18 Apr 2023, 09:28

Hi,

You can listen to the PendingOrders.Cancelled event and act accordingly

        PendingOrders.Cancelled += PendingOrders_Cancelled;        
        
        private void PendingOrders_Cancelled(PendingOrderCancelledEventArgs obj)
        {
            if(obj.Reason == PendingOrderCancellationReason.Cancelled)
            {
                //Do something
            }
        }

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
15 Apr 2023, 12:18

Hi there, 

This method is only available in v4.7.7. Make sure you are using the correct version.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
15 Apr 2023, 12:12

Hi there,

You cannot convert a type of order to another one. You need to cancel the existing order and create a new one. But what you describe is pointless. If a stop limit order is not filled, a limit order will not be filled either. If you want your order to be filled no matter what, what is the point of using a stop limit or limit order? Just use a market order.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
15 Apr 2023, 12:08

Hi there,

The labels you are using to open the positions do not match the labels you use to find the positions in the trailing stop method.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
15 Apr 2023, 10:46

Hi ncel01,

Obviously we will not agree as it is a matter of different worldview so there is no point of discussing further. I am of the opinion that I should not rely on third parties to save me from the obvious wrong decisions. I don't connect to every facebook account just because it's on facebook, I don't respond to any email I receive just because it's a Gmail account, I don't shop from every store I find on Amazon, just because it's on Amazon.  All these service providers have processes in place but you can still bypass them get away with it. The same way I don't trade with any broker just because he offers cTrader or he is regulated. I put my brain to work first. Others just trust the third parties and then blame them if something goes wrong.

Have a nice day!

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


 


@PanagiotisChar