Topics
05 Dec 2014, 00:00
 2732
 1
Replies

admin
13 Nov 2012, 14:50

Yes, it is already in our plans to add it.

 

 


@admin

admin
13 Nov 2012, 12:25

Hello,

 

Currently it is not possible to do a partial close in cAlgo but we will implement this in the future.

 

 

 


@admin

admin
13 Nov 2012, 12:23

We mean for the cAlgo platform for instance "Spotware cAlgo". You may find this in Help->About.

Thanks.

 

 


@admin

admin
13 Nov 2012, 11:41

Could you please tell us the environment you are using while doing this test so that we can expedite our investigation?

 


@admin

admin
13 Nov 2012, 11:18

Hello,

 

It is not possible right now but we will add tick charts in the future and then you will be able to customize it.

 


@admin

admin
13 Nov 2012, 10:46 ( Updated at: 21 Dec 2023, 09:20 )

Hello,

We are planning on providing the actual tick data (actual spread) in the futureThe current backtesting setting options for the spread are Fixed value, Random spread and Current live spread as you can see in the screenshot below.

 


@admin

admin
12 Nov 2012, 16:02

You should be able to obfuscate your code and then use it in another robot as a reference. This way the libraries will not be affected.

We will include obfuscating tools in cAlgo in the future.

 

 


@admin

admin
12 Nov 2012, 14:28

Yes, partial fills are possible.


@admin

admin
12 Nov 2012, 13:57

We will look into it and let you know.

 


@admin

admin
12 Nov 2012, 12:25

RE:
rkokerti said:

Hello Admin,

I solved most of the problem. I've only one open question.

How can I add column: Event (CreatePosition, TakeProfitHit, etc...)

Thanks for your help!

Hello,
 
It is unclear what is the data that you need for this column. The event at which the position is created is OnPositionOpened and the event at which there is a Take Profit Hit is OnPositionClosed (You would need a calculation to verify if it is Take Profit or Stop Loss Hit)
 
 
 
 

@admin

admin
12 Nov 2012, 12:10

Hello,

To get the close price of the last completed bar it would be:

var index = MarketSeries.Close.Count - 1; // the current bar being created

car close = MarketSeries.Close[index - 1]; // the last completed bar's close price

The Gross profit would be _position.GrossProfit

For pips you would need to calculate it according to this:

Sell: Entry price - Ask  -- pips = Math.Round((_position.EntryPrice - Symbol.Ask)/Symbol.PipSize, Symbol.Digits);

Buy: Entry price - Bid -- pips = Math.Round((_position.EntryPrice - Symbol.Bid)/Symbol.PipSize, Symbol.Digits);

note that OnPositionOpened the value of gross profit would be minimal maybe you want to add it to OnPositionClosed.

 

 

 


@admin

admin
12 Nov 2012, 10:20

Hello,

 

At the time being no you cannot. You will be able to use a method to calculate a different timeframe indicator in the future. 

 

 


@admin

admin
08 Nov 2012, 15:17

Since this robot will modify all positions in the account then it will affect all positions even the ones that have been opened (or will be opened) by the still active robots.

If you want the fail-safe robot to only manage the positions opened by the robots that failed then you may do it by writing their position id's to a file on the OnError event and then stop the robot with the Stop() method.

The fail-safe robot can read this file and keep track of the positions modified thus far in a list.

The other robots will also need to implement lists with all active positions, unless each robot opens only one position at a time.

For more information on implementing lists see this example: /forum/calgo-reference-samples/56 and for an example on writing to a file see this: /forum/calgo-reference-samples/54 

Reading from a file is also done in a simple way. We will add an example that reads and writes to a file.

This logic may not allow for much flexibility, since it stops the robot OnError and that does not mean that the robot has failed.
You may implement this according to your desired strategy and ask us for any help that you need.

 

 


@admin

admin
08 Nov 2012, 09:28

Hello,

 

It could be one of many things.  It might be the Output names are not unique or there might be something different.

You may send us the code to investigate.

 


@admin

admin
07 Nov 2012, 18:24

Please try this:

Change this line of code in the ResetPendingOrder method:

 if (pendingOrder.Equals(accountPendingOrder))

to this:

if (accountPendingOrder.Equals(pendingOrder))

 


@admin

admin
07 Nov 2012, 17:53

Thank you, we are investigating and will let you know as soon as we resolve this.

 


@admin

admin
07 Nov 2012, 16:38

Hello,

Can you tell us for which symbols it is happening as well as the error message(s) you are receiving so that we can speed up the investigation?

 

 


@admin

admin
07 Nov 2012, 12:21

In the meantime please remove and re-add the instance of the robot and let us know if it solves the issue.

 


@admin

admin
07 Nov 2012, 12:17

Hello,

 

We have identified the issue and are working on its resolution. 

We apologize for the inconvenience. 

 

Regards

 

 


@admin

admin
07 Nov 2012, 11:06

Hello,

 

Thank you for the kind words as well as your suggestion. We are working on implementing indentification of orders by way of allowing the user to assign a name for them in code. It will be available very soon. Stay tuned!

 


@admin