import json

with open("data/journal.json", "r") as f:
    journal = json.load(f)

# Just mirror journal to backtest-data for dashboard
with open("data/backtest-data.json", "w") as f:
    json.dump(journal, f, indent=2)

print("Updated data/backtest-data.json")
