trading
Here are 2,335 public repositories matching this topic...
-
Updated
Nov 18, 2021 - C++
-
Updated
Dec 23, 2020 - Python
-
Updated
Nov 2, 2021 - Python
-
Updated
Nov 16, 2021 - Jupyter Notebook
-
Updated
Nov 18, 2021 - C#
-
Updated
Nov 18, 2021 - TypeScript
-
Updated
Oct 19, 2021 - Python
-
Updated
Nov 20, 2021 - Python
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
-
Updated
Nov 18, 2021 - C++
-
Updated
Feb 17, 2021
-
Updated
Sep 22, 2021 - Python
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
-
Updated
Nov 12, 2021 - JavaScript
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
MACD is not working
macd = ta.macd(data['close'], fast=12, slow=26, signal=9, talib=True, offset=None)
Output is missing
-
Updated
Sep 25, 2021 - Python
-
Updated
Nov 20, 2021 - Python
-
Updated
Nov 7, 2021 - Go
-
Updated
Jun 10, 2021 - Python
-
Updated
Nov 17, 2021 - Python
-
Updated
Oct 5, 2021 - JavaScript
-
Updated
Oct 9, 2021 - Python
-
Updated
Aug 13, 2021 - Python
-
Updated
Oct 19, 2021 - Python
Improve this page
Add a description, image, and links to the trading topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the trading topic, visit your repo's landing page and select "manage topics."
According to @rspadim, functions in
entropy.pycould use numpy array instead of strings, as it's better to numba.Guide on how to implement this is available in the comments in PR #311 .