
Topics
Replies
PanagiotisCharalampous
13 Jan 2020, 08:50
Hi Terzys,
You cannot reference indicators without source code in cBots therefore you will not be able to backtest them.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Jan 2020, 08:48
Hi firemyst,
This is by design. The form does not display the parameter value as modified during execution. It shows only the default value.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Jan 2020, 08:46
Hi benicmwhittaker,
You can try Visual Studio Community.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Jan 2020, 08:41
RE: RE:
Hi VFX Scalping,
Did you receive any fees at that moment?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Jan 2020, 08:39
Hi all,
See my explanation here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Jan 2020, 08:36
Hi,
You are declaring your indicators as MovingAverage type but then you are initializing them as EmaOffset type
private MovingAverage slowMa;
private MovingAverage fastMa;
fastMa = Indicators.GetIndicator<EmaOffset>(SourceSeries, FastPeriods, FPOffset);
slowMa = Indicators.GetIndicator<EmaOffset>(SourceSeries, SlowPeriods, SPOffset);
You should be declaring them as follows
private EmaOffset slowMa;
private EmaOffset fastMa;
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Jan 2020, 08:30
Hi annaicmarkets,
Automatic position closing might occur when the equity to equity ratio changes because of transactions (deposits/withdrawals) on the strategy providing account. This is explicitly described in our EULA Section 11.1.I.D
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Jan 2020, 08:29
Hi VFX Scalping,
Automatic position closing might occur when the equity to equity ratio changes because of transactions (deposits/withdrawals) on the strategy providing account. This is explicitly described in our EULA Section 11.1.I.D
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
10 Jan 2020, 15:46
Hi forex.uncle,
There is no built in feature for this, You will need to develop your own indicator.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
10 Jan 2020, 09:07
Hi there,
You can check the API Reference as well. For whatever is missing, feel free to ask here!
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
10 Jan 2020, 09:04
Hi all,
Can you please send us some screenshots to understand what you mean?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
10 Jan 2020, 08:58
Hi civil.engineer2010,
We need more information regarding the performance issue. Do you run any custom cBots or indicators?
Regarding
And I need to see an indicator at different timeframes on the one chart. Is it possible?
In principle, this is possible but you need to program the indicator accordingly.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Jan 2020, 16:53
Hi Joe,
The answer to both of your questions is yes.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Jan 2020, 16:43
Hi jc-46,
You cannot detach charts in cTrader Web. If you want to utilize all your screens, you need to open cTrader Web in different tabs.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Jan 2020, 08:41
Hi camsphone111,
Who is your broker?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Jan 2020, 08:37
Hi DelTrader,
See below
if (Positions.Count(x => x.Id == PosID1) > 0)
{
Positions.First(x => x.Id == PosID1).Close();
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Jan 2020, 08:32
Hi there,
As the message says, you are using more parameters than needed. You should be using only two e.g. EMA1_Series.Close. What is SourceSeries?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
09 Jan 2020, 08:26
Hi TradeTick,
It was an infrastructure issue.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
08 Jan 2020, 16:52
Hi tnt_22,
This should have been fixed. Do you still have issues?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
13 Jan 2020, 08:53
Hi scott.dc,
We cannot reproduce such a behavior. Can you record a video demonstrating the steps you are following to reproduce it and send it to us?
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous