Skip to content

Commit

Permalink
Merge branch 'try-fetch-pandas_ta-message' of git://github.com/freque…
Browse files Browse the repository at this point in the history
…ntcat/NostalgiaForInfinity into frequentcat-try-fetch-pandas_ta-message
  • Loading branch information
iterativv committed Aug 18, 2021
2 parents 53c59c2 + ed3f82d commit e8ee78d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion NostalgiaForInfinityNext.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,19 @@
from datetime import datetime, timedelta
from technical.util import resample_to_interval, resampled_merge
from technical.indicators import zema, VIDYA, ichimoku
import pandas_ta as pta


log = logging.getLogger(__name__)


try:
import pandas_ta as pta
except ImportError:
log.error("IMPORTANT - please install the pandas_ta python module which is needed for this strategy. If you're running Docker, add RUN pip install pandas_ta to your Dockerfile, otherwise run: pip install pandas_ta")
else:
log.info("pandas_ta successfully imported")


###########################################################################################################
## NostalgiaForInfinityV8 by iterativ ##
## ##
Expand Down

0 comments on commit e8ee78d

Please sign in to comment.