Skip to content
#

trading

Here are 2,269 public repositories matching this topic...

ta
brightening-eyes
brightening-eyes commented Aug 22, 2020

hi,
if possible, please add these indicators as well:
TDI (Traders Dynamic Index)
chandelier exit
pivot points
BOP (balance of power)
CTM (Chande trend meter)
Coppock Curve
Correlation Coefficient
PMO (DecisionPoint Price Momentum Oscillator)
Ulcer Index
most of them except TDI are available on stockcharts.com
thanks

Superalgos
WenceslaoGrillo
WenceslaoGrillo commented May 29, 2020

Some suggestions to make it easier to run the backend without the front end. Some of these suggestions might be *ix only:

  • a command line parameter to indicate that the back end should start with everything that is pending without waiting for a front end to be available in the browser.
  • some instruction to make it work as a daemon (Linux) or service (Windows) to gain independence from the te
backtesting.py
zillionare
zillionare commented Apr 30, 2021

this is how Buy & Hold Return is calculated:

        c = data.Close.values
        s.loc['Buy & Hold Return [%]'] = (c[-1] - c[0]) / c[0] * 100  # long-only return

so it's calced use day one and the day last.

Expected Behavior

Buy & Hold Return is used for compare with strategy gain. Therefore, I guess they should started at same time, since the strategy get enough data to w

jhleong
jhleong commented Oct 13, 2021

Which version are you running? The lastest version is on Github. Pip is for major releases.

import pandas_ta as ta
print(ta.version)

0.3.14b0

Upgrade.

$ pip install -U git+https://github.com/twopirllc/pandas-ta

Describe the bug
Possible coding error at line 45 at pandas-ta/pandas_ta/volatility/bbands.py

        percent = bandwidth.shif

Improve this page

Add a description, image, and links to the trading topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the trading topic, visit your repo's landing page and select "manage topics."

Learn more