Topics
21 Apr 2013, 12:41
 2793
 2
14 Apr 2013, 21:42
 3832
 5
12 Apr 2013, 09:13
 1
 3058
 1
27 Mar 2013, 16:45
 5214
 8
21 Mar 2013, 02:17
 4672
 4
22 Feb 2013, 13:22
 3026
 1
22 Feb 2013, 12:48
 2824
 3
21 Feb 2013, 23:22
 0
 3043
 2
17 Feb 2013, 20:38
 0
 3514
 2
14 Feb 2013, 11:59
 3159
 4
14 Feb 2013, 01:20
 2745
 2
11 Feb 2013, 19:13
 2924
 2
09 Feb 2013, 21:37
 7340
 11
09 Feb 2013, 21:35
 2810
 2
Replies

fullmonte
22 Apr 2013, 13:58

Could this be used to talk to other applications from cAlgo?


@fullmonte

fullmonte
21 Apr 2013, 12:45

RE: Update
fullmonte said:

All within .NET.  Will post a full explanation soon

I have managed to stop this happeneing by always removing and readding the references to the DLLs after each DLL rebuild.


@fullmonte

fullmonte
19 Apr 2013, 14:53

RE: RE:
fullmonte said:
cAlgo_Fanatic said:

Please check the backtesting settings, you may choose which method you would like to use for the spread, fixed value, random or current live spread. If you are not using fixed value the spread will vary.

I did not know that you had different settings.Thanks for this.

same, it was the first I knew. I suggest you make the settings more obvious, this was a huge issue for me and it already had an elegant configuration which I had no idea was there.


@fullmonte

fullmonte
19 Apr 2013, 14:52

RE:
cAlgo_Fanatic said:

We cannot provide an estimate for multi-timeframes at the moment.

Lack of Multi symbols is one of the CAlgos 2 greatest weaknesses, the other being the lack of debug which makes system testing quite a PITA. Rather than having a "flash" implementation why not provide the symbols as least allow 2 different robots to talk to each other as a work around through an interface. That would allow robots to trade baskets with knowledge of the other traders positions and events.


@fullmonte

fullmonte
15 Apr 2013, 21:57

RE:
cAlgo_Fanatic said:

Please check the backtesting settings, you may choose which method you would like to use for the spread, fixed value, random or current live spread. If you are not using fixed value the spread will vary.

I did not know that you had different settings.Thanks for this.


@fullmonte

fullmonte
30 Mar 2013, 21:56

RE:
cAlgo_Fanatic said:

Hello,

Did our previous reply help you resolve this issue? I'm assuming you meant to say month is replaced by hour in your last post.

I am embarrassed but I believe it will fix the problem. Bloody datetime strings drive me mad.


@fullmonte

fullmonte
27 Mar 2013, 17:51

Turns out CAlgo is doing it to any exposed DateTime variable created by the server that is exported. Always the same pattern, month replaced with hour.


@fullmonte

fullmonte
27 Mar 2013, 17:18

 protected override void OnPositionOpened(Position openedPosition)
 {

            Log(openedPosition.EntryTime.ToString("dd/mm/yyyy hh:mm:ss.fff"));

 }

gives you 06/00/2013 07:00:02.500, which is a big of a pain in the arse tbh since need to develop a work around

 

 


@fullmonte

fullmonte
27 Mar 2013, 17:05

OK. I have traced the problem to the Position object in CAlgo only, it does not replicate with other Datetime variables which is wierd.


@fullmonte

fullmonte
27 Mar 2013, 17:00

06/22/2013 08:22:15.000  the pattern is this, you are replacing the months with the minutes s0 3 is replaced with 22 here

06/20/2013 08:20:02.500  and 20 here

If this is intentional I will no longer be using cAlgo. Please confirm what is going on.

 

 

 


@fullmonte

fullmonte
21 Mar 2013, 10:27

So we cannot get access to the cAlgo system dlls for extending to external dlls?


@fullmonte

fullmonte
13 Mar 2013, 13:43

RE:
cAlgo_Development said:

Do you mean  the ability to create Multi-Symbol robots? This feature is not implemented yet, but it's in our nearest plans.

Thats the one. Its the only real concern I have (apart from the lack of debug)


@fullmonte

fullmonte
01 Mar 2013, 16:45

Update

All within .NET.  Will post a full explanation soon


@fullmonte

fullmonte
28 Feb 2013, 13:56

Addin

The issue can be replicated with any addin:

1. Rebuild add.

2. Build Calgo including the referenced DLL.

It appears that CAlgo must be restarted for each referenced DLL build otherwise it crashs when you try and rebuild CAlgo when you build. Tbh the system works very well with addins and I am not massively annoyed with the crashing since it is essentially an unmanaged feature of using CAlgo. It would be nice however to rebuild without having to reboot when using referenced code.


@fullmonte

fullmonte
27 Feb 2013, 15:29

Everytime I build the platform crashes. For every code change the entire platform has to be rebooted. This is not the firs time it has experience such a unstable release. Please sort this out.


@fullmonte

fullmonte
15 Feb 2013, 14:47

Version

Can you please explain how I mightr get access to the latest version of the CAlgo. The current version I have does not work and I understand is redundant

version 1.0.293

 

This is the only version available however from the installer.

F


@fullmonte

fullmonte
12 Feb 2013, 16:12

RE:
fullmonte said:

Today for some reason the Robots have been switching themselves off, with what seems to be no pattern. I have used the software pretty regularly and this seems to be something that has started just today. I have not installed a new version as far as I can tell.

 

Stumped.

 

 

My apologies. A symptom of not being able to debug is that unforced errors can be hard to track down.


@fullmonte

fullmonte
11 Feb 2013, 15:35

RE:
admin said:

Hello,

Currently MarketSeries only exposes the symbol that the instance is attached to. Using multiple currency pairs in cAlgo is currently under development and will be available in the near future.

Regards.

 

I was thinking could you not make an indicator for each symbol and then just refer to each indicator for the currecy pair you need at a given moment as a work around.


@fullmonte