Skip to content

Add get_functions_df and get_functions_grouped_df #72

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add get_functions_df and get_functions_grouped_df
  • Loading branch information
femtotrader committed Jan 7, 2015
commit 27f58de4838ff653a19788e8c9691f30683e74d0
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,16 @@ print talib.get_functions()
print talib.get_function_groups()
```

If Pandas is installed, you can get all the TA functions supported by TA-Lib as a ``DataFrame``:

```python
# DataFrame of functions
print talib.get_functions_df()

# DataFrame of functions by group
print talib.get_functions_grouped_df()
```

### Indicator Groups

* Overlap Studies
Expand Down