Topics
Replies
PanagiotisCharalampous
26 Mar 2018, 14:03
Hi lec0456,,
cBot with code would be preferable. If you cannot post it here, please send it to community@spotware.com.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2018, 12:40
Hi thanhnt12401,
Thanks for posting in our forum. You can find a good explanation for QuickTrade modes in cTrader help. Here is the link. Let me know if this is helpful for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2018, 12:34
Hi all,
Thanks for reporting this, Could you please provide us with the below information?
- What is the revision of Spotware cTrader 3.0 you are using? (press Ctrl+Shift+~R)
- Do you use any cBots or indicators in the moment of high CPU consumption?
- What charts are using? Are you using any Chart objects like Deal Maps?
If you could share a couple of screenshots of Spotware cTrader, it would be useful as well.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2018, 12:29
Hi lec0456,
Thanks for reporting this. Could we have a cBot and backtesting parameters that will allow us to reproduce this issue?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2018, 12:21
Hi Alexander,
See below
var PipDigits = Math.Log10(1 / Symbol.PipSize);
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2018, 12:13
( Updated at: 21 Dec 2023, 09:20 )
Hi Adam,
Thanks for posting in our forum. There is no 1x because there is 100% which is equivalent. See below
Let me know if this helps you.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2018, 12:06
Hi Sylvain,
Thanks for reporting your issue. Could we have a cBot and backtesting parameters that will allow us to reproduce is and understand if this is a bug or not? Regarding your suggestion, I will pass it to the product team.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2018, 11:58
Hi thriscio,
Thanks for reporting this. Could we have a cBot and backtesting parameters that will allow us to reproduce this issue?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Mar 2018, 12:55
Hi tradermatrix
The exception is thrown in the following function
private TradeType GetTradeCommand() { if (_movingAverage.Result.IsRising()) return TradeType.Buy; if (_movingAverage.Result.IsFalling()) return TradeType.Sell; return _position.TradeType; }
_position is not set anywhere, therefore always null
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
23 Mar 2018, 09:10
Hi yjoura,
The current plan is to release visual backtesting in cTrader Desktop v3.01. Stay tuned!
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Mar 2018, 18:01
Hi tradermatrix,
Could I have your backtesting parameters and settings as well?.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Mar 2018, 16:14
Hi all,
Linked charts are planned for the next versions of both cTrader Web and cTrader Desktop. So I am pretty confident that you will have them in less than two years :)
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Mar 2018, 14:45
Hi irmscher9,
If you don't perform any extraordinary calculations before sending the order, i don't think you will have a problem. Computation-wise, sending an order is a submillisecond process.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Mar 2018, 14:04
Hi irmscher9,
There is no single answer to this question. It depends what your needs are e.g. how many robots are you running at the same time, what are their processing needs, how often do they trade etc
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Mar 2018, 11:15
Hi jjwes76@gmail.com,
The code snippet is just an example. You need to adjust it based on your code.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Mar 2018, 11:03
( Updated at: 21 Dec 2023, 09:20 )
Hi ceacuk,
This seems to be happening because of a weekend gap between the 21st and 24th of April. See below
Let me know if this addresses your concerns.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Mar 2018, 09:31
Hi jjwes76@gmail.com,
You can use a condition like the one below
if (_sma.Result.LastValue > position.EntryPrice) ExecuteMarketOrder(TradeType.Buy, Symbol, 1000);
Let me know if this helps,
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
22 Mar 2018, 09:26
Hi Anton,
You could try to use a condition like the sample below
if(DateTime.UtcNow.Hour >= 8 && DateTime.UtcNow.Hour < 4) { // Do something... }
Let me know if this helps,
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Mar 2018, 18:01
Hi Gwave,
Unfortunately, I cannot engage into developing custom cBots for traders. If you need professional help, you could contact a Consultant or post a Job.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
26 Mar 2018, 14:08
Hi Adam,
Your broker was correct. Percentages and ratios are related to the volume traded by the strategy provider. Proportional mirroring with be a feature that will be introduced in the upcoming release of cTrader Copy which is planned to be released sometime in Q2 2018.
Best Regards,
Panagiotis
@PanagiotisCharalampous