Replies

PanagiotisCharalampous
27 Nov 2018, 10:05

Hi Zafar,

There is no such feature at the moment but it is in our backlog.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Nov 2018, 17:55

Hi GammaQuant,

There are no plans for this at the moment but we are internally discussing it. But we cannot commit on anything at the moment.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Nov 2018, 16:48

Hi dmn,

Indicators are displayed in the order they are added. If you need them to display in a different order then you need to add them in the order you wish to see them.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Nov 2018, 15:48

Hi nguyendan81985,

In this case you should compare the last Chikou value with MarketSeries.Open.Last(x) and MarkerSeries.Close.Last(x). Note that the x value is always depended on the Kijun Sen periods defined for the indicator. This applies for SpanA and SpanB examples above as well. 

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Nov 2018, 15:25

Hi yoannes,

They will need to sign in to the other cTID to have access to the account.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Nov 2018, 15:02

Hi Sasha,

The solution is to give object names to objects drawn in code and then remove only the objects that have been created by the cBot. See below an example.

            Chart.DrawText("object name", "text", Server.Time, 1, Color.AliceBlue);
            Chart.RemoveObject("object name");

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Nov 2018, 14:06

Hi yoannes,

All brokers upgrading to 3.3 are migrated to what we call a Forced cTID version of cTrader. This means that traders cannot signing using their trading accounts anymore but only with their cTID. This is because cTID is required for all the cloud features of cTrader to work. Even though we do not advise users to share their trading account credentials, the new way of authentication does not exclude the option to continue operating as before. Account owners can link their accounts to a separate cTrader ID.

Best Regards,

Panagiotis

 


@PanagiotisCharalampous

PanagiotisCharalampous
26 Nov 2018, 12:20

Hi dmn,

Currently there is no option to hide the toolbars.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Nov 2018, 11:21

Hi GammaQuant,

This is normal. OnTick() is triggered on each incoming tick, Bid and Ask. Bars take into consideration only Bid prices.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Nov 2018, 11:18

Hi GammaQuant,

I would suggest that you post this suggestion on UserVoice and if it gets enough demand, the product team will consider it.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Nov 2018, 11:14

Hi ctid723683,

Can we have the cBot code so that we can investigate further?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Nov 2018, 11:10

Hi netread2004,

This is because you are using classes and functions that are not included in 3.0. If you want to use them, you will need to wait until your broker gets 3.3

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
23 Nov 2018, 17:58

Hi netread2004,

Go to Documents\cAlgo\API and delete the contents of the folder. Then launch your cTrader 3.0 again. Let me know if it resovles the problem.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
23 Nov 2018, 17:26

Hi Ian,

I am not sure what kind of example you need. PendingOrder.TargetPrice is the price at which the order is set to trigger. If you need to modify it so that the order trails the price fluctuation, you will use ModifyPendingOrder to change the target price. Let me know a simple scenario you wish to see programmed so that I can provide with a sample code.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
23 Nov 2018, 17:17

Hi nguyendan81985,

See below how to get the pips separating the currect SpanA value from the current Bid price, above and below

           //Above
           var pipsFormBidAbove = (ichimokuKinkoHyo.SenkouSpanA.Last(27) - Symbol.Bid) / Symbol.PipSize;
           //Below
           var pipsFormBidBelow = (Symbol.Bid - ichimokuKinkoHyo.SenkouSpanA.Last(27)) / Symbol.PipSize;

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
23 Nov 2018, 15:24

Hi laurentgeboes,

No, backtesting is just for cBots.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
23 Nov 2018, 14:59 ( Updated at: 21 Dec 2023, 09:21 )

Hi laurentgeboes,

You need to navigate to cTrader Automate. See below

Best Regards,

Panagiotis

 


@PanagiotisCharalampous

PanagiotisCharalampous
23 Nov 2018, 14:12

Hi Ulises,

Please send me the video at community@spotware.com so that I can see what happens.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
23 Nov 2018, 14:11

Hi ctid723683,

I am not sure what you mean with activate. If cTrader is launched and cBot running then it should work without any further intervention.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
23 Nov 2018, 14:07

Hi Ian,

Yes you can. Just use ModifyPendingOrder to set the new target price each time the price is recalculated.

Best Regards,

Panagiotis


@PanagiotisCharalampous