using TestLibrary;
namespace TestLibrary
{
public class BasicTemplateLibrary
{
/*
* To use this library; add its namespace at the top of the page:
* using QuantConnect
*
* Then instantiate the class:
* var btl = new BasicTemplateLibrary();
* btl.Add(1,2)
*/
public int Add(int a, int b)
{
return a + b;
}
public int Subtract(int a, int b)
{
return a - b;
}
}
}
namespace QuantConnect.Algorithm.CSharp
{
public class BasicTemplateAlgorithm : QCAlgorithm
{
private Symbol _spy = QuantConnect.Symbol.Create("SPY", SecurityType.Equity, Market.USA);
public override void Initialize()
{
SetStartDate(2013, 10, 07); //Set Start Date
SetEndDate(2013, 10, 11); //Set End Date
SetCash(100000); //Set Strategy Cash
AddEquity("SPY", Resolution.Minute);
}
public override void OnData(Slice data)
{
var btl = new BasicTemplateLibrary();
Debug(btl.Add(1,2));
}
}
}