Topics
Replies
PanagiotisCharalampous
06 Aug 2020, 08:16
Hi yomm0401,
You cannot control this through the API unfortunately.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2020, 08:15
Hi riccardo.buttari,
The API does not offer such a functionality. You might need to develop something yourself.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2020, 08:12
Hi galaaoui.salma,
Your problem lies here
You cannot use MarketData in a robot object that is not attached on a chart. Try passing this object as a parameter to the class.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Aug 2020, 14:13
Hi galaaoui.salma,
Can you please provide the compete cBot code so that we can reproduce this behavior?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Aug 2020, 10:20
( Updated at: 21 Dec 2023, 09:22 )
Hi SATRENDS,
In other words you can insert an image using a URL in the Source field.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Aug 2020, 09:14
Hi SATRENDS,
The picture needs to be uploaded somewhere on the internet. Then you can use the url address. See below
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Aug 2020, 08:50
Hi rohingosling,
Don't worry, it happens to all of us :)
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Aug 2020, 08:48
Hi samuel.jus.cornelio,
Your code is not structured well. Did you just copy and paste from somewhere?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Aug 2020, 08:44
Hi Maged,
This is possible, you will need to integrate with Twitter APIs.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Aug 2020, 08:36
Hi shpendbaftiu,
Was cTrader running when the price passed the ATP level for more than 5 pips and didn't take the profit?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Aug 2020, 08:30
Hi rgasch,
Here is the correct way to do this
private Supertrend _st;
protected override void OnStart()
{
_st = Indicators.Supertrend(10, 3);
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
05 Aug 2020, 08:25
Hi yomm0401,
Just drag the time counter to the left
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Aug 2020, 16:51
( Updated at: 21 Dec 2023, 09:22 )
Hi rohingosling,
Here it is
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Aug 2020, 16:49
Hi samuel.jus.cornelio,
Can you please write in English? It will be easier for us to help you. The code is a mess, did you just copy and paste stuff?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Aug 2020, 16:41
Hi crou,
You can check the Sample Trading Panel sample cBot that comes with the platform. It has examples of adding buttons to the charts.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Aug 2020, 15:30
Hi koktos632,
There is no single expected outcome. Events will be triggered as soon as responses arrive from the server. Many operations happen asynchronously on the server therefore there is no expected sequence of events. Orders can be executed in any order.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Aug 2020, 12:03
Hi alexnikon,
I used the same timeframes but the chart looks fine to me
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Aug 2020, 11:58
Hi Vamsi,
To get rid of the exception, you need to change
//[Output("Signal")]
public IndicatorDataSeries SignalsData;
//[Output("Signal Index")]
public IndicatorDataSeries SignalsIndexData;
to
[Output("Signal")]
public IndicatorDataSeries SignalsData { get; set; }
[Output("Signal Index")]
public IndicatorDataSeries SignalsIndexData { get; set; }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Aug 2020, 11:43
Hi fang0092,
. If I load the m1 bars ahead of time (before using the indicator) will it significantly reduce the loading time?
It will take the same time to load no matter where you call the function
Do the m1 bars loaded remain until I close ctrader?
They will stay in memory as long as you use the indicator.
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous
PanagiotisCharalampous
06 Aug 2020, 08:17
Hi tommy123,
Deposits and withdrawals do not affect the ROI of a strategy.
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous