I am new to C# and was wondering how to using the Libraries in the QuantConnect Platform. I looked at the BasicTemplateLibrary but am having problems with the "using" statement.
I tried these which didn't work:
using QuantConnect.Data.BasicTemplateLibrary;
using QuantConnect.BasicTemplateLibrary;
using QuantConnect.API.BasicTemplateLibrary;
namespace QuantConnect
{
.............
var btl = new BasicTemplateLibrary();
btl.Add(1,2)
Thanks