Topics
Replies
hichem
15 Mar 2013, 18:05
RE:
Hello everybody.
Can you please advise me how can I use multiple instances of my bot, driven by one core logic? The idea is to use multiple orders at the same time, and possibly, with multiple currencies (that's less important). Do I need to create instances and call them within the same namespace? I need to control the execution of multiple instances from one place, does anyone have any Ideas? At least, I need them to share data.
I tried to add another class to the same file (and namespace) and use it with a callback on creation
//within core logic
myClass myobj = new myClass(this);
myobj.showSome(); //outside the robot public class myClass : myRobot { myRobot mainRobot; public myClass(myRobot r) { mainRobot = r; }
public void showSome() { Print("This is a data from parent {0}", mainRobot.sampleInt)}
//public int sampleInt is initialized and available }
but faced a null reference exception.
I tried also to pass reference links but it didn't work for me.
Hello,
What are you trying to accomplish is possible but I don't think you are using the proper way to do it.
The way cAlgo functions doesn't not allow you to make Robots visible to each other. cAlgo uses the cSharpCodeProvider class to compile the Robot class into an assembly then load that assembly at runtimme then executes it. By doing that each Robot will be wrapped in a seperate domain which makes it unaccessible to other classes.
And this mechanism is necessery for proper initialisation and isolation of the robot.
To make robots share data you should make some sort of an interprocess communication between them. That way one robot can expose his properties so that other robots can retrieve them.
I have created a Library to do that. You can download it for free at www.scyware.com/download and for getting you started http://scyware.com/help-robotlink/
@hichem
hichem
22 Feb 2013, 16:30
RE:
I have built an extension to CAlgo which will easily allow users to work with cAlgo and build their own analytics and talk to a Database. Should be available for commercial release in about 8 weeks once fully tested and packaged.
Designed to embrace all the good things about cAlgo and it's trading architecture while allowing you to build models using tools and architecture with access to prebuilt analytics.
I would like to communicate with you in private. Can I have your email please. It's for business oppurtunties.
Cheers
@hichem
hichem
17 Feb 2013, 20:18
RE: compiling to C#
2. Compiling the C# code;
we compile the code in order to have the .net component, as result we will have the 2 following dll
- simpleA.dll
- simpleANative.dll
now the idea will be to find a way to import it in cAlgo, and to use it in an cBot.
Of course several prerequies have to be meet : matlab or the MCR have to be install... other prerequises we will find when implementning, you know as this kind of thing is.
Hello,
To add a reference please use the "Add Reference" button on the top menu next to build. You may then locate the dll in your file system and add to your robot/indicator.
@hichem
hichem
17 Feb 2013, 12:06
RE:
Dear all,
I am opening this thread as a try to insert MATLAB algorigm in cTrader / cAlgo.
please, you inside/comments and observation are welcome
What are you trying to achieve ?
You want to reimplement an algorithm written in Matlab in cAlgo with C# ?
You want to communicate data from cAlgo to MATLAB then back to cAlgo ?
@hichem
hichem
12 Feb 2013, 10:20
RE:
If i am attaching my robot to the EURUSD symbol and i want to get the last tick for the USDDKK at same time... I couldnot find any such function in the API that will help me do so... Please advice .
Here is a tutorial on how to do that using a library called RobotLink :
@hichem
hichem
11 Feb 2013, 11:37
RE: RE: Urgent need of this feature
bsunilsemwal said:Please update the status on this.
I'm developing a quick solution for this feature.
The solution will be an inter robot/indicator communication channel based on events.
Hopefully this will be done by Monday. will be working on it this weekend.
Stay Tuned.
There is a library i discovered for creating multitimeframe and multicurrency robots : www.scyware.com
@hichem
hichem
11 Feb 2013, 09:21
RE:
I am going to look at this tonight. Want to trade of GBPUSD but also look at other currencies for correlation effects. I assume MarketSeries exposes the other currency pairs? Please confirm.
Actually that is not possible for the moment in cAlgo.
There is a 3rd-party framework that does that : http://scyware.com/
@hichem
hichem
26 Jan 2013, 08:38
RE:
You can get more great robots on the downloads section of our website.
Happy hunting
I have downloaded the new ARTEMIS eurusd ROBOT. It throws an error when trying to start it.
I downloaded the file more than once. I think the .algo file is corrupted.
@hichem
hichem
19 Jan 2013, 08:43
( Updated at: 21 Dec 2023, 09:20 )
RE: RE: sma
admin said:You can use the build in Indicator "SimpleMovingAverage"
private SimpleMovingAverage _simpleMovingAverage1; private SimpleMovingAverage _simpleMovingAverage2; private SimpleMovingAverage _simpleMovingAverage3; // ... etc. protected override void Initialize() { _simpleMovingAverage1 = Indicators.SimpleMovingAverage(Source, Period1); _simpleMovingAverage2 = Indicators.SimpleMovingAverage(Source, Period2); _simpleMovingAverage3 = Indicators.SimpleMovingAverage(Source, Period3); //...etc } public override void Calculate(int index) { Result[index] = _simpleMovingAverage1.Result[index]; Result2[index] = _simpleMovingAverage2.Result[index]; //...etc }See more examples with build in Indicators at the API Reference
Thanks for getting back to me, I've put the changes in but 1 error has come up
using System;
using cAlgo.API;
using cAlgo.API.Indicators;
namespace cAlgo.Indicators
{
[Indicator(IsOverlay = true)]
public class sma8 : Indicator
{
[Parameter]
public DataSeries Source { get; set; }
private SimpleMovingAverage _simpleMovingAverage1;
private SimpleMovingAverage _simpleMovingAverage2;
private SimpleMovingAverage _simpleMovingAverage3;
protected override void Initialize()
{
_simpleMovingAverage1 = Indicators.SimpleMovingAverage(Source, Period1);
_simpleMovingAverage2 = Indicators.SimpleMovingAverage(Source, Period2);
_simpleMovingAverage3 = Indicators.SimpleMovingAverage(Source, Period3);
}
public override void Calculate(int index)
{
Result[index] = _simpleMovingAverage1.Result[index];
Result2[index] = _simpleMovingAverage2.Result[index];
Result2[index] = _simpleMovingAverage3.Result[index];
}
public override void Calculate(int index)
{
double sum = 0.0;
for (int i = index - Periods + 1; i <= index; i++)
{
sum += Source[i];
}
Result[index] = sum / Periods;
}
}
}
You implement the Calculate() method twice. You should remove this bloc of code:
public override void Calculate(int index) { double sum = 0.0; for (int i = index - Periods + 1; i <= index; i++) { sum += Source[i]; } Result[index] = sum / Periods; }
@hichem
hichem
17 Jan 2013, 14:27
RE:
Hi
It would be nice if the commercial offerings and commercial post in general that are posted in the other forums could be moved to a forum topic of their own so the forums don't get cluttered with all kinds of "infomercials".
regards,
Zenner
I agree
@hichem
hichem
16 Jan 2013, 08:26
RE:
The cAlgo installer has no option to specify the destination folder -- a developer is able to do better decisions regarding the usage of the root drive, or an SSD.
The cAlgo installer has created 7(!) different folders in 4 different locations -- this is closer to spaming, then to a user friendly installer.
Neither the default destination folder nor the other folders are documented.
the cAlgo platform uses the Clickonce installer technology. It is not spamming it is a deployment technology from Microsoft.
Here is an ov erview of the Clickonce installer.
http://msdn.microsoft.com/en-us/library/142dbbz4(v=vs.90).aspx
@hichem
hichem
09 Jan 2013, 16:19
RE:
Thank you for the suggestion. If you need a horizontal line it is easily implemented by either using the Levels attribute for indicators or setting a constant value to an Outpout Indicator Result, e.g.
[Output("Main")] public IndicatorDataSeries Result { get; set; } public override void Calculate(int index) { Result[index] = 1; }
Thank you for your reply.
Yes it is ok for drawing a horizontal line. My suggestion was for drawing other forms of line such as trnd lines or vertical lines dynamically as Chart objects
@hichem
hichem
04 Apr 2013, 10:51
RE:
Hello,
What is the signification of 10000 when calculating the volume ?
How to calculate the equivalent Volume for a lot size = 5?
@hichem