Fixes hard-coded resolution in AddData for Python algorithms

This commit is contained in:
AlexCatarino
2017-08-30 17:59:55 +01:00
parent f2bcad3451
commit d2c144ff1e
+1 -1
View File
@@ -53,7 +53,7 @@ namespace QuantConnect.Algorithm
/// <remarks>Generic type T must implement base data</remarks>
public void AddData(PyObject type, string symbol, Resolution resolution = Resolution.Minute)
{
AddData(type, symbol, Resolution.Minute, TimeZones.NewYork, false, 1m);
AddData(type, symbol, resolution, TimeZones.NewYork, false, 1m);
}