Adds test for new Plot overload

This text is ignore since Travis does have pythonnet installed.
This commit is contained in:
AlexCatarino
2018-02-27 22:11:07 +00:00
parent 0ea19b0558
commit bd18dfc2f8
4 changed files with 90 additions and 1 deletions
+1 -1
View File
@@ -381,7 +381,7 @@ namespace QuantConnect.Algorithm
using (Py.GIL())
{
var value = ((dynamic)pyObject).Current.Value;
Plot(series, value);
Plot(series, (decimal)value);
}
}