Topics
30 Sep 2016, 17:13
 2497
 1
03 May 2016, 15:25
 2540
 4
22 Dec 2015, 16:23
 2589
 5
21 Jul 2015, 17:14
 3589
 4
16 May 2015, 04:36
 1
 2839
 5
29 Apr 2015, 02:43
 3761
 3
10 Mar 2015, 02:21
 2758
 2
Replies

.ics
24 May 2015, 14:55

RE:

sitsky said:

Are there any shortcut keys for calgo?? Specifically to start a robot...??

These are some good enhancements! Please check if this proposal is already present on http://vote.spotware.com.

If not, add it so that this can get some votes for implementation. Good job!


@.ics

.ics
15 May 2015, 02:29

RE:
var maxHigh = MarketSeries.High.Maximum(periods); 
var minLow = MarketSeries.Low.Minimum(periods); 

@.ics

.ics
09 May 2015, 12:27

This is true.
cAlgo/cTrader is a platform with a lot of potential. But it's succes will be determined by the expansion of it's userbase and the activeness of it's ecoclimate.
Therefor, providing qualitative support by answering threads of any kind on a daily basis is key in this succes.


@.ics

.ics
01 May 2015, 19:29

Hi,

Check out the function "private void OnPositionsClosed(PositionClosedEventArgs args)" in "Sample Martingale cBot".

It contains all the code you need.

Greetings


@.ics

.ics
01 May 2015, 12:27

Anyone?
 


@.ics

.ics
15 Mar 2015, 05:26

RE:

Hyperloop said:

It's a lambda expression. 

http://www.dotnetperls.com/lambda

Thank you Hyperloop.


@.ics

.ics
13 Mar 2015, 03:01

RE:

Spotware said:

You can use the following code snippet:

var shortPositionsCount = Positions.Count(p => p.TradeType == TradeType.Sell);
var longPositionsCount = Positions.Count(p => p.TradeType == TradeType.Buy);

 

Hi spotware,

Could you please explain what this is below? Is this some kind of filter or query? It seems very interesting...

p => p.TradeType == TradeType.Sell

Thanks in advance.


@.ics