Sets the close values. The 'close' property is an array that may be specified as a tuple, list, numpy array, or pandas Series Returns ------- numpy.ndarray
(self)
| 66 | |
| 67 | @property |
| 68 | def close(self): |
| 69 | """ |
| 70 | Sets the close values. |
| 71 | |
| 72 | The 'close' property is an array that may be specified as a tuple, |
| 73 | list, numpy array, or pandas Series |
| 74 | |
| 75 | Returns |
| 76 | ------- |
| 77 | numpy.ndarray |
| 78 | """ |
| 79 | return self["close"] |
| 80 | |
| 81 | @close.setter |
| 82 | def close(self, val): |
no outgoing calls
no test coverage detected