96d47ab192
It got replace by `custom data` in the case that it wasn't there.
67 lines
2.6 KiB
C#
67 lines
2.6 KiB
C#
/*
|
|
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
|
|
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
using System;
|
|
using QuantConnect.Data.Custom;
|
|
using QuantConnect.Indicators;
|
|
|
|
namespace QuantConnect.Algorithm.CSharp
|
|
{
|
|
/// <summary>
|
|
/// Using the underlying dynamic data class "Quandl" QuantConnect take care of the data
|
|
/// importing and definition for you. Simply point QuantConnect to the Quandl Short Code.
|
|
/// The Quandl object has properties which match the spreadsheet headers.
|
|
/// If you have multiple quandl streams look at data.Symbol to distinguish them.
|
|
/// </summary>
|
|
/// <meta name="tag" content="custom data" />
|
|
/// <meta name="tag" content="using data" />
|
|
/// <meta name="tag" content="quandl" />
|
|
public class QuandlImporterAlgorithm : QCAlgorithm
|
|
{
|
|
private SimpleMovingAverage _sma;
|
|
string _quandlCode = "YAHOO/INDEX_SPY";
|
|
|
|
/// Initialize the data and resolution you require for your strategy:
|
|
public override void Initialize()
|
|
{
|
|
//Start and End Date range for the backtest:
|
|
SetStartDate(2013, 1, 1);
|
|
SetEndDate(DateTime.Now.Date.AddDays(-1));
|
|
|
|
//Cash allocation
|
|
SetCash(25000);
|
|
|
|
//Add Generic Quandl Data:
|
|
AddData<Quandl>(_quandlCode, Resolution.Daily);
|
|
|
|
_sma = SMA(_quandlCode, 14);
|
|
}
|
|
|
|
/// Data Event Handler: New data arrives here. "TradeBars" type is a dictionary of strings so you can access it by symbol
|
|
public void OnData(Quandl data)
|
|
{
|
|
if (!Portfolio.HoldStock)
|
|
{
|
|
//Order function places trades: enter the string symbol and the quantity you want:
|
|
SetHoldings(_quandlCode, 1);
|
|
|
|
//Debug sends messages to the user console: "Time" is the algorithm time keeper object
|
|
Debug("Purchased " + _quandlCode + " >> " + Time.ToShortDateString());
|
|
}
|
|
|
|
Plot("SPY", _sma);
|
|
}
|
|
}
|
|
} |