This tool provides comprehensive analysis of your investment portfolio's profit and loss (PNL) data from chunked CSV files. It helps investment professionals understand performance, identify trends, and make data-driven decisions with full blockchain verification capabilities. The tool automatically detects and processes multiple chunk files, combining them into unified analysis reports.
- Financial Analysis: Total PNL, win rates, profit/loss ratios, risk metrics
- Time-Based Insights: Daily/hourly/monthly performance patterns
- Transaction Breakdown: Revenue analysis by source and type
- Risk Assessment: Volatility measurements and percentile analysis
- Blockchain Verification: Verify all transactions on Sui network explorers
- Professional Reports: Detailed analysis with JSON export capability
- Install Python: Download from python.org
- Download Files: Get all analysis files and put your CSV chunk files in the same folder
- Open Terminal/Command Prompt:
- Mac:
Cmd + Space→ type "Terminal" → Enter - Windows:
Win + R→ type "cmd" → Enter, or Shift+right-click in folder → "Open command window here"
- Mac:
- Navigate to Folder: Type
cdthen drag your folder into the terminal window - Run Analysis: Type
python3 GetTotalPNL.py --auto-chunksand press Enter
Mac/Linux: Type cd then drag the folder from Finder into Terminal
Windows: Type cd then paste the folder path from File Explorer address bar
Mac/Linux: Type ls to see your files
Windows: Type dir to see your files
Always use quotes: python3 GetTotalPNL.py "My Portfolio Data.csv"
# Auto-detect and analyze chunk files (RECOMMENDED - primary usage)
python3 GetTotalPNL.py --auto-chunks
# Export monthly breakdown to CSV report (NEW)
python3 GetTotalPNL.py --auto-chunks --export-monthly-csv
# Combine chunk processing with JSON export
python3 GetTotalPNL.py --auto-chunks --export-json
# Analyze multiple specific chunk files manually
python3 GetTotalPNL.py chunk_1.csv chunk_2.csv chunk_3.csv chunk_4.csv
# Analyze single file
python3 GetTotalPNL.py your_data.csv
# Export detailed analysis to JSON
python3 GetTotalPNL.py --auto-chunks --export-json
# Export monthly breakdown to CSV (NEW)
python3 GetTotalPNL.py --auto-chunks --export-monthly-csv
# Combine all export options
python3 GetTotalPNL.py --auto-chunks --export-json --export-monthly-csv
# Show help
python3 GetTotalPNL.py --helpYour chunk files (chunk_1.csv, chunk_2.csv, etc.) must contain these columns:
- Digest: Blockchain transaction hash
- Timestamp: Date/time (YYYY-MM-DD HH:MM:SS format)
- Type: Transaction category (e.g., "Fee Revenue", "Staking Revenue")
- PNL USD: Profit/Loss amount (positive or negative numbers)
The tool automatically detects files named chunk_1.csv, chunk_2.csv, chunk_3.csv, etc. in your directory.
Each transaction digest can be verified on Sui network explorers:
Verification Steps: Copy digest → Visit explorer → Paste → Confirm amount/timestamp match
- Total PNL: Net profit/loss across all transactions
- Win Rate: Percentage of profitable transactions
- Volatility: Risk measurement via standard deviation
- Percentiles: Performance distribution analysis
- Best/Worst Days: Highest/lowest performing dates
- Profitable Days: Percentage of days with positive returns
- Optimal Hours: Best performing times for activity
- Revenue Sources: Income breakdown by category
- Contribution %: Each source's share of total PNL
- Performance: Average PNL per transaction type
- Multi-File Processing: Analyze multiple CSV files simultaneously
- Automatic Chunk Detection: Automatically finds and processes chunk_1.csv, chunk_2.csv, etc.
- JSON Export: Machine-readable data for Excel/PowerBI integration
- Monthly CSV Reports: Export monthly breakdown by revenue categories (NEW)
- Progress Tracking: Real-time processing updates for large files
- Data Quality: Automatic validation and error reporting
- Statistical Analysis: Comprehensive risk and performance metrics
If you've split your large CSV into multiple chunks, the tool can handle them automatically:
Auto-Detection: Use --auto-chunks to automatically find files named:
chunk_1.csv,chunk_2.csv,chunk_3.csv, etc.chunk1.csv,chunk2.csv,chunk3.csv, etc.part_1.csv,part_2.csv, etc.
Manual Selection: Specify multiple files directly:
python3 GetTotalPNL.py chunk_1.csv chunk_2.csv chunk_3.csv chunk_4.csvThe tool will combine all chunks and provide unified analysis across all files, plus a breakdown showing contribution from each chunk.
The --export-monthly-csv flag generates a detailed monthly breakdown report with the following columns:
- Month: Year-Month format (e.g., 2024-06)
- Pre-Unihouse PNL: Total from all Pre-Unihouse game queries
- Revenue Categories: Individual columns for each revenue source:
- Revenue_doghouse
- Revenue_lottery
- Revenue_pumpup
- Revenue_raffle
- Revenue_bucket_staking
- Revenue_suilotto_bucket_interest
- Revenue_unihouse_reward
- Revenue_gas_rebates
- Revenue_interest_withdraw
- Revenue_liquid-staking
- Revenue_Total: Sum of all revenue categories
- Staking PNL: Staking revenue
- Fee PNL: Fee revenue
- Referral Fee: Referral fees
- Total PNL: Sum of all PNL categories
The CSV includes a "Total" row at the bottom with sums for all columns. This format is ideal for importing into Excel or other analysis tools.
Python Issues
- "Command not found": Install Python from python.org
- Windows: Check "Add Python to PATH" during installation
- Try
pythoninstead ofpython3
File Issues
- "No chunk files found": Ensure your chunk files are named chunk_1.csv, chunk_2.csv, etc.
- "File not found": Ensure chunk files are in same folder as script
- "Permission denied": Close Excel/other programs using the chunk files
- Use quotes around filenames with spaces
Navigation Issues
- Can't find folder: Use drag-and-drop method described above
- Wrong directory: Use
ls(Mac/Linux) ordir(Windows) to check location - No chunks detected: Verify your files follow the naming pattern (chunk_1.csv, chunk_2.csv, etc.)
- All analysis performed locally on your computer
- No data sent to external servers
- Blockchain verification uses public explorers only
- Complete transaction privacy maintained
Optimize Performance: Identify best-performing periods and transaction types
Manage Risk: Understand volatility patterns and worst-case scenarios
Generate Reports: Create professional analysis for stakeholders
Ensure Transparency: Verify all transactions with blockchain records
Make Data-Driven Decisions: Use statistical insights to improve returns
For technical issues, contact your IT department.
Processing Time: Typical chunk processing (4 files, 3.3M+ records) takes 2-3 minutes. Press Ctrl+C to interrupt if needed.
Most Common Usage: python3 GetTotalPNL.py --auto-chunks
Professional investment analysis tool with blockchain verification capabilities