lumibot 4.1.0__py3-none-any.whl → 4.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of lumibot might be problematic. Click here for more details.
- lumibot/backtesting/databento_backtesting.py +4 -0
- lumibot-4.1.1.data/data/ThetaTerminal.jar +0 -0
- {lumibot-4.1.0.dist-info → lumibot-4.1.1.dist-info}/METADATA +1 -1
- {lumibot-4.1.0.dist-info → lumibot-4.1.1.dist-info}/RECORD +8 -7
- tests/test_databento_helper.py +3 -4
- {lumibot-4.1.0.dist-info → lumibot-4.1.1.dist-info}/LICENSE +0 -0
- {lumibot-4.1.0.dist-info → lumibot-4.1.1.dist-info}/WHEEL +0 -0
- {lumibot-4.1.0.dist-info → lumibot-4.1.1.dist-info}/top_level.txt +0 -0
|
@@ -438,6 +438,10 @@ class DataBentoDataBacktesting(PandasData):
|
|
|
438
438
|
# Filter to data up to current backtest time (exclude current bar unless broker overrides)
|
|
439
439
|
filtered_df = df[df.index <= cutoff_dt]
|
|
440
440
|
|
|
441
|
+
# If we have no prior bar (e.g., first iteration), allow the current timestamp
|
|
442
|
+
if filtered_df.empty:
|
|
443
|
+
filtered_df = df[df.index <= current_dt_aware]
|
|
444
|
+
|
|
441
445
|
if not filtered_df.empty:
|
|
442
446
|
last_price = filtered_df['close'].iloc[-1]
|
|
443
447
|
if not pd.isna(last_price):
|
|
Binary file
|
|
@@ -9,7 +9,7 @@ lumibot/backtesting/alpaca_backtesting.py,sha256=56vnBwKjwZ-8QW92I_dlJd1AO752_WV
|
|
|
9
9
|
lumibot/backtesting/alpha_vantage_backtesting.py,sha256=LR3UNhJrdAKdvadiThVKdKrMZYQ_xcHzAISKPe0yqS0,417
|
|
10
10
|
lumibot/backtesting/backtesting_broker.py,sha256=btn-uPXLU3iaaioiuKph-OI5Qy0lBb7G9hoWM6wXx3E,71962
|
|
11
11
|
lumibot/backtesting/ccxt_backtesting.py,sha256=O-RjuNpx5y4f-hKKwwUbrU7hAVkGEegmnvH_9nQWhAo,246
|
|
12
|
-
lumibot/backtesting/databento_backtesting.py,sha256=
|
|
12
|
+
lumibot/backtesting/databento_backtesting.py,sha256=pEM12DzUC6388lTyRv4WTvdZEhs4Ofp4E2VOjD3Azek,27998
|
|
13
13
|
lumibot/backtesting/databento_backtesting_polars.py,sha256=duWr5VfLEAyCbZJQVsJ0iftH-8SACWvuRINSlpOEHpM,26128
|
|
14
14
|
lumibot/backtesting/interactive_brokers_rest_backtesting.py,sha256=5HJ_sPX0uOUg-rbfOKDjwYVCLiXevlwtdK_3BcUwqXc,6602
|
|
15
15
|
lumibot/backtesting/pandas_backtesting.py,sha256=m-NvT4o-wFQjaZft6TXULzeZBrskO_7Z-jfy9AIkyAY,388
|
|
@@ -224,6 +224,7 @@ lumibot/trading_builtins/safe_list.py,sha256=IIjZOHSiZYK25A4WBts0oJaZNOJDsjZL65M
|
|
|
224
224
|
lumibot/trading_builtins/__pycache__/__init__.cpython-312.pyc,sha256=ksqDHG5HzxBeh3sDNn2NjEhYtj3dI6TvuQoe03VAItg,345
|
|
225
225
|
lumibot/trading_builtins/__pycache__/custom_stream.cpython-312.pyc,sha256=w9EEoPd4LTBKmS8x6x-umicO1GwzaHlZnAv7MC2A78o,7397
|
|
226
226
|
lumibot/trading_builtins/__pycache__/safe_list.cpython-312.pyc,sha256=2MQnqSCnMHHVu_gMK-3xBVSdHFyhxGR7_UrNdOvb4So,4875
|
|
227
|
+
lumibot-4.1.1.data/data/ThetaTerminal.jar,sha256=K6GeeFcN8-gvyL2x5iq5pzD79KfPJvMK8iiezi3TmNQ,11834389
|
|
227
228
|
tests/__init__.py,sha256=3-VoT-nAuqMfwufd4ceN6fXaHl_zCfDCSXJOTp1ywYQ,393
|
|
228
229
|
tests/conftest.py,sha256=UBw_2fx7r6TZPKus2b1Qxrzmd4bg8EEBnX1vCHUuSVA,3311
|
|
229
230
|
tests/fixtures.py,sha256=wOHQsh1SGHnXe_PGi6kDWI30CS_Righi7Ig7vwSEKT4,9082
|
|
@@ -268,7 +269,7 @@ tests/test_databento_auto_expiry_integration.py,sha256=uPAyYTMTzEqppUUZx99G8pvnv
|
|
|
268
269
|
tests/test_databento_backtesting.py,sha256=5uGiKxQIY8eYVvgQEO6kA4GWUP4k2MCHi_S5h40gqH8,19150
|
|
269
270
|
tests/test_databento_backtesting_polars.py,sha256=V9Z7-WG2TNKpHQVF5vGJSIdgUsuhJwlopZV66FREWA0,8097
|
|
270
271
|
tests/test_databento_data.py,sha256=HakjDileGpicQc_OXeX7l8ncIDn3FtxP8ymKA6TQp8o,18860
|
|
271
|
-
tests/test_databento_helper.py,sha256=
|
|
272
|
+
tests/test_databento_helper.py,sha256=C2FRkD3341FFHc09bObEYYN7eqUsO9aewyaLX9hCdvU,43465
|
|
272
273
|
tests/test_databento_live.py,sha256=tbg2C9cyW45OYY7dKYlPMNZpgsN_sjs4yk1GR23OL6o,15648
|
|
273
274
|
tests/test_databento_timezone_fixes.py,sha256=NsfND7yTdKH2ddiYYhO6kU3m41V7se7C4_zTvqKOGv0,11562
|
|
274
275
|
tests/test_drift_rebalancer.py,sha256=AUuEd3WIunfx3gwVdLVtq8jOHlz65UeqpO4adY1xfcs,105289
|
|
@@ -353,8 +354,8 @@ tests/backtest/test_thetadata.py,sha256=xWYfC9C4EhbMDb29qyZWHO3sSWaLIPzzvcMbHCt5
|
|
|
353
354
|
tests/backtest/test_thetadata_comprehensive.py,sha256=-gN3xLJcJtlB-k4vlaK82DCZDGDmr0LNZZDzn-aN3l4,26120
|
|
354
355
|
tests/backtest/test_thetadata_vs_polygon.py,sha256=dZqsrOx3u3cz-1onIO6o5BDRjI1ey7U9vIkZupfXoig,22831
|
|
355
356
|
tests/backtest/test_yahoo.py,sha256=uHb9aK3uHYEvA7MI_y1dbKm7mjHrErlxU7TJOgVdzs8,1966
|
|
356
|
-
lumibot-4.1.
|
|
357
|
-
lumibot-4.1.
|
|
358
|
-
lumibot-4.1.
|
|
359
|
-
lumibot-4.1.
|
|
360
|
-
lumibot-4.1.
|
|
357
|
+
lumibot-4.1.1.dist-info/LICENSE,sha256=fYhGIyxjyNXACgpNQS3xxpxDOaVOWRVxZMCRbsDv8k0,35130
|
|
358
|
+
lumibot-4.1.1.dist-info/METADATA,sha256=lRxs-rWEYAAcbpGVP5TtgWLyOM6VjNVBZJYyo0DXqh0,11485
|
|
359
|
+
lumibot-4.1.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
360
|
+
lumibot-4.1.1.dist-info/top_level.txt,sha256=otUnUjDFVASauEDiTiAzNgMyqQ1B6jjS3QqqP-WSx38,14
|
|
361
|
+
lumibot-4.1.1.dist-info/RECORD,,
|
tests/test_databento_helper.py
CHANGED
|
@@ -16,8 +16,7 @@ class TestDataBentoHelper(unittest.TestCase):
|
|
|
16
16
|
self.api_key = "test_api_key"
|
|
17
17
|
self.test_asset_future = Asset(
|
|
18
18
|
symbol="ES",
|
|
19
|
-
asset_type="
|
|
20
|
-
expiration=datetime(2025, 3, 15).date()
|
|
19
|
+
asset_type="CONT_FUTURE"
|
|
21
20
|
)
|
|
22
21
|
self.test_asset_stock = Asset(
|
|
23
22
|
symbol="AAPL",
|
|
@@ -217,8 +216,8 @@ class TestDataBentoHelper(unittest.TestCase):
|
|
|
217
216
|
self.end_date,
|
|
218
217
|
"minute"
|
|
219
218
|
)
|
|
220
|
-
|
|
221
|
-
expected_name = "
|
|
219
|
+
|
|
220
|
+
expected_name = "ES_minute_202501010000_202501310000.parquet"
|
|
222
221
|
self.assertEqual(filename.name, expected_name)
|
|
223
222
|
|
|
224
223
|
def test_no_retry_logic_for_correct_symbol(self):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|