Methods
constants
Concatenate / Drop constant(s) to the DataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
append | bool | Concatenate if | required |
values | Array | List/Numpy array of | required |
Returns:
Type | Description |
---|---|
(Series, DataFrame, None) | Depends upon parameters. |
See Also
datetime_ordered
DataFrame DateTime ordered?
Returns:
Type | Description |
---|---|
bool |
|
help
Help!
Parameters:
Name | Type | Description | Default |
---|---|---|---|
s | str | String to search for. Default: | '' |
Returns:
Type | Description |
---|---|
None | TextIO | Opens web browser to relevant Pandas TA website page or prints all search keywords. |
indicators
List indicators.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
as_list | bool | Return as a list. Default: | None |
exclude | ListStr | The passed in list will be excluded from the indicators list. Default: | None |
Returns:
Type | Description |
---|---|
TextIO | ListStr | Prints list or returns a |
last_run
Detailed string of last run time.
Returns:
Type | Description |
---|---|
str | Detailed date and time of the lastest run. |
study
Applies the ta
listed in a Study
.
Other Parameters:
Name | Type | Description |
---|---|---|
chunksize | int | Multiprocessing Pool chunksize. Default: |
cores | int | Number of Multiprocessing cores. Default: |
exclude | ListStr | List of indicator names. Default: |
ordered | bool | Run |
returns | bool | Return the DataFrame. Default: |
timed | bool | Print the process time. Default: |
verbose | bool | More verbose output. Default: |
Multiprocessing
Multiprocessing is not viable or efficient for some cases. Testing is required per case. See Multiprocessing for more information.
ticker
Download Historical ohlcv data as a Pandas DataFrame if yfinance package is installed. It also can run a ta.Study
afterwards.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ticker | str | Any string for a ticker you would use with | None |
period | str | See the yfinance | None |
interval | str | | None |
study | Study | str | After downloading, apply | None |
proxy | dict | Proxy dictionary. Default: | None |
timed | bool | Print download time to stdout. Default: | False |
Returns:
Type | Description |
---|---|
DataFrame | None | ohlcv |