It's quite easy to integrate cAlgo with VS, you can use one of two options
Option 1
1. Create a library project in VS
2. Add cAlgo dlls as references
3. Create a new Indicator/Bot in cAlgo
4. Go back to VS and add newly created indicator file using Add As Link
Now you can code and compile in VS during development and then build and run in cAlgo.
Option 2
Same as above, with the difference is that you need to create and build an indi in VS, then create a cAlgo indi that would call indi created in VS. Using this method you can later attach VS to cAlgo process and debug the code.
marekfx
03 Mar 2014, 22:36
It's quite easy to integrate cAlgo with VS, you can use one of two options
Option 1
1. Create a library project in VS
2. Add cAlgo dlls as references
3. Create a new Indicator/Bot in cAlgo
4. Go back to VS and add newly created indicator file using Add As Link
Now you can code and compile in VS during development and then build and run in cAlgo.
Option 2
Same as above, with the difference is that you need to create and build an indi in VS, then create a cAlgo indi that would call indi created in VS. Using this method you can later attach VS to cAlgo process and debug the code.
@marekfx