Skip to content

Commit

Permalink
readme: update function groups example
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjbq7 committed Jan 20, 2024
1 parent 7437389 commit b2c332e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -448,10 +448,14 @@ etc):
import talib

# list of functions
print talib.get_functions()
for name in talib.get_functions():
print(name)

# dict of functions by group
print talib.get_function_groups()
for group, names in talib.get_function_groups():
print(group)
for name in names:
print(name)
```

### Indicator Groups
Expand Down

0 comments on commit b2c332e

Please sign in to comment.