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

PanagiotisCharalampous
15 Jun 2018, 09:31

Dear Khalil,

Thanks for posting in our forum. This is currently not possible in cTrader. You could consider posting a suggestion in the Suggestions section of the forum.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Jun 2018, 09:17

Hi ycomp,

Currently you cannot add buttons on the charts. It is in our plans to incorporate such functionality in cAlgo.API. 

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Jun 2018, 09:15

Hi rotcehmnz,

Thanks for posting in our forum. Could you please share with us some more information about the issue? Can you post a screenshot of what you say and makes you believe it is wrong?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jun 2018, 15:53

Hi ycomp,

There is no such functionality currently.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jun 2018, 11:51

Hi irmscher9,

This issue has been resolved with the latest update and I cannot reproduce it. Can you make sure you got the updates? If yes, can you please send a complete screenshot and try to reproduce it with a simpler setting i.e. only with a moving average?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jun 2018, 10:37

17 bars? If yes, you can use the code I posted


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jun 2018, 10:24

Hi hamidrtafx@gmail.com,

What does -17 represent? Bars, hours, anything else?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jun 2018, 10:14

Hi hamidrtafx@gmail.com,

Here it is 

hartObjects.DrawVerticalLine("test", MarketSeries.Close.Count - 17, Colors.Red, 2);

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Jun 2018, 09:41

Hi padik,

You cannot change a trading account while a cBot is running. If you want to trade on another account simultaneously, just open a new instance of cTrader. 

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Jun 2018, 16:35

Hi again,

I think it would be much easier to recreate the indicator for cTrader instead of trying to get a signal from an email alert. Maybe you could talk to a Consultant or post a Job.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Jun 2018, 16:12

Dear Trader,

Thanks for posting in our forum. What kind of alert is it? Didn't you consider just programming this alert in cTrader?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Jun 2018, 14:11

Hi ADFX,

It is not possible to retrieve the color of IndicatorDataSeries using cAlgo.

Best Regards,

Panagiotis Charalampous


@PanagiotisCharalampous

PanagiotisCharalampous
13 Jun 2018, 11:40 ( Updated at: 21 Dec 2023, 09:20 )

Hi Solomon,

This is what I do but seems correct. See below

Can you send a similar screenshot?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Jun 2018, 10:48

Hi Solomon,

We had a look at this but we don't see any issue. Could you please send us more information e.g. a screenshot and/or a cBot?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Jun 2018, 09:21

Hi solomonawulonu,

Thanks for posting in our forum and for reporting this issue. We will investigate and fix if there is a problem.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Jun 2018, 09:10

Hi thongbaogiaodich,

Could you please post the complete cBot code?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
12 Jun 2018, 17:55

Hi thongbaogiaodich,

Try skipping 

var positions = Positions.FindAll(newsLabel, Symbol, TradeType.Buy);

Just check if a position has TradeType.Buy before closing it.

Let me know if this helps,

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
12 Jun 2018, 14:33

Hi Delta_Gamma,

The option of changing trading account properties is provided by brokers therefore you should contact your broker. For QuickTrade settings, make sure you are signed in with your cTID.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
12 Jun 2018, 14:28

Hi hamidrtafx@gmail.com,

Try the below

            if ((MarketSeries.Open.Last(2) < MarketSeries.Close.Last(1) && MarketSeries.Close.Last(2) > MarketSeries.Close.Last(1)) || (MarketSeries.Open.Last(2) > MarketSeries.Close.Last(1) && MarketSeries.Close.Last(2) < MarketSeries.Close.Last(1)))
            {
                // Do something
            }

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
12 Jun 2018, 09:50

Hi hamidrtafx@gmail.com,

It is not clear what you need the code to do. Please give us more information in order to help you.

Best Regards,

Panagiotis


@PanagiotisCharalampous