prosperity3bt 0.5.0__py3-none-any.whl → 0.6.0__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.
- prosperity3bt/data.py +6 -2
- prosperity3bt/resources/round2/__init__.py +0 -0
- prosperity3bt/resources/round2/prices_round_2_day_-1.csv +80001 -0
- prosperity3bt/resources/round2/prices_round_2_day_0.csv +80001 -0
- prosperity3bt/resources/round2/prices_round_2_day_1.csv +80001 -0
- prosperity3bt/resources/round2/trades_round_2_day_-1_nn.csv +12621 -0
- prosperity3bt/resources/round2/trades_round_2_day_0_nn.csv +12577 -0
- prosperity3bt/resources/round2/trades_round_2_day_1_nn.csv +12683 -0
- prosperity3bt/resources/round6/prices_round_6_day_2.csv +8001 -0
- prosperity3bt/resources/round6/trades_round_6_day_2_nn.csv +1248 -0
- prosperity3bt/resources/round7/__init__.py +0 -0
- prosperity3bt/resources/round7/prices_round_7_day_0.csv +30001 -0
- {prosperity3bt-0.5.0.dist-info → prosperity3bt-0.6.0.dist-info}/METADATA +4 -2
- {prosperity3bt-0.5.0.dist-info → prosperity3bt-0.6.0.dist-info}/RECORD +18 -7
- {prosperity3bt-0.5.0.dist-info → prosperity3bt-0.6.0.dist-info}/WHEEL +0 -0
- {prosperity3bt-0.5.0.dist-info → prosperity3bt-0.6.0.dist-info}/entry_points.txt +0 -0
- {prosperity3bt-0.5.0.dist-info → prosperity3bt-0.6.0.dist-info}/licenses/LICENSE +0 -0
- {prosperity3bt-0.5.0.dist-info → prosperity3bt-0.6.0.dist-info}/top_level.txt +0 -0
prosperity3bt/data.py
CHANGED
@@ -8,6 +8,11 @@ LIMITS = {
|
|
8
8
|
"RAINFOREST_RESIN": 50,
|
9
9
|
"KELP": 50,
|
10
10
|
"SQUID_INK": 50,
|
11
|
+
"CROISSANTS": 250,
|
12
|
+
"JAMS": 350,
|
13
|
+
"DJEMBES": 60,
|
14
|
+
"PICNIC_BASKET1": 60,
|
15
|
+
"PICNIC_BASKET2": 100,
|
11
16
|
}
|
12
17
|
|
13
18
|
|
@@ -104,8 +109,7 @@ def read_day_data(file_reader: FileReader, round_num: int, day_num: int, no_name
|
|
104
109
|
for suffix in trades_suffixes:
|
105
110
|
with file_reader.file([f"round{round_num}", f"trades_round_{round_num}_day_{day_num}_{suffix}.csv"]) as file:
|
106
111
|
if file is None:
|
107
|
-
|
108
|
-
raise ValueError(f"{trades_data_type} trades data is not available for round {round_num} day {day_num}")
|
112
|
+
continue
|
109
113
|
|
110
114
|
for line in file.read_text(encoding="utf-8").splitlines()[1:]:
|
111
115
|
columns = line.split(";")
|
File without changes
|