- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Comparing changes
Open a pull request
base repository: kernc/backtesting.py
base: 0.5.0
head repository: kernc/backtesting.py
compare: 0.6.0
Commits on Jan 21, 2025
-
MNT: Set package name according to PEP-625
PyPI complained over email. https://peps.python.org/pep-0625/
Configuration menu - View commit details
-
Copy full SHA for 9243738 - Browse repository at this point
Copy the full SHA 9243738View commit details -
ENH: Add Backtest(spread=), change Backtest(commission=)
`commission=` is now applied twice as common with brokers. `spread=` takes the role `commission=` had previously.
Configuration menu - View commit details
-
Copy full SHA for 8fbb902 - Browse repository at this point
Copy the full SHA 8fbb902View commit details -
Configuration menu - View commit details
-
Copy full SHA for c0a266c - Browse repository at this point
Copy the full SHA c0a266cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 126953f - Browse repository at this point
Copy the full SHA 126953fView commit details -
REF: Reword assertion condition: cash > 0 (#962)
more readable Co-authored-by: Juice Man <92176188+ElPettego@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e92763b - Browse repository at this point
Copy the full SHA e92763bView commit details -
DOC: Add return type annotations for buy and sell methods (#975)
* ENH: Explicitly import annotations everywhere Type annotations are now explicitly imported from `__future__` to allow forward references and postponed evaluation (faster import time). See PEP 563 for details. * ENH: add return type annotations for `buy`/`sell` The return type annotations are now added for `buy` and `sell` methods. The documentation is updated to mention that the `Order` is returned. Now it should be crystal clear how to cancel a non-executed order. This should address #957.
Configuration menu - View commit details
-
Copy full SHA for eefff87 - Browse repository at this point
Copy the full SHA eefff87View commit details -
BUG: Allow multiple names for vector indicators (#382) (#980)
* BUG: Allow multiple names for vector indicators (#382) Previously we only allowed one name per vector indicator: def _my_indicator(open, close): return tuple( _my_indicator_one(open, close), _my_indicator_two(open, close), ) self.I( _my_indicator, # One name is used to describe two values name="My Indicator", self.data.Open, self.data.Close ) Now, the user can supply two (or more) names to annotate each value individually. The names will be shown in the plot legend. The following is now valid: self.I( _my_indicator, # Two names can now be passed name=["My Indicator One", "My Indicator Two"], self.data.Open, self.data.Close )
Configuration menu - View commit details
-
Copy full SHA for 01551af - Browse repository at this point
Copy the full SHA 01551afView commit details
Commits on Jan 22, 2025
-
ENH: Add columns SL and TP to trade_df stats (#1039)
* Added TP and SL into stats file. * Update column order and add test
Configuration menu - View commit details
-
Copy full SHA for a58e899 - Browse repository at this point
Copy the full SHA a58e899View commit details -
Configuration menu - View commit details
-
Copy full SHA for 78f5167 - Browse repository at this point
Copy the full SHA 78f5167View commit details -
Configuration menu - View commit details
-
Copy full SHA for dfcab45 - Browse repository at this point
Copy the full SHA dfcab45View commit details -
ENH: Add entry/exit indicator values to
stats['trades']
(#1116)* Updated _trades dataframe with 1D Indicator variables for Entry and Exit bars * Shorter form, vectorized over index * Remove Strategy.get_indicators_dataframe() public helper method * Account for multi-dim indicators and/or no trades --------- Co-authored-by: kernc <kerncece@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4b829b7 - Browse repository at this point
Copy the full SHA 4b829b7View commit details -
DOC: Annotate
lib.random_ohlc_data()
as a Generator (#1162)* Update lib.py Replacing pd.DataFrame with Generator[pd.DataFrame, None, None] The reason for replacing pd.DataFrame with Generator[pd.DataFrame, None, None] is to better reflect the actual output type of the random_ohlc_data function. Here are the specific reasons and benefits: Reasons: Accuracy of Output Type: The original code declared that the function returns a pd.DataFrame, but in reality, the function is a generator that yields multiple pd.DataFrame objects. Using Generator more accurately describes the function's behavior. Clarity of Type Hinting: Using Generator allows the code readers and users to more easily understand that the function returns a generator rather than a single DataFrame. This helps prevent potential misunderstandings and misuse. Benefits: Performance Improvement: Generators can generate data on-demand rather than generating all data at once, saving memory and improving performance, especially when dealing with large datasets. Lazy Evaluation: Generators allow for lazy evaluation, meaning data frames are only generated when needed. This can improve the efficiency and responsiveness of the code. Better Code Maintainability: Explicitly using generators makes the intent of the code clearer, enhancing readability and maintainability, making it easier for other developers to understand and maintain the code. * Import typing.Generator
Configuration menu - View commit details
-
Copy full SHA for 5a59c4e - Browse repository at this point
Copy the full SHA 5a59c4eView commit details -
BUG: Pass integers to Bokeh RGB constructor (#1164)
* roudning error in RGB functionality * Update backtesting/_plotting.py
Configuration menu - View commit details
-
Copy full SHA for b2cd457 - Browse repository at this point
Copy the full SHA b2cd457View commit details -
DOC: Add "AutoTrader" to alternatives.md (#696)
This commit adds AutoTrader to the alternatives document with an associated description and links to relevant backtesting documentation. Co-authored-by: Jack McPherson <jack@bluefootresearch.com>
Configuration menu - View commit details
-
Copy full SHA for 023ce7e - Browse repository at this point
Copy the full SHA 023ce7eView commit details -
DOC: Add "LiuAlgoTrader" to alternatives.md (#1091)
* add LiuAlgoTrader to alts * Update doc/alternatives.md
Configuration menu - View commit details
-
Copy full SHA for 903b578 - Browse repository at this point
Copy the full SHA 903b578View commit details -
DOC: Add "Nautilus Trader" to alternatives.md (#1175)
added Nautilus Trader to list of backtesting alternatives (a very good open-source backtester project/platform)
Configuration menu - View commit details
-
Copy full SHA for 65d1437 - Browse repository at this point
Copy the full SHA 65d1437View commit details
Commits on Jan 28, 2025
-
Configuration menu - View commit details
-
Copy full SHA for d1d26f7 - Browse repository at this point
Copy the full SHA d1d26f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 44fcb02 - Browse repository at this point
Copy the full SHA 44fcb02View commit details
Commits on Jan 30, 2025
-
ENH: Optionally finalize trades at the end of backtest run (#393)
Configuration menu - View commit details
-
Copy full SHA for ae3d69f - Browse repository at this point
Copy the full SHA ae3d69fView commit details -
BUG: Reduce optimization memory footprint (#884)
* Reduce memory footprint Memoizing the whole stats made copies of contained `_strategy`, which held duplicate references at least to whole data ... Now we memoize just the maximization float value.
Configuration menu - View commit details
-
Copy full SHA for 925006f - Browse repository at this point
Copy the full SHA 925006fView commit details
Commits on Feb 1, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 01e0a5d - Browse repository at this point
Copy the full SHA 01e0a5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5c8a0af - Browse repository at this point
Copy the full SHA 5c8a0afView commit details
Commits on Feb 2, 2025
-
Configuration menu - View commit details
-
Copy full SHA for d4ec0ba - Browse repository at this point
Copy the full SHA d4ec0baView commit details -
Configuration menu - View commit details
-
Copy full SHA for a08eb0f - Browse repository at this point
Copy the full SHA a08eb0fView commit details
Commits on Feb 4, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 2b89c4a - Browse repository at this point
Copy the full SHA 2b89c4aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 21907e9 - Browse repository at this point
Copy the full SHA 21907e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5197b44 - Browse repository at this point
Copy the full SHA 5197b44View commit details -
Configuration menu - View commit details
-
Copy full SHA for fbbb24a - Browse repository at this point
Copy the full SHA fbbb24aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 420232f - Browse repository at this point
Copy the full SHA 420232fView commit details -
Configuration menu - View commit details
-
Copy full SHA for f0e12c6 - Browse repository at this point
Copy the full SHA f0e12c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0978284 - Browse repository at this point
Copy the full SHA 0978284View commit details -
Configuration menu - View commit details
-
Copy full SHA for 881ddd0 - Browse repository at this point
Copy the full SHA 881ddd0View commit details -
Configuration menu - View commit details
-
Copy full SHA for a3ba8a7 - Browse repository at this point
Copy the full SHA a3ba8a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for d323fa6 - Browse repository at this point
Copy the full SHA d323fa6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b88e81 - Browse repository at this point
Copy the full SHA 8b88e81View commit details -
Configuration menu - View commit details
-
Copy full SHA for 17131a3 - Browse repository at this point
Copy the full SHA 17131a3View commit details -
BUG: Indicator warm-up period shouldn't consider scatter=True indicators
Fixes `backtesting.lib.SignalStrategy` use. Fixes #495
Configuration menu - View commit details
-
Copy full SHA for fd0bdb0 - Browse repository at this point
Copy the full SHA fd0bdb0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b18a06 - Browse repository at this point
Copy the full SHA 2b18a06View commit details
There are no files selected for viewing
Large diffs are not rendered by default.