Topics
Replies
PanagiotisCharalampous
16 Oct 2018, 11:53
Hi Patrick,
Compiled versions are not allowed. However you can upload a cBot that will just redirect to your side, something like this. If at a later stage you want to delete your cBot, you can.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Oct 2018, 10:09
( Updated at: 21 Dec 2023, 09:20 )
Hi Punit,
You can find them below the backtesting chart. Please make sure that you have the correct layout selected. See below
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Oct 2018, 10:04
Hi willd7781,
Can you please provide the link to the cBot?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Oct 2018, 10:01
Hi Josef,
Thanks for posting in our forum. Advanced protection is not available for pending orders, only for positions. However, with some coding skills you could program the functionality yourself.
Regarding your suggestion for the Break Even, I would encourage you to post in in http://vote.spotware.com/ so that it can be voted by other traders as well, increasing its chances to be considered by the product team.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Oct 2018, 09:49
Ηi noorimotlagh.reza,
It should be Where and not where. c# is a case sensitive language.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Oct 2018, 09:45
Hi sherrydavis1996,
Thank you for posting in our forum. You can also post a Job or contact a Consultant.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
15 Oct 2018, 16:20
Hi Geissier,
We have reenabled the possibility to offer strategies in cMirror. Do you still have a problem?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
15 Oct 2018, 15:33
Hi Sasha,
Try
Chart.DrawTrendLine("low " + DaysBack[i], DaysBack[i], Low[i], NextDay[i], Low[i], Color.Red, thickness, LineStyle.Solid);
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
15 Oct 2018, 15:29
Hi Patrick,
No problem with us. You can also share it in the cBots section which is more appropriate.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
15 Oct 2018, 15:10
Hi Reza,
There is an @ in the code. Is this the reason? If not then make sure you reference LINQ. To do so just add
using System.Linq;
is the using section.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
15 Oct 2018, 12:29
( Updated at: 21 Dec 2023, 09:20 )
Seems to be fine as well
Can you make sure you are hovering on top of the correct place? If yes, can you send a screenshot?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
15 Oct 2018, 12:17
( Updated at: 21 Dec 2023, 09:20 )
Hi Sonar Trades,
It is available in both. See below
Which broker's web app to you use and which browser?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
15 Oct 2018, 12:08
( Updated at: 21 Dec 2023, 09:20 )
Ηι Sonar Trades,
This information is displayed when you hover your mouse on top of the dropdown with the volume values. See below
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
15 Oct 2018, 10:10
Hi noorimotlagh.reza,
Here it is
foreach (var position in Positions.Where(x => x.SymbolCode == Symbol.Code)) { }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Oct 2018, 17:55
Hi noorimotlagh.reza,
Try this
using System; using System.Linq; using cAlgo.API; using cAlgo.API.Indicators; using cAlgo.API.Internals; using cAlgo.Indicators; namespace cAlgo.Robots { [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class CV2 : Robot { protected override void OnTick() { foreach (var position in Positions) { Print("SL {0}", position.StopLoss); Print("The current symbol has pip size of: {0}", MarketData.GetSymbol(position.SymbolCode).PipSize); } } } }
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Oct 2018, 17:49
Hi noorimotlagh.reza,
This method is available only in Spotware Beta 3.3.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Oct 2018, 17:47
Hi Thomas,
Thanks for posting in our forum. At the moment, backtesting does not take into account free margin. This feature will be added in a future release.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Oct 2018, 16:49
Hi Sasha,
Indeed a database is the most proper way to do this. I just thought it would be overengineering for such a case.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
12 Oct 2018, 12:36
Hi yearn2012,
It is a known issue and should be fixed in one of the upcoming updates.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
16 Oct 2018, 12:31
Hi meshareyou,
Thanks for posting in our forum. You cannot use Spotware Beta applications with your ICMarkets account. You will need to wait till ICMarkets upgrade their applications.
Best Regards,
Panagiotis
@PanagiotisCharalampous