 |
QuantShare
2011-02-01 07:10:14
0
|
|
Best Answer
C# of the Framework version 2.0 is used. You can call any C# functions.
The C# code you type in money management scripts, composites, global scripts... is internally inserted into a function. This function is then called by QuantShare.
You can create external functions and classes by defining them after "#functions#" keyword.
Example of a Global Script (Tools -> Script Editor)
AA aa = new AA();
MessageBox.Show(aa.a);
#functions#
public class AA
{
public string a = "test";
}
|
|