zipline.protocol.Order

Here are the examples of the python api zipline.protocol.Order taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

Example 1

Project: zipline Source File: order.py
    def to_api_obj(self):
        pydict = self.to_dict()
        obj = zp.Order(initial_values=pydict)
        return obj