-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid daily aggregation of OHLC data with timezone/datetime offset #1002
Comments
In Equity.csv, the first change occurs:
In EquityD.csv, this shows as:
which I guess is reasonable since the two dates match. Can you use: df.index = df.index.tz_convert(None) before passing |
@kernc that works perfectly, thanks for the quick response after doing the following before passing it to backtest AAPL1H.index = AAPL1H.index.tz_convert(None) now the Equity results are correct comparing to my previously shared C# sample
Do you reckon this should be built-in to backtesting.py? |
I'm not too certain. If the user prefers timestamps in TZ-aware UTC time, I'm thinking why override it? In all respects, the user (should) knows what they are doing. And it's a simple-enough workaround. |
I still think this should be handled by the library when library users do use unintended datetime formats, as using date time dataset with offset causes invalid backtest results, this is a date handling issue. The datasets used above are default tradingview exports with only the csv headers updated to |
Those results are not invalid! In Greenwich, it was simply already Saturday when the trade closed! I feel this change would force a behavior which then couldn't be reverted. Maybe we can indeed issue a warning if timezone offset is present somewhere around here: backtesting.py/backtesting/backtesting.py Lines 1123 to 1126 in 0ce24d8
|
Expected Behavior
resample('D') to take in account the right trading day when using timezoneoffset dates (issue with date parsing?)
Actual Behavior
Resample('D') of hourly candle puts equity sample on weekend instead of friday, when position entry was clearly on friday, equity balance should also be on friday instead of saturday.
Steps to Reproduce
Added log lines (see below) and ran sample strategy on AAPL1H timeframe exported from tradingview (only way to get correct candles plotted and entries plotted in my timezone +8, is to also add the timezoneoffset to the export) for both plotting and 100% same entry/exits (can see in trades table - except last position entry is using final candle.close instead of final candle.open in backtesting.py)
Comparing with my C# code, where starting equity is at day end of Friday 2022-08-26 - 10077.1, where on backtesting.py it's moved to saturday, leading to incorrect results on lower timeframes.
I have compared daily backtest of 'D' in both my program and backtesting.py, results are equal, so I think backtesting.py is not taking datetimeoffset into account for candles with lower interval
Additional info
AAPL1H.csv



Equity.csv
EquityD.csv
Some C# logic I wrote shows first change in portfolio balance on friday 2022-08-26
backtesting.py logic shows first change in portfolio balance on saturday 2022-08-27
bokeh.__version__
: 3.1.1The text was updated successfully, but these errors were encountered: