Topics
Replies
Spotware
08 Oct 2014, 14:10
Hello,
Thank you for your interesting suggestion. You can actually promote your idea here:
http://vote.spotware.com/forums/229166-ideas-and-suggestions-for-ctrader-and-calgo
Best Regards
@Spotware
Spotware
08 Oct 2014, 09:33
However, is it possible to download the optimization data for further analysis?
It is not possible at the moment.
Specifically I would like to be able to EITHER:
- Download the optimisation results, complete with parameters so I can use third party anaylsis tools
- See more powerful data mining features on the cAlgo GUI
- For example, 3D graphing of input parameters against outcomes
Do you plan to implement anything like this in the near future?
Yes, we plan to implement such functionality in the future.
@Spotware
Spotware
07 Oct 2014, 11:13
Hello,
Yes, that is correct. The advanced protection functionality concerns only live positions.
This, involving the pending orders as well, is actually being considered to be implemented in the future.
For now you can only set a single take profit option for pending orders.
Best regards
@Spotware
Spotware
07 Oct 2014, 10:14
RE:
itaiophir said:
Hello,
Is there an option to limit the amount of trades per day? Regardless of symbol\ positions size\ cBot execution\ etc....
Just to be clear: I would like to be able to limit the amount of trades to 30, per day.
thanks!
Hello,
No, at the moment such an option does not exist.
Remember you can always suggest features here:
http://vote.spotware.com/forums/229166-ideas-and-suggestions-for-ctrader-and-calgo
@Spotware
Spotware
07 Oct 2014, 10:10
RE:
trend_meanreversion said:
Can we please have tick charts with higher ticks value probably 133 , 233 etc..34 max ticks value is very limited to start with. Please provide higher value of ticks in the charts.
Hello,
Our development team is already considering this, for future implementation.
@Spotware
Spotware
07 Oct 2014, 10:01
RE:
emeeder said:
Any idea if backtesting multiple symbols and timeframes will be available soon?
Are there any other options for me available anywhere where i can backtest multiple currency/symbol cbots?
multi-timeframe backtesting is already available. We cannot provide an ETA but multi-symbol backtesting is planned.
@Spotware
Spotware
07 Oct 2014, 09:58
Error "Value does not fall within the expected range" happens when you kill the dsfvc.exe process while it's installing/preparing your installation after an update has been downloaded.
Please perform the following steps to clean the ClickOnce cache:
-
Hold down the Win key, and press R. The Run box should appear.
-
Into the Open field, enter %LOCALAPPDATA%\Apps for Windows 8.1, Windows 7, and Windows Vista or %USERPROFILE%\Local Settings\Application Data\Apps for Windows XP
-
Then click OK.
-
This will open Windows Explorer.
-
Delete the folder names 2.0
-
Reinstall the application
@Spotware
Spotware
03 Oct 2014, 17:59
RE:
If you can see cBot in cAlgo, it means algo file was created.
cAlgo doesn't supports multiple cBots per solution. It means when you will click build cBot, only one algo file will be created.
For multiple cBots editing use VS.
SkyAction said:
Hello,
I did exactly what you said and the algo file is not present.
I see the Robot in the cAlgo, but it tell me that the source code is unavailable.
Any ideas ?
@Spotware
Spotware
03 Oct 2014, 17:35
When you create an indicator you can pass DataSeries or MarketSeries object:
protected override void OnStart() { var m1_series = MarketData.GetSeries(TimeFrame.Minute); var sma_m1 = Indicators.SimpleMovingAverage(m1_series.Close, 14); var m5_series = MarketData.GetSeries(TimeFrame.Minute5); var aroon_m5 = Indicators.Aroon(m5_series, 21); }
@Spotware
Spotware
03 Oct 2014, 17:31
You can specify marketRangePips parameter for ExecuteMarketOrder
/api/reference/robot/executemarketorder-3c85
@Spotware
Spotware
03 Oct 2014, 09:42
RE:
Currently VS extension doesn't support creating Algo Projects. You can use next workaround in case you want to add an algo project right from VS.
1. Add a Class Library project to your solution.
2. Unload project (right click on unloaded project in solution explorer)
3. Edit project (from solution explorer)
4. Add following line right bellow <ProjectGuid> tag
<ProjectTypeGuids>{DD87C1B2-3799-4CA2-93B6-5288EE928820};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
5. Reload project
6. Add cbot class
7. Build it.
SkyAction said:
Hi,
I would like to know how to add a second Robot in the same solution (visual studio) than a other one.
I already have a solution with a robot that a created via cAlgo. Now i would like add a new robot to this solution directly from Visual Studio.
I tried to create a library and create a robot in it. The compilation was perfect but i don't see it in cAlgo.
The .algo file is not created.
Can you explain how to create this algo file in the right directory. I'm using VS 2013.
Regards,
Sky.
@Spotware
Spotware
09 Oct 2014, 09:24
RE:
Denis_Kolpakov said:
That will work only in netting accounts.
As a workaround you can create several positions with the same direction and close some of them when you decide to perform partial close.
@Spotware