We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98d5089 commit 8f177d6Copy full SHA for 8f177d6
octobot/config/profile_schema.json
@@ -138,6 +138,10 @@
138
"type": "number",
139
"minimum": 0,
140
"maximum": 1
141
+ },
142
+ "current-bot-recording-id": {
143
+ "type": "integer",
144
+ "minimum": 1
145
}
146
},
147
"required": [
octobot/constants.py
@@ -154,6 +154,9 @@
154
OPTIMIZER_DATA_FILES_FOLDER = f"{OCTOBOT_FOLDER}/strategy_optimizer/optimizer_data_files"
155
OPTIMIZATION_CAMPAIGN_KEY = "optimization_campaign"
156
157
+CURRENT_BOT_RECORDING_ID = "current-bot-recording-id"
158
+DEFAULT_BOT_RECORDING_ID = 1
159
+
160
# Channel
161
OCTOBOT_CHANNEL = "OctoBot"
162
0 commit comments