changed file paths

This commit is contained in:
2026-05-04 09:15:19 -04:00
parent 842c50bb6a
commit ba7495f4e4
2 changed files with 7 additions and 1 deletions

4
bot.py
View File

@@ -197,6 +197,10 @@ def main() -> None:
action="store_true",
help="Execute real orders (default is paper trading)",
)
# Always work relative to the script's own directory so that bot.log and
# positions.json land in /opt/crypto-trader regardless of the caller's cwd.
os.chdir(os.path.dirname(os.path.abspath(__file__)))
args = parser.parse_args()
config = Config()