ALOIS GRABER
Date: 11th march 2025
TECH INDEPENDENCE
- What?
- Download LibreOffice and Financials-Extension
- Download Spreadsheet
- Portfolio tracker implementation
- Return calculator
- Visualization
- Make a website
WHAT?
Tech independence is not depending on any particular company or software.
The only tools you need are the common open source basics built into any Linux or BSD operating system β free public-domain tools that are not owned by anyone, and can run on any computer.
Learn a few of these basic tools, and you can run your own private spreadsheet on any computer forever, for the rest of your life. Calculate your own return and loss/profit. Make some pie charts and share them online. No more subscriptions needed.
You can ignore all the companies offering βsolutionsβ, even if they are free, because they take away self-reliance. The point is to know how to do it yourself, not to have somebody do it for you. Itβs worth a little up-front work, like learning how to drive.
DOWNLOAD
- Download the free office suite: LibreOffice
- Download the Financials-Extention.oxt file.
- Open LibreOffice.
- Click on Tools then on Extensions...
- Click on Add
- Add the downloaded Financials-Extension.oxt file which is usually under Downloads.
- Restart the programme
DOWNLOAD SPREATSHEET
- Download data.ods.
- Copy it to your desktop or into your webpage-file.
- Open it with LibreOffice.
- Check that Column M, Row 4 says: =GETREALTIME(A4,21,"YAHOO")*GETREALTIME("USDCHF","LAST_PRICE","FT")
- If not restart LibreOffice and check if the Financials-Extention is there.
PORTFOLIO TRACKER IMPLEMENTATION
- Select everything from A5 to P41
- Right click and select Delete... and click on OK
- Do the same for row 3
- To get the price of a stock (e.g. IBM) enter: =GETREALTIME("IBM",21,"YAHOO")
- If you put in the symbol in column A instead of "IBM" you can just write A4.
- To get the exchange rate (USD to Swiss franc) enter: GETREALTIME("USDCHF","LAST_PRICE","FT")
- To refresh the data click on Data then Calculate then Recalculate Hard.
- By fees I mean fees that apply to your overall portfolio not on a single stock purchase (added in Broker Cose)
- The last row consist from left to right: Total Broker Cost, Total Portfolio value, Total loss/profit and sum of all parts (always is 100% except if something is wrong).
- Add a row to add a stock.
- For the full documentation click here.
RETURN CALCULATOR
- Download the returncalc.ods file.
- Open it with LibreOfficeCalc
- Select from A4 to S14 and click on delete button. Select OK.
- Set the first date (L2 and P1) to the beginning of the quarter when you started investing.
- Set the second date to 3 months later.
- Ignore column A to G except for A, D and E (fill those with the required info).
- Your net worth without investments (automatic in M2) should be however much your your portfolio + cash (only cash if you started then) was worth at the beginning of the quarter.
- N2, Q2 and R2 should update automatically.
- Set your net worth with investments equals to your net worth without investment + Total loss/profit.
- Drag formulas down by clicking on the small blue square (at the bottom right of a cell after cell is clicke) and dragging it down to the next cell.
- Under Return since 31.12.2021 you can see your return. The money you saved and added later on is adjusted as if you had invested that money from the first day.
- To calculate the S&P500 return just divide the present price by the price when you started investing. If you want to adjust it to Swiss francs (or whatever currency you use) multiply it with ((USD to CHF now) / (USD to CHF when you started)).
- Then add that number to S&P500 Return since... (Column S)
Next Quarter:
VISUALIZATION
- Download livestock.html file
- You can put both this file and the data.ods file in your website-folder. (Any folder)
- If you do not have a website skip this subsection until RUN A LOCAL WEBSERVER.
- You can now access it through your website and skip the next section (RUN A LOCAL WEBSERVER).
- Please send me the link at alois.graber.comicloud.com@gmail.com
HTML Files
Download Livestock.htmlRUN A LOCAL WEBSERVER
If you do not have a website but you still want to visualize your data file, follow the steps bellow.
If you do have a website just put livestock.html and data.ods into one folder and then It should be available under yourwebsite.com/livestock.html.
If you want to make a website head on over to the Make A Website part.
INSTALLING PYTHON
WINDOWS
- Download python here.
- IMPORTANT: Click on Add python.exe to PATH
- Choose Install Now
- In the Command Prompt type:
python --version
- You should see the python version number.
MAC
- Download python here.
- Run the installer package and follow the instructions.
- Verify installation by typing in Terminal:
python --version
- You should see the python version number.
LINUX
- Using package manager:
- Ubuntu/Debian:
sudo apt update && sudo apt install python3 python3-pip
- Fedora:
sudo dnf install python3 python3-pip
- Arch:
sudo pacman -S python python-pip
- Verify installation by typing in Terminal:
python --version
- You should see the python version number.
RUNNING A LOCAL WEBSERVER
- Navigate to the folder containing livestock.html
- Open Command Prompt / Terminal
- Use cd to navigate to the folder containing livestock.html
- Example:
cd htdocs
- Start the web server by typing
python -m http.server
- If that doesn't work type:
python3 -m http.server
- Open a browser and type
http://localhost:8000/livestock.html
MAKE A WEBSITE
- Go to sive.rs/ti#register.
- Make a website.
If you have any questions or suggestions please email me at alois.grabericloud.com@gmail.com