Amidey,
That SDK does not work the best way is to use the amibroker SDK plugin and make a call to any function
Ex.
2.4.3 Calling internal AmiBroker functions
You can call internal AmiBroker function using CallFunction() method of site interface. To do so you should prepare argument table first. Argument table should define all parameters needed by the function you are calling (even the default ones).
AmiVar args[ 2 ];
args[ 0 ].type = VAR_FLOAT;
args[ 0 ].val = 12;
args[ 1 ].type = VAR_FLOAT;
args[ 1 ].val = 26;
gSite.CallFunction("macd", 2, args );
There also is a C# SDK that will do what you want for personnel use only
--
You received this message because you are subscribed to the Google Groups "AmiBroker Developers Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to amidev+un...@googlegroups.com.
Visit this group at https://groups.google.com/group/amidev.