Extending Equilla
Tradesignal offers two ways of extending the equilla programming language.
C-API Extensions
C-API extensions are supported for backwards compatibility. They work by exporting functions from dlls that are placed in a special folder. These functions can be referenced from equilla using the
Import statement. For a detailed documentation read the article
C-API Extensions.
COM-API Extensions
These Extensions have been introduced with Tradesignal 6.3 and are the preferred way of extending equilla. You can implement these extensions using programming languages like C#, C++ or any other language that can output COM compatible dlls. COM Extensions allow an
Object style syntax to access the implemented methods. For a detailed documentation read the article
COM-API Extensions.