Hi,
this part of code works in Zipline, not in Quantopian (AttributeError: 'NoneType' object has no attribute 'get_history')
context.parameterA = 3
pricesA = history(context.parameterA, '1d', 'price')
In Qunatopian I must write parameter directly into like pricesA = history(3, '1d', 'price')
Thanks for help
Peter