Topics
16 Nov 2023, 07:42
 1123
 1
15 Nov 2023, 10:36
 2007
 16
Replies

Spotware
16 Jun 2015, 17:25

Dear Trader,

Thank you for noticing this. Our Team will investigate.


@Spotware

Spotware
16 Jun 2015, 17:13

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
16 Jun 2015, 17:12

Dear Trader,

cAlgo does not offer such method. Maybe a user already implemented what you are searching for in an Indicator/cBot and uploaded it in our Website. You can search for an indicator or cBot that contains a similar method that suits you. You can also contact one of our Partners to create you the method or post a job in Development Jobs section.


@Spotware

Spotware
16 Jun 2015, 17:10

Dear Trader,

cAlgo/cTrader needs to be open and connected to Internet and the cBots should be running to be able to execute the orders you would like to be executed.


@Spotware

Spotware
16 Jun 2015, 12:59

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
16 Jun 2015, 12:55

Dear Trader,

Such a difference could be caused by choosing different data modes. (trend bars vs tick data) 


@Spotware

Spotware
16 Jun 2015, 12:50

Dear Trader,

You loop through all Positions labeled with “myLabel” opened in your current account. An example is shown in the API/References section of cTDN website.


@Spotware

Spotware
16 Jun 2015, 12:47

Dear Trader,

ETA stands for estimated time of arrival.


@Spotware

Spotware
16 Jun 2015, 12:45

Dear Trader,

Could you rephrase your question? We are not sure we understand what you mean.


@Spotware

Spotware
16 Jun 2015, 12:45

Dear Trader,

Global variables for robot interaction have not been introduced yet. So there is no official way to coordinate robots running simultaneously. We will inform you as soon as this functionality is available for the users.


@Spotware

Spotware
16 Jun 2015, 12:43

Dear Trader,

Backtesting results must be the same. If not please specify more information about this issue.


@Spotware

Spotware
16 Jun 2015, 12:38

Dear Trader,

It is possible to execute a market order based on the difference of an existing order and the current price in Pips. The following Code Snippet illustrates an example.  

var position = Positions.Find("myLabel");

if (position.Pips > 0) 
{
       ExecuteMarketOrder(TradeType.Buy, Symbol, 10000, "label", 10, 10);
}

 


@Spotware

Spotware
16 Jun 2015, 12:34

Dear Trader,

Could you provide us your Broker name?


@Spotware

Spotware
16 Jun 2015, 09:27

RE: RE:

trend_meanreversion said:

Spotware said:

Dear Trader,

Please send the information to troubleshooting@spotware.com

Hi Spotware team,  i have sent snapshots to you but troubleshooting@spotware.com is not a valid email ID( as i am getting mail delivery message everytime ) so i have sent copy of email to support@spotware.com as well. Please have an urgent look at the issue and resolve it asap . 

Dear Trader,

Could you please specify more details about the mail delivery message error?


@Spotware

Spotware
16 Jun 2015, 09:24

Dear Trader,

Could you please tell us if you were using async methods? 


@Spotware

Spotware
15 Jun 2015, 17:37

Dear Trader,

We will contact you by your cTDN email.

 


@Spotware

Spotware
15 Jun 2015, 15:30

Dear Trader,

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


@Spotware

Spotware
15 Jun 2015, 15:30

Dear Trader,

You can use the function Server.Time instead of the DateTime.Now. It returns the server time when the data was historized.


@Spotware

Spotware
15 Jun 2015, 15:28

Dear Trader,

The error is, that you wrote the OnStart() method with a small letter “onStart()” is not recognized.


@Spotware

Spotware
15 Jun 2015, 15:28

Dear Trader,

The following links may be useful for you:

Referencing Custom Indicators: /api/guides/indicators#el8

HasCrossedAbove function: /api/reference/functions/hascrossedabove-6119

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