Sets the open values. The 'open' property is an array that may be specified as a tuple, list, numpy array, or pandas Series Returns ------- numpy.ndarray
(self)
| 685 | |
| 686 | @property |
| 687 | def open(self): |
| 688 | """ |
| 689 | Sets the open values. |
| 690 | |
| 691 | The 'open' property is an array that may be specified as a tuple, |
| 692 | list, numpy array, or pandas Series |
| 693 | |
| 694 | Returns |
| 695 | ------- |
| 696 | numpy.ndarray |
| 697 | """ |
| 698 | return self["open"] |
| 699 | |
| 700 | @open.setter |
| 701 | def open(self, val): |
no outgoing calls
no test coverage detected