admin
TradeJourney!2025
© TradeJourney – Quick notes. Clear insights.
TradeJourney is a lightweight, password-protected trading journal as a PHP web app. It stores trades in CSV (readable by Excel/Numbers/Google Sheets) and presents them in a clean, tabbed UI.
ts_open;ts_close;symbol;direction;entry;sl;tp;exit;rr;setup;comment;volume;profit_eur
YYYY-MM-DD HH:MM;YYYY-MM-DD HH:MM;DE40|XAUUSD;Long|Short;…;…;…;…;R;…;…;…;123.45
trade_journal.php journey_config.php tradejourney.csv (optional – will be created if missing)
journey_config.php
Place this file outside the webroot (e.g. /etc/tradejourney/journey_config.php) and adapt the require path in trade_journal.php.
<?php return [ 'user' => 'admin', // 'pass_hash' => password_hash('YourSecret', PASSWORD_DEFAULT), 'pass' => 'TradeJourney!2025', 'csv' => __DIR__.'/tradejourney.csv', ];
Tip: Create your hash once in a small PHP console:
echo password_hash('YourSecret', PASSWORD_DEFAULT);
1. CSV upload (import existing journals) => Upload CSVs with the same schema and append them.
2. Automatic input from MT4/MT5 (Expert Advisor) => Post trades on close/entry via HTTP-POST to a small PHP API (WebRequest) or via file-drop (EA → CSV; cron/importer appends).