Topics
16 Nov 2023, 07:42
 1132
 1
15 Nov 2023, 10:36
 2018
 16
Replies

Spotware
01 Jul 2015, 12:18

Dear kricka,

the following code snippet shows you how to print the fitness to the log.

        protected override double GetFitness(GetFitnessArgs args)

       {

           double result = args.WinningTrades / args.LosingTrades;

           Print(result);

           return result;

       }

You cannot draw the result of GetFitness in a Chart because it runs at Optimization where there is no price chart. We hope this helps you.


@Spotware

Spotware
30 Jun 2015, 14:12

Dear Trader,

Please take a look at the following indicator: /algos/indicators/show/142

Note that many users upload their indicators/cBots in our Website. You can search for an indicator or cBot that suits you. You can also contact one of our Partners to create an indicator or a cBot for you or post a job in Development Jobs section.


@Spotware

Spotware
30 Jun 2015, 11:19

Dear Trader,

Since you asked again for access to non-aggregated Depth of Market, we will consider it.


@Spotware

Spotware
30 Jun 2015, 10:48

Dear Trader,

We do not perform any changes on the historical tick data.

Could you provide us some screenshots showing the issue you described and a list of the Brokers where you performed the backtests?


@Spotware

Spotware
30 Jun 2015, 10:32

Dear Trader,

Thank you for reporting this. We will investigate.


@Spotware

Spotware
29 Jun 2015, 16:06

Dear Trader,

Thank you for noticing this. We will investigate.


@Spotware

Spotware
29 Jun 2015, 15:28

Dear Trader,

Please take a look at the following C# Tutorials: https://msdn.microsoft.com/en-us/library/aa288436(v=vs.71).aspx

As soon as you consider yourself able to write codes you should also take a look at API Programmers Guides.

We hope this helps you.


@Spotware

Spotware
29 Jun 2015, 15:20

Dear Trader,

The line will not be drawn. ChartObjects is disabled in backtesting.


@Spotware

Spotware
29 Jun 2015, 15:16

Dear Trader,

Currently you do not have the ability to adjust the timezone in backtesting. We will consider adding timezone parameter to backtesting settings in the future. Stay tuned. Additionally you can post your ideas/suggestions to http://vote.spotware.com/


@Spotware

Spotware
29 Jun 2015, 15:06

Dear Trader,

Regarding GetFitnessArgs please take a look at the following reference: http://help.spotware.com/calgo/cbots/optimization#optimization-criteria

We hope this helps you.


@Spotware

Spotware
29 Jun 2015, 14:59

Hi,

Thanks for your request. As for now Market Depth is unavailable within our Open API. We definitely will take your idea into our account while planning our future releases of the Open API.

BTW, you can vote for cTrader features you'd like to see in future here: http://vote.spotware.com/

 

If you have more question about the Open API, feel free to ask our support here: connect@spotware.com

Also, you can find more details about the Open API in our online Guide: https://connect.spotware.com/

Check it out.

 

Sincerely,

Spotware team. 

 


@Spotware

Spotware
29 Jun 2015, 14:47

Dear Trader,

To be able to start backtesting cAlgo.API must be connected to the internet. Please make sure that your platform is connected to the internet.


@Spotware

Spotware
29 Jun 2015, 14:25

Dear Trader,

As already mentioned we do not provide coding assistance services. If you believe that there is a bug/issue in cAlgo.API, could you please send us the simplest indicator that reproduces this issue. Then we will investigate. Thank you in advance.


@Spotware

Spotware
29 Jun 2015, 14:21

Dear Trader,

Currently the candlesticks are drawn based on the bid price. We do not provide users the ability to make any modifications on them. For your information you can post your ideas/suggestions to http://vote.spotware.com/


@Spotware

Spotware
29 Jun 2015, 12:22

Dear Trader,

Thank you for your suggestion. We will consider it. Additionally you can post your ideas/suggestions to http://vote.spotware.com/


@Spotware

Spotware
29 Jun 2015, 12:00

Dear Trader,

We do not provide coding assistance services. We more than glad to assist you with specific questions about cAlgo.API. You also can contact one of our Partners or post a job in Development Jobs section for further coding assistance.


@Spotware

Spotware
26 Jun 2015, 10:50

Dear Trader,

87942066 error code says that cAlgo cannot access "Documents\cAlgo\API\" folder. Please check your file permissions.

@Spotware

Spotware
25 Jun 2015, 18:01

Dear Trader,

It is using the daily open bid price.


@Spotware

Spotware
25 Jun 2015, 16:13

Dear Trader,

cAlgo.API provides users the ability to open several positions simultaneously. Please note that we do not provide coding assistance services. We more than glad to assist you with specific questions about cAlgo.API. You also can contact one of our Partners or post a job in Development Jobs section for further coding assistance.


@Spotware

Spotware
25 Jun 2015, 14:57

Dear Trader,

DataSeries is used to represent market price series. Therefore the you cannot set a value in the DataSeries array. However you by default, when you reference an indicator you already pass DataSeries as a parameter. We would like to suggest you to copy the values of DataSeries passed as parameter into an IndicatorDataSeries array and then make modifications into the values.  


@Spotware