Skip to content
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

Supertrend indicator #212

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github: [bukosabino]
github: [ bukosabino ]
tidelift: pypi/ta
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ The library has implemented 42 indicators:
* Ichimoku Kinkō Hyō (Ichimoku)
* Parabolic Stop And Reverse (Parabolic SAR)
* Schaff Trend Cycle (STC)
* SuperTrend (ST)

#### Momentum

Expand Down
7 changes: 0 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import sys

sys.path.append("..") # Adds higher directory to python modules path.
from ta import *

# -- Project information -----------------------------------------------------

Expand All @@ -32,7 +31,6 @@
# The full version, including alpha/beta/rc tags
release = "0.1.4"


# -- General configuration ---------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
Expand Down Expand Up @@ -78,7 +76,6 @@
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = "sphinx"


# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
Expand Down Expand Up @@ -113,7 +110,6 @@
# Output file base name for HTML help builder.
htmlhelp_basename = "TechnicalAnalysisLibraryinPythondoc"


# -- Options for LaTeX output ------------------------------------------------

latex_elements = {
Expand Down Expand Up @@ -144,7 +140,6 @@
),
]


# -- Options for manual page output ------------------------------------------

# One entry per manual page. List of tuples
Expand All @@ -159,7 +154,6 @@
)
]


# -- Options for Texinfo output ----------------------------------------------

# Grouping the document tree into Texinfo files. List of tuples
Expand All @@ -177,5 +171,4 @@
),
]


# -- Extension configuration -------------------------------------------------
6 changes: 3 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. Technical Analysis Library in Python documentation master file, created by
sphinx-quickstart on Tue Apr 10 15:47:09 2018.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
sphinx-quickstart on Tue Apr 10 15:47:09 2018.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.

Welcome to Technical Analysis Library in Python's documentation!
================================================================
Expand Down
1 change: 1 addition & 0 deletions examples_to_use/all_features_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
this library.
"""
import pandas as pd

import ta

# Load data
Expand Down
1 change: 1 addition & 0 deletions examples_to_use/bollinger_band_features_example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""This is a example adding bollinger band features.
"""
import pandas as pd

import ta

# Load data
Expand Down
1 change: 1 addition & 0 deletions examples_to_use/roc.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""This is a example adding volume features.
"""
import pandas as pd

import ta

# Load data
Expand Down
1 change: 1 addition & 0 deletions examples_to_use/volume_features_example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""This is a example adding volume features.
"""
import pandas as pd

import ta

# Load data
Expand Down
8 changes: 0 additions & 8 deletions ta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,6 @@
.. moduleauthor:: Dario Lopez Padial (Bukosabino)

"""
from ta.wrapper import (
add_all_ta_features,
add_momentum_ta,
add_others_ta,
add_trend_ta,
add_volatility_ta,
add_volume_ta,
)

__all__ = [
"add_all_ta_features",
Expand Down
Loading