Skip to content
#

trading

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

Lean
AlexCatarino
AlexCatarino commented Jun 3, 2022

Expected Behavior

LEAN provides an example of IndicatorVolatilityModel for documentation.

Actual Behavior

There is no example for this feature.

Potential Solution

Adds an example and/or unit tests.

Checklist

  • I have completely filled out this template
  • I have confirmed that this issue exists on the current master branch
  • I have confirmed that t
up for grabs testing good first issue
ta
markdregan
markdregan commented Jan 7, 2022

Wondering if this already exists? If not happy to create if valuable.

I'm looking for a mapping from the column names outputted, to the actual technical indicator it represents.

examples:
momentum_ao == "Momentum, Awesome Oscilator"
momentum_kama == "Momentum, Kaufman’s Adaptive Moving Average (KAMA)"

Can help quickly grasp what the features represent without having to refer back to do

mlfinlab
Superalgos
teehanming
teehanming commented Jan 26, 2022

Is your feature request related to a problem? Please describe.
Ugly title for asset new asset. The asset node gets New Asset title after entering the codename.

Describe the solution you'd like
auto rename by referring the codeName --> iconName
set iconName as variable.

Describe alternatives you've considered

Additional context
Add any other context or screenshots

improvement good first issue Web App UI
gam-phon
gam-phon commented Jul 3, 2022

Ulcer Index

in development version: I am ignoring everget

highest_close = close.rolling(length).max()
downside = scalar * (close - highest_close)
downside /= highest_close
d2 = downside * downside
_ui = d2.rolling(length).sum()
ui = np.sqrt(_ui / length)

In development version, sometime I am getting RuntimeWarning: invalid value encountered in sqrt after searching abo

bug help wanted good first issue
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

bug good first issue Hacktoberfest

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