Skip to content

Commit dfd9322

Browse files
committed
fix - move ibkr account id to secret, enable ibkr
1 parent 534f693 commit dfd9322

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

helm/tradingbots/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ bots:
226226
# Requires COLLECTIVE2_API_KEY in the tradingbot-secrets secret.
227227
# Start with dryRun=true and verify logs before flipping to false.
228228
liveTrade:
229-
enabled: false # Flip to true after dry-run verified
229+
enabled: true # Flip to true after dry-run verified
230230
schedule: "10 21 * * 1-5" # 9:10 PM UTC (10 min after AdaptiveMeanReversionBot at 21:00)
231231
systemId: "155809898" # Collective2 strategy ID
232232
botWeights: '{"adaptivemeanreversionbot": 1.0}' # JSON: bot name -> weight
@@ -239,12 +239,12 @@ liveTrade:
239239
# Mirrors weighted paper-bot portfolios to Interactive Brokers (IB Gateway).
240240
# Requires IB_ACCOUNT_ID and IB_GATEWAY_HOST/PORT in the tradingbot-secrets secret.
241241
liveTradeIB:
242-
enabled: false
242+
enabled: true
243243
schedule: "20 21 * * 1-5" # 9:20 PM UTC
244244
host: "ib-gateway-service.interactivebrokersgateway.svc.cluster.local"
245245
port: "4002"
246246
clientId: "17"
247-
accountId: "" # Required
247+
# IB_ACCOUNT_ID is read from the tradingbot-secrets secret (regenerated from .env)
248248
botWeights: '{"adaptivemeanreversionbot": 1.0}'
249249
minOrderUsd: "50"
250250
dryRun: "true"

0 commit comments

Comments
 (0)