<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/rss-style.xsl" type="text/xsl"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	     xmlns:dc="http://purl.org/dc/elements/1.1/"
	   xmlns:atom="http://www.w3.org/2005/Atom"
	     xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	  xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>
<channel>
	<title>finance &#8211; Terence Eden’s Blog</title>
	<atom:link href="https://shkspr.mobi/blog/tag/finance/feed/" rel="self" type="application/rss+xml" />
	<link>https://shkspr.mobi/blog</link>
	<description>Regular nonsense about tech and its effects 🙃</description>
	<lastBuildDate>Fri, 15 Aug 2025 07:25:00 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://shkspr.mobi/blog/wp-content/uploads/2023/07/cropped-avatar-32x32.jpeg</url>
	<title>finance &#8211; Terence Eden’s Blog</title>
	<link>https://shkspr.mobi/blog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title><![CDATA[Is "Dollar Cost Averaging" a Bad Idea?]]></title>
		<link>https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/</link>
					<comments>https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Thu, 15 Aug 2024 11:34:50 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[finance]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[statistics]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=51225</guid>

					<description><![CDATA[It&#039;s sometimes useful to run experiments yourself, isn&#039;t it?  New investors are often told that, when investing for the long term rather than chasing individual stocks, it is better to be invested for the longest possible time rather than trying to do &#34;dollar cost averaging&#34;.  DCA is the process of spreading out over time the purchasing of your investments. That way, you don&#039;t lose it all if the…]]></description>
										<content:encoded><![CDATA[<p>It's sometimes useful to run experiments yourself, isn't it?</p>

<p>New investors are often told that, when investing for the long term rather than chasing individual stocks, it is better to be invested for the longest possible time rather than trying to do "dollar cost averaging".  DCA is the process of spreading out over time the purchasing of your investments. That way, you don't lose it all if the market drops the day after you invest.</p>

<p>Let me explain...</p>

<p>Imagine that it is 1994 and your rich uncle, Scrooge McDuck, has decided to gift you $1,200 per year. How generous!</p>

<p>He has stipulated that you must invest it in the S&amp;P 500 - that's the top 500 companies in the world<sup id="fnref:fin"><a href="https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/#fn:fin" class="footnote-ref" title="OK, it is a bit more complicated than that. This blog is not financial advice, OK?" role="doc-noteref">0</a></sup>.</p>

<p>He gives you two choices:</p>

<ul>
<li>Put $1,200 in on the 1st of January every year.</li>
<li>Put $100 in on the 1st of the month every year.</li>
</ul>

<p>How much money do you make in each scenario?</p>

<h2 id="get-the-data"><a href="https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/#get-the-data">Get The Data</a></h2>

<p>Kaggle has a download for <a href="https://www.kaggle.com/datasets/gkitchen/s-and-p-500-spy">the historic S&amp;P 500 data</a>. It goes from 1993 to 2024.</p>

<p>The data looks like this:</p>

<table>
<thead>
<tr>
  <th>Date</th>
  <th align="right">Open</th>
  <th align="right">High</th>
  <th align="right">Low</th>
  <th align="right">Close</th>
  <th align="right">Volume</th>
  <th align="right">Day</th>
  <th align="right">Weekday</th>
  <th align="right">Week</th>
  <th align="right">Month</th>
  <th align="right">Year</th>
</tr>
</thead>
<tbody>
<tr>
  <td>29/01/93</td>
  <td align="right">24.70</td>
  <td align="right">24.70</td>
  <td align="right">24.58</td>
  <td align="right">24.68</td>
  <td align="right">1003200</td>
  <td align="right">29</td>
  <td align="right">4</td>
  <td align="right">4</td>
  <td align="right">1</td>
  <td align="right">1993</td>
</tr>
<tr>
  <td>01/02/93</td>
  <td align="right">24.70</td>
  <td align="right">24.86</td>
  <td align="right">24.70</td>
  <td align="right">24.86</td>
  <td align="right">480500</td>
  <td align="right">1</td>
  <td align="right">0</td>
  <td align="right">5</td>
  <td align="right">2</td>
  <td align="right">1993</td>
</tr>
<tr>
  <td>02/02/93</td>
  <td align="right">24.84</td>
  <td align="right">24.93</td>
  <td align="right">24.79</td>
  <td align="right">24.91</td>
  <td align="right">201300</td>
  <td align="right">2</td>
  <td align="right">1</td>
  <td align="right">5</td>
  <td align="right">2</td>
  <td align="right">1993</td>
</tr>
<tr>
  <td>03/02/93</td>
  <td align="right">24.95</td>
  <td align="right">25.19</td>
  <td align="right">24.93</td>
  <td align="right">25.18</td>
  <td align="right">529400</td>
  <td align="right">3</td>
  <td align="right">2</td>
  <td align="right">5</td>
  <td align="right">2</td>
  <td align="right">1993</td>
</tr>
</tbody>
</table>

<h2 id="experiment-1-time-in-the-market"><a href="https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/#experiment-1-time-in-the-market">Experiment 1 - Time In The Market</a></h2>

<p>Here's the algorithm we want to run.</p>

<ol>
<li>Start in 1994</li>
<li>Set the investment as 1200</li>
<li>Get the Opening price of the first entry of the year</li>
<li>Get the Closing price of the last entry of the year</li>
<li>Calculate the percentage difference</li>
<li>Multiply the investment by the growth / fall</li>
<li>Add 1200 to the investment</li>
<li>Repeat from (3) for the next year.</li>
</ol>

<p>Here's the code. I've made some assumptions - for example there are no trading fees, you buy at the opening price, and fractional dollars disappear.  I'm aware this doesn't track perfectly but it isn't intended to; this is a rough and ready reckoner.</p>

<details>
<summary>Open for Python Code</summary>

<pre><code class="language-python">import numpy as np
import locale

#   Set for American currency
locale.setlocale( locale.LC_ALL, 'en_US.UTF-8' )

#   Location of the data
file_path = 'data.csv'

#   Load CSV into a NumPy array
data = np.genfromtxt(file_path, delimiter=',', names=True, dtype=None, encoding='utf-8')

# Count the number of unique years
unique_years = 0

#   Total investment
total_investment = 0

#   Yearly investment
yearly_cash = 1200

#   Start with an opening of 0
opening = 0

#   Loop through the years
for year in range( 1994, 2024 ):
    #   Add our yearly amount
    total_investment += yearly_cash

    #   Get data for the current year
    data_year = data[data['Year'] == year]

    #   Opening Price
    if ( 0 == opening ) :
        opening = data_year['Open'][0]

    #   Closing Price
    closing = data_year['Close'][-1]

    #   Percentage Change
    change = ( closing - opening) / opening
    movement = "✅ +" if change &gt; 0 else "❌ -"

    #   Calculate change in investment
    total_investment = int( (1 + change) * total_investment )

    #   Print the running total
    print ( f"{movement}{abs(change*100):05.2f}% {year} Total investment is " + locale.currency( total_investment, grouping=True ) )

    #   Set the new opening price
    opening = closing

    #   Increment the number of years seen
    unique_years += 1

print ( f"After {unique_years} years you have invested {locale.currency( yearly_cash * unique_years , grouping=True )}" )
print ( f"Your total amount is {locale.currency( total_investment, grouping=True )}" )
</code></pre>

</details>

<p>It spits out:</p>

<blockquote><p>After 30 years you have invested $36,000</p>

<p>Your total amount is <strong>$203,445</strong></p></blockquote>

<h2 id="experiment-2-dollar-cost-averaging"><a href="https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/#experiment-2-dollar-cost-averaging">Experiment 2 - Dollar Cost Averaging</a></h2>

<p>OK! Can we beat that with DCA? In this scenario you take your uncle's money and invest 1/12th of it on the first trading day of every month.</p>

<details>
<summary>Open for Python Code</summary>

<pre><code class="language-python">import numpy as np
import locale

#   Set for American currency
locale.setlocale( locale.LC_ALL, 'en_US.UTF-8' )

#   Location of the data
file_path = 'data.csv'

#   Load CSV into a NumPy array
data = np.genfromtxt(file_path, delimiter=',', names=True, dtype=None, encoding='utf-8')

#   Total investment
total_investment = 0

#   Monthly investment
monthly_cash = 100

#   Number of months run
number_of_months = 0

#   Start with an opening of 0
opening = 0

#   Loop through the years
for year in range( 1994, 2024 ):

    #   Get data for the current year
    data_year = data[data['Year'] == year]

    #   There should be 12 months in every year, but let's double check!
    unique_months = np.unique(data_year['Month'])

    #   Loop through the months
    for month in unique_months:
        #   Add our monthly amount
        total_investment += monthly_cash

        # Filter data for the current month
        data_month = data_year[data_year['Month'] == month]

        #   Opening Price
        if ( 0 == opening ) :
            opening = data_month['Open'][0]

        #   Closing Price
        closing = data_month['Close'][-1]

        #   Percentage Change
        change = ( closing - opening) / opening

        movement = "✅ +" if change &gt; 0 else "❌ -"

        #   Calculate change in investment
        total_investment = int( (1 + change) * total_investment )

        #   Print the running monthly total
        print ( f"{movement}{abs(change*100):05.2f}% {year}/{month:02.0f} Total investment is " + locale.currency( total_investment, grouping=True ) )

        #   Set the new opening price
        opening = closing

        #   Increment the number of months
        number_of_months += 1
    #   Yearly total
    #print ( f"{movement}{abs(change*100):05.2f}% {year}/{month:02.0f} Total investment is " + locale.currency( total_investment, grouping=True ) )

print ( f"Your total amount is {locale.currency( total_investment, grouping=True )} after {number_of_months} months" )
</code></pre>

</details>

<p>The end result?</p>

<blockquote><p>Your total amount is <strong>$193,891</strong> after 360 months</p></blockquote>

<p>That's $9,554 <em>worse</em> than shoving all the money in on January 1st.</p>

<p>Which... Look, $10k is $10k. I'd rather have it than not. But, in the context of these numbers, it doesn't <em>feel</em> significant. Does it?</p>

<h2 id="lets-graph-it"><a href="https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/#lets-graph-it">Let's Graph It!</a></h2>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2024/07/dcalump-fs8.png" alt="Graph showing two gradually diverting lines." width="1006" height="644" class="aligncenter size-full wp-image-51229">

<h2 id="conclusion"><a href="https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/#conclusion">Conclusion</a></h2>

<p>Dollar Cost Averaging is <em>fine</em><sup id="fnref2:fin"><a href="https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/#fn:fin" class="footnote-ref" title="OK, it is a bit more complicated than that. This blog is not financial advice, OK?" role="doc-noteref">0</a></sup>. Over a long enough time you're probably <em>marginally</em> better off with lump-sum investing. But there's not much in it.</p>

<p>I'm sure you can construct scenarios where DCA is slightly preferential, and not every investment tracks the S&amp;P500, and I'm sure my maths might be a little wonky, and <em>obviously</em> this is not financial advice. But, yeah, DCA if you want to; the difference in this example appears to be minimal.</p>

<div id="footnotes" role="doc-endnotes">
<hr aria-label="Footnotes">
<ol start="0">

<li id="fn:fin">
<p>OK, it is a bit more complicated than that. This blog is not financial advice, OK?&nbsp;<a href="https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/#fnref:fin" class="footnote-backref" role="doc-backlink">↩︎</a> <a href="https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/#fnref2:fin" class="footnote-backref" role="doc-backlink">↩︎</a></p>
</li>

</ol>
</div>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=51225&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2024/08/is-dollar-cost-averaging-a-bad-idea/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Free Open Banking API using Nordigen / GoCardless]]></title>
		<link>https://shkspr.mobi/blog/2023/10/free-open-banking-api-using-nordigen-gocardless/</link>
					<comments>https://shkspr.mobi/blog/2023/10/free-open-banking-api-using-nordigen-gocardless/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sun, 22 Oct 2023 11:34:09 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[finance]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[openbanking]]></category>
		<category><![CDATA[programming]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=48443</guid>

					<description><![CDATA[A few weeks ago I was moaning about there being no OpenBanking API for personal use. Thankfully, I was wrong!  As pointed out by Dave a company called Nordigen was set up to provide a free Open Banking service. It was quickly bought by GoCardless who said:  We believe access to open banking data should be free. We can now offer it at scale to anyone - developers, partners and Fintechs - looking…]]></description>
										<content:encoded><![CDATA[<p>A few weeks ago I was moaning about <a href="https://shkspr.mobi/blog/2023/10/why-is-there-no-openbanking-api-for-personal-use/">there being no OpenBanking API for personal use</a>. Thankfully, I was wrong!</p>

<p>As pointed out by <a href="https://shkspr.mobi/blog/2023/10/why-is-there-no-openbanking-api-for-personal-use/#comment-330155">Dave</a> a company called <a href="https://www.ft.com/partnercontent/nordigen/europe-needs-free-open-banking-and-heres-why.html">Nordigen was set up to provide a free Open Banking service</a>. It was <a href="https://gocardless.com/g/gc-nordigen/">quickly bought by GoCardless</a> who said:</p>

<blockquote><p>We believe access to open banking data should be free. We can now offer it at scale to anyone - developers, partners and Fintechs - looking to solve customer problems.</p></blockquote>

<p>And, I'm delighted to report, it works! As a solo developer you can get access to your own data <em>for free</em> via the GoCardless APIs.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2023/10/gocardless-fs8.png" alt="Screenshot from GoCardless. 
1. Test with your own data. See how the product flow would look like for your users and what data is available. 2. Set up the API. Follow our documentation to set up the API and start collecting bank account data. 3. Customise the user interface.Pay as you go. Make the user agreement flow for your customers to match your brand. 4. Ready to go live? Need help and advice to set up faster?" width="1507" height="529" class="aligncenter size-full wp-image-48444">

<p>You'll get back a JSON file from each of your banks and credit cards with information like this in it:</p>

<pre><code class="language-json">{
   "bookingDate": "2023-07-11",
   "bookingDateTime": "2023-07-11T20:52:05Z",
   "transactionAmount": {
       "amount": "-2.35",
       "currency": "GBP"
   },
   "creditorName": "GREGGS PLC",
   "remittanceInformationUnstructured": "Greggs PLC, London se1",
   "merchantCategoryCode": "5812",
   "internalTransactionId": "123456789"
}
</code></pre>

<p>For foreign exchange, transactions look like this:</p>

<pre><code class="language-json">{
   "bookingDate": "2023-10-01",
   "bookingDateTime": "2023-10-01T21:41:40Z",
   "transactionAmount": {
      "amount": "-0.82",
      "currency": "GBP"
    },
    "currencyExchange": {
      "instructedAmount": {
         "amount": "1.00",
         "currency": "USD"
      },
      "sourceCurrency": "USD",
      "exchangeRate": "1.2195",
      "targetCurrency": "GBP"
   },
   "creditorName": "KICKSTARTER.COM",
   "remittanceInformationUnstructured": "Kickstarter.com, Httpswww.kick, 1.0 U.S. DOLLAR USA",
   "merchantCategoryCode": "5815",
   "internalTransactionId": "987654321"
}
</code></pre>

<p>Depending on your card and the transaction type, you might also get a few more bits of metadata.</p>

<p>Get started at <a href="https://gocardless.com/bank-account-data/"></a><a href="https://gocardless.com/bank-account-data/">https://gocardless.com/bank-account-data/</a>. From there, it's a case of <a href="https://developer.gocardless.com/bank-account-data/quick-start-guide">following the quickstart guide</a>.</p>

<h2 id="a-few-niggles"><a href="https://shkspr.mobi/blog/2023/10/free-open-banking-api-using-nordigen-gocardless/#a-few-niggles">A few niggles</a></h2>

<p>There's a bit of bouncing around. You've got to get an API key, get the institution ID, sign in, get redirected, get an ID from the callback, then get the bank account details. And <em>then</em> you can get the transactions!</p>

<p>Oh, and the access token only lasts a short while, so you'll need to either re-auth or use a refresh token.</p>

<p>Bank authorisation only lasts 90 days, so you'll have to refresh your details every 3 months. That's standard across all opening banking, but a bit of a pain.</p>

<p>GoCardless have <a href="https://gocardless.com/bank-account-data/coverage/">pretty comprehensive bank coverage</a> but they are missing a few which you might find useful.</p>

<p>Because there are so many financial institution in there, you might find it difficult to work out which one you need to log in to. For example, if you have a Barclays Credit Card, which of these is the right one for you?</p>

<pre><code class="language-json">{
    "id": "BARCLAYCARD_COMMERCIAL_BUKBGB22",
    "name": "Barclaycard Commercial Payments",
    "bic": "BUKBGB22",
    "transaction_total_days": "730",
    "countries": [
      "GB"
    ],
    "logo": "https://cdn.nordigen.com/ais/BARCLAYCARD_COMMERCIAL_BUKBGB22.png"
  },
  {
    "id": "BARCLAYCARD_BUKBGB22",
    "name": "Barclaycard UK",
    "bic": "BUKBGB22",
    "transaction_total_days": "730",
    "countries": [
      "GB"
    ],
    "logo": "https://cdn.nordigen.com/ais/BARCLAYCARD_COMMERCIAL_BUKBGB22.png"
  },
  {
    "id": "BARCLAYS_BUSINESS_BUKBGB22",
    "name": "Barclays Business",
    "bic": "BUKBGB22",
    "transaction_total_days": "730",
    "countries": [
      "GB"
    ],
    "logo": "https://cdn.nordigen.com/ais/BARCLAYS_WEALTH_BUKBGB22.png"
  },
  {
    "id": "BARCLAYS_CORPORATE_BUKBGB22",
    "name": "Barclays Corporate",
    "bic": "BUKBGB22",
    "transaction_total_days": "730",
    "countries": [
      "GB"
    ],
    "logo": "https://cdn.nordigen.com/ais/BARCLAYS_WEALTH_BUKBGB22.png"
  },
  {
    "id": "BARCLAYS_BUKBGB22",
    "name": "Barclays Personal",
    "bic": "BUKBGB22",
    "transaction_total_days": "730",
    "countries": [
      "GB"
    ],
    "logo": "https://cdn.nordigen.com/ais/BARCLAYS_WEALTH_BUKBGB22.png"
  },
  {
    "id": "BARCLAYS_WEALTH_BUKBGB22",
    "name": "Barclays Wealth",
    "bic": "BUKBGB22",
    "transaction_total_days": "730",
    "countries": [
      "GB"
    ],
    "logo": "https://cdn.nordigen.com/ais/BARCLAYS_WEALTH_BUKBGB22.png"
  },
</code></pre>

<p>But, overall, it's an excellent service. Now I just need to find / write something to ingest the data and do something with it!</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=48443&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2023/10/free-open-banking-api-using-nordigen-gocardless/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Forced into the FIRE]]></title>
		<link>https://shkspr.mobi/blog/2020/09/forced-into-the-fire/</link>
					<comments>https://shkspr.mobi/blog/2020/09/forced-into-the-fire/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 11 Sep 2020 11:37:25 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[covid19]]></category>
		<category><![CDATA[finance]]></category>
		<category><![CDATA[money]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=36474</guid>

					<description><![CDATA[I&#039;m an ambivalent convert to FIRE - Financial Independence Retire Early.  The basic gist is:   Minimise your expenditure, Save 20x your annual expenditure, Retire early while maintaining the same lifestyle.   That&#039;s it.  There are a lot of crappy books about FIRE, but the concept is simple.  So I try to spend a little less, and I try to save a little more, and I dream about stopping work while…]]></description>
										<content:encoded><![CDATA[<p>I'm an ambivalent convert to FIRE - Financial Independence Retire Early.</p>

<p>The basic gist is:</p>

<ol>
<li>Minimise your expenditure,</li>
<li>Save 20x your annual expenditure,</li>
<li>Retire early while maintaining the same lifestyle.</li>
</ol>

<p>That's it.  There are a lot of <a href="https://shkspr.mobi/blog/2019/09/book-review-playing-with-fire/">crappy books about FIRE</a>, but the concept is simple.</p>

<p>So I try to spend a little less, and I try to save a little more, and I dream about stopping work while I'm still young enough to enjoy it.</p>

<p>Of course, human psychology and habits are less simple. It is <em>so</em> tempting to buy a sandwich from Pret rather than take your own lunch. Sure, let's go to the pub after work and buy drinks which are cheaper at the supermarket. A holiday in the sun - why not?!</p>

<p>All those things increase your monthly expenditure. They chip away at your savings. And they increase your quality of life.</p>

<p>Now many of us have had a few-hundred days of being confined to home, and with the imminent threat of economic doom, we've been forced into a FIRE lifestyle.</p>

<p>(Yes, I know some people are getting takeaways every day, and spending hundred on videogames or office furniture. And others are being thrown into poverty.)</p>

<p>We've had a brief glimpse at what everyone doing FIRE would look like for the economy. No more sandwich shops, or travel agents, or quirky boutiques.</p>

<p>And we've had a brief glimpse at what our lives would be like stripped back to the minimum. No fancy food, no going anywhere you can't walk to, no meeting friends for a cheeky pint.</p>

<p>I'll be honest. It's not amazing, is it?</p>

<p>Could you survive stuck at home forever? Sure. Many people have it worse. And modern technology means that the world can come to you.</p>

<p>After a while, I daresay we'll all be <a href="https://lithub.com/on-the-myth-of-stockholm-syndrome-and-women-guerrilla-fighters/">Stockholm-Syndrome</a>'d into believing that this is the life we <em>want</em>.</p>

<p>I don't think there's anything wrong with the FIRE philosophy. And I don't judge anyone for wanting to pare their spending back. But I worry that artificially forcing people into it will backfire. People will conflate the misery of the pandemic with the misery of not spending money, and we'll see an explosion of spending - and consequent lifestyle inflation - if this pandemic ever subsides.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=36474&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2020/09/forced-into-the-fire/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[A year of going cashless - and where it hasn't worked]]></title>
		<link>https://shkspr.mobi/blog/2020/01/a-year-of-going-cashless-and-where-it-hasnt-worked/</link>
					<comments>https://shkspr.mobi/blog/2020/01/a-year-of-going-cashless-and-where-it-hasnt-worked/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sat, 11 Jan 2020 12:15:13 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[credit card]]></category>
		<category><![CDATA[finance]]></category>
		<category><![CDATA[money]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=33729</guid>

					<description><![CDATA[I set myself a resolution last year - go 12 months without using physical cash. No coins, no notes, no gold bullion, no cheques.  I attempted to do all my spending on credit card, Direct Debit, and bank transfer (BACS).  It worked! Mostly... Here&#039;s where it didn&#039;t work, and what I learned from it.  Foreign Cash  Went to Hong Kong and withdrew £100 in local currency. Was completely unnecessary. …]]></description>
										<content:encoded><![CDATA[<p>I set myself a resolution last year - go 12 months without using physical cash. No coins, no notes, no gold bullion, no cheques.  I attempted to do <em>all</em> my spending on credit card, Direct Debit, and bank transfer (BACS).</p>

<p>It worked! Mostly... Here's where it didn't work, and what I learned from it.</p>

<h2 id="foreign-cash"><a href="https://shkspr.mobi/blog/2020/01/a-year-of-going-cashless-and-where-it-hasnt-worked/#foreign-cash">Foreign Cash</a></h2>

<p>Went to Hong Kong and withdrew £100 in local currency. Was completely unnecessary. Everywhere took card / contactless. We didn't stray away from the tourist trail, which may have helped.  Carrying cash had a mixed effect on my anxiety. I was slightly nervous about getting mugged, but that was offset by knowing we could jump into a cab if we encountered any local difficulties.</p>

<p>Similarly, we went to Australia and took out the same amount of cash. We were driving in some fairly rural locations - although not the outback! - and wanted a small safety net. Again, completely unnecessary. Everything from parking meters to tiny ice-cream stands took contactless.</p>

<p>Spoke at a conference in Denmark. Was only a quick visit, so didn't take cash. Tried to buy a chocolate bar and drink in the train station, but was told my card wouldn't be accepted. I wasn't sure if it was the small sum, a foreign card, or something else.  Bit weird, but the rest of the trip was fine.</p>

<p>Countless trips to the EU. I already had some € coins and notes. The first few times I took them - but they were never needed. Even in small bakeries my card or phone were accepted.</p>

<h2 id="emergency-cash"><a href="https://shkspr.mobi/blog/2020/01/a-year-of-going-cashless-and-where-it-hasnt-worked/#emergency-cash">Emergency Cash</a></h2>

<p>This was a <em>horrific</em> situation. I was due in hospital to undergo a surgical procedure and the minicab driver was <em>screaming</em> at me to pay him in cash.  We'd booked the night before and paid in the cab firm's app. What we hadn't realised is that they'd outsourced the job to a different firm, who'd outsourced it to yet another firm. Somewhere along the way, the driver wasn't told it was a pre-paid fare.</p>

<p>We couldn't get hold of any of the firms so, reluctantly, we had to take cash out of an ATM using our credit card.  We didn't have a debit card with us - because we never use it.</p>

<p>The cab firm eventually gave us a refund, and the credit card company agreed not to charge us their usual extortionate interest rates for cash withdrawal.</p>

<p>Lesson learned - always take a taxi which is <em>required</em> to accept card, or confirm with the driver <em>before</em> travelling.</p>

<h2 id="lunch"><a href="https://shkspr.mobi/blog/2020/01/a-year-of-going-cashless-and-where-it-hasnt-worked/#lunch">Lunch</a></h2>

<p>Most of the lunch stalls near my work take card. The ones that refuse don't get my custom.</p>

<p>Except for this <em>amazing</em> salad bar round the corner. I took out a couple of fivers to pay for a massive box of salad. I did ask the owner a few times if he'd consider taking card. He said the only way he could keep the price low was with minimal overheads. Considering how long the queue was to pay - which often prevented people entering the venue - I think it'd pay back quickly. But it's not my position to tell him how to run his business.</p>

<h2 id="cheques"><a href="https://shkspr.mobi/blog/2020/01/a-year-of-going-cashless-and-where-it-hasnt-worked/#cheques">Cheques</a></h2>

<p>LOL! I haven't paid with a cheque in years. Annoyingly, a few companies decided to send me refunds via cheque.  My bank account doesn't have any local branches. So I either had to post them off, or use my backup bank.  I think I'll start having to charge a cheque-processing-fee for old-fashioned companies.</p>

<p>I suspect that companies send out refunds by cheque because they <em>know</em> it's a pain. I bet lots of them go uncashed.</p>

<h2 id="odds-and-sods"><a href="https://shkspr.mobi/blog/2020/01/a-year-of-going-cashless-and-where-it-hasnt-worked/#odds-and-sods">Odds and Sods</a></h2>

<p>Our local off-licence tried to charge us an <a href="https://www.gov.uk/government/news/card-surcharge-ban-means-no-more-nasty-surprises-for-shoppers">illegal card-fee</a>. So I walked out and left the bottles on the counter. Then reported them to Trading Standards.</p>

<p>Similarly, a few places have insisted on a minimum transaction amount - this is <a href="https://www.mobiletransaction.org/should-you-set-a-minimum-for-card-payments/">against the terms of most providers</a>. I've either picked up some sticks of gum, or bought elsewhere.</p>

<p>I received a few paper vouchers for a department store. They all had redemption codes, so I could use them online.</p>

<p>All of the plumbers and electricians I dealt with either accepted card or gave me their BACS details.  A couple of clicks later and they were paid.</p>

<p>For group events at work, no-one wanted to deal with cash. We either transferred the money directly to whoever was organising things, or each paid separately.</p>

<h2 id="things-i-wasnt-able-to-do"><a href="https://shkspr.mobi/blog/2020/01/a-year-of-going-cashless-and-where-it-hasnt-worked/#things-i-wasnt-able-to-do">Things I wasn't able to do</a></h2>

<p>The UK doesn't have much of a tipping culture. I used to round up the bill, or add a fiver, if I was paying cash. These days, most places have a button on the credit card terminal with a suggested gratuity amount, or a free-form entry.  I resent being forced to tip, so this seems like a sensible solution. Perhaps my tips don't go directly to the staff? That's not really my problem. Does that make me an arse?</p>

<p>No cash-in-hand discounts.  Again, there's not much of a haggling culture in the UK. Occasionally I've been able to say "What's the best price you can do" but no money off for undeclared income.</p>

<p>Donating to charity. I don't give to people in the street, and I don't put coins in buckets. The majority of my charitable spend goes via <a href="https://www.gov.uk/payroll-giving">Payroll Giving</a> for tax purposes.  But, most charities take contactless now:</p>

<blockquote class="social-embed" id="social-embed-869850124016644096" lang="en" itemscope="" itemtype="https://schema.org/SocialMediaPosting"><header class="social-embed-header" itemprop="author" itemscope="" itemtype="https://schema.org/Person"><a href="https://twitter.com/edent" class="social-embed-user" itemprop="url"><img class="social-embed-avatar social-embed-avatar-circle" src="data:image/webp;base64,UklGRkgBAABXRUJQVlA4IDwBAACQCACdASowADAAPrVQn0ynJCKiJyto4BaJaQAIIsx4Au9dhDqVA1i1RoRTO7nbdyy03nM5FhvV62goUj37tuxqpfpPeTBZvrJ78w0qAAD+/hVyFHvYXIrMCjny0z7wqsB9/QE08xls/AQdXJFX0adG9lISsm6kV96J5FINBFXzHwfzMCr4N6r3z5/Aa/wfEoVGX3H976she3jyS8RqJv7Jw7bOxoTSPlu4gNbfXYZ9TnbdQ0MNnMObyaRQLIu556jIj03zfJrVgqRM8GPwRoWb1M9AfzFe6Mtg13uEIqrTHmiuBpH+bTVB5EEQ3uby0C//XOAPJOFv4QV8RZDPQd517Khyba8Jlr97j2kIBJD9K3mbOHSHiQDasj6Y3forATbIg4QZHxWnCeqqMkVYfUAivuL0L/68mMnagAAA" alt="" itemprop="image"><div class="social-embed-user-names"><p class="social-embed-user-names-name" itemprop="name">Terence Eden is on Mastodon</p>@edent</div></a><img class="social-embed-logo" alt="Twitter" src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0Aaria-label%3D%22Twitter%22%20role%3D%22img%22%0AviewBox%3D%220%200%20512%20512%22%3E%3Cpath%0Ad%3D%22m0%200H512V512H0%22%0Afill%3D%22%23fff%22%2F%3E%3Cpath%20fill%3D%22%231d9bf0%22%20d%3D%22m458%20140q-23%2010-45%2012%2025-15%2034-43-24%2014-50%2019a79%2079%200%2000-135%2072q-101-7-163-83a80%2080%200%200024%20106q-17%200-36-10s-3%2062%2064%2079q-19%205-36%201s15%2053%2074%2055q-50%2040-117%2033a224%20224%200%2000346-200q23-16%2040-41%22%2F%3E%3C%2Fsvg%3E"></header><section class="social-embed-text" itemprop="articleBody">Nifty! Charity using NFC payments to solicit for donations. <a href="https://twitter.com/edent/status/869850124016644096/photo/1">pic.x.com/4hag3gzvet</a><div class="social-embed-media-grid"><a href="https://pbs.twimg.com/media/DBJUEkLWsAAD9dD.jpg" class="social-embed-media-link"><img class="social-embed-media" alt="The window of a Cancer Research charity shop in London. There is a payment terminal built into the window. People tap their credit cards against the window and a £1 donation is made. " src="data:image/webp;base64,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"></a></div></section><hr class="social-embed-hr"><footer class="social-embed-footer"><a href="https://twitter.com/edent/status/869850124016644096"><span aria-label="6 likes" class="social-embed-meta">❤️ 6</span><span aria-label="3 replies" class="social-embed-meta">💬 3</span><span aria-label="0 reposts" class="social-embed-meta">🔁 0</span><time datetime="2017-05-31T09:36:45.000Z" itemprop="datePublished">09:36 - Wed 31 May 2017</time></a></footer></blockquote>

<h2 id="privacy"><a href="https://shkspr.mobi/blog/2020/01/a-year-of-going-cashless-and-where-it-hasnt-worked/#privacy">Privacy</a></h2>

<p>Oh no! Someone can track my spending!!!  I literally don't care.  Middle-aged bloke spends too much on beer and electronic gadgets. Shock.  I catch the same train to work each day. Scandal!</p>

<p>Perhaps I'm being naïve. I'm not involved in anything revolutionary or seditious. I'm not buying illicit pharmaceuticals or private entertainment services. Maybe I'm complicit in bringing forth a dystopia - but I place a high value on convenience.</p>

<p>Please argue in the comments about why I'm wrong.</p>

<h2 id="lessons"><a href="https://shkspr.mobi/blog/2020/01/a-year-of-going-cashless-and-where-it-hasnt-worked/#lessons">Lessons</a></h2>

<p>In the UK, if you live in a city and have a credit card, it is absolutely possible to live without cash.  I'm lucky that the public transport options where I've lived are modern and accept contactless.</p>

<p>With the exception of an angry taxi-driver, no one has been upset that I didn't want to use cash.</p>

<p>The vast majority of my transactions were via Google Pay. I waved my phone near the terminal, and the rail barriers open as if by magic.</p>

<p>Foreign travel was painless - but we weren't exactly going off the beaten track.</p>

<p>Tracking my own spending using <a href="https://shkspr.mobi/blog/2018/11/review-moneydashboard/">Money Dashboard</a> became much easier. We can look at our household budget and quickly see where we're wasting money.</p>

<p>So, could you go cashless for 2020? If not, what's stopping you?</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=33729&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2020/01/a-year-of-going-cashless-and-where-it-hasnt-worked/feed/</wfw:commentRss>
			<slash:comments>83</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[I Am No Longer a Vodafone Shareholder]]></title>
		<link>https://shkspr.mobi/blog/2011/11/i-am-no-longer-a-vodafone-shareholder/</link>
					<comments>https://shkspr.mobi/blog/2011/11/i-am-no-longer-a-vodafone-shareholder/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Thu, 17 Nov 2011 08:00:56 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[finance]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[shares]]></category>
		<category><![CDATA[vodafone]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=4758</guid>

					<description><![CDATA[As many of you know, I worked for Vodafone for nearly 7 years.  I left shortly before the &#34;entirely legal and justified tax avoidance&#34; scandal came to light.  I didn&#039;t know anything about the tax issues while I was working there - other than the fact I had some colleagues working in Luxembourg - otherwise (I like to think) I may have raised the matter internally.  Not that the accountants would…]]></description>
										<content:encoded><![CDATA[<p>As many of you know, I worked for Vodafone for nearly 7 years.  I left shortly before the "entirely legal and justified tax avoidance" scandal came to light.</p>

<p>I didn't know anything about the tax issues while I was working there - other than the fact I had some colleagues working in Luxembourg - otherwise (I like to think) I may have raised the matter internally.  Not that the accountants would have listened to me...</p>

<p>Since leaving Vodafone, I haven't felt able to criticise it too harshly.  Partly because many of my friends still work there, partly because I still do business with Vodafone, but - mostly - because I felt like a hypocrite.</p>

<p>As is normal in large, publicly traded companies, employees were awarded shares.  Every year part of my remuneration was in the form of shares or share options.  When I was made redundant from Vodafone, many of those shares vested.</p>

<p>However, for rather boring tax reasons, I wasn't able to sell all of them to help fund my new business.  So I hung on to them. Until this week.</p>

<p>Two days ago, I sold every last share I had in Vodafone.</p>

<p>I don't know if you've ever sold shares before - but it's incredibly stressful.  The easy way to do it is to set a sell price.  So you say "If the shares hit X, sell".  Then you sit back, relax, and wait for your target to be hit.</p>

<p>That's not what I did.  I did it the scary way.</p>

<p>You say how many shares you want to sell, hit a big scary button, then you get given an offer for your shares.  You then have <strong>15 seconds</strong> to accept the offer!</p>

<p>That 15 seconds passes really fucking quickly.  Is that enough? What if I get more next time? What if I get <em>less</em>? It's like a giant slot machine of doom.  You hit "spin" again. In that 15 seconds you've lost £37.50.  You hit spin again.  You're now up £50 - all in the blink of an eye. So you spin again - it must be on an upward streak, right? <strong>Wrong</strong>! Down a tenner - all in the space of a minute.</p>

<p>It's enough to drive you insane.  But that's not the worst part.</p>

<p>Eventually, you hit sell.  It's an elating feeling.  All those years of hard work.  All that patience.  All the times you silently said to yourself "one day... one day".  Now suddenly realised as cold, hard cash.  No more waiting. No more worrying.  No more little nest egg.</p>

<p>The next day I did the stupidest thing imaginable.  I checked the Vodafone share price.</p>

<p><strong>Fool</strong>!  It was up.  Only a single point.  But it was up. Had I waited a day, would I be richer? If I'd had the courage to wait <em>just five more minutes</em>?  Would I be happier?</p>

<p>What if they went up the next day? And the day after that? Far from being a canny investor, was I just a schmuck?  Every time I saw the share price would I silently curse myself for being an idiot?  Oh no!</p>

<p>The next day, the Vodafone share price was down nearly 4%! I'd done it! I'd beaten the stock market!  I was one of the masters of the universe!  I was a share trading genius.  Time to pack up my job and become a trader.</p>

<p>Or not.  That single minute of panic was enough for me.  I don't think the highs of the occasional win would offset the inevitable, terrifying losses.  It wasn't pleasant gambling with my own money; I can't imagine how I'd feel if I lost someone else's hard earned cash.</p>

<p>So, on the one hand, it's good to know I'm not an utter psychopath. On the other hand, I'll never become one of the 1%.</p>

<p>I am indebted to <a href="http://www.iii.co.uk/">Interactive Investor</a> for making my share dealing as cheap and hassle-free as possible.</p>

<p>What am I going to do with my money? Go on a massive blow-out bender? Piss it up the wall? Stash it in the Cayman Islands?</p>

<p>Nah! I'm going solar powered!  And that, dear friends, is a tale for tomorrow's blog...</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=4758&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2011/11/i-am-no-longer-a-vodafone-shareholder/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
