<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">

<channel>
	<title>Financial Insights-Wealth Advisor Brad Pine</title>
	<atom:link href="https://blog.bradpine.com/feed/" rel="self" type="application/rss+xml"/>
	<link>https://blog.bradpine.com</link>
	<description>Financial Insights for Investors</description>
	<lastBuildDate>Tue, 23 Jul 2024 20:39:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
<site xmlns="com-wordpress:feed-additions:1">35516178</site>	<item>
		<title>Compounded Interest Calculator</title>
		<link>https://blog.bradpine.com/2024/07/19/the-power-of-compounded-interest/</link>
		
		<dc:creator><![CDATA[Bradford Pine]]></dc:creator>
		<pubDate>Fri, 19 Jul 2024 10:04:00 +0000</pubDate>
				<category><![CDATA[Economic Notes]]></category>
		<guid isPermaLink="false">https://blog.bradpine.com/?p=2889</guid>

					<description><![CDATA[<p>Compound interest is a fundamental concept in wealth building, where your investment earns interest not only on the initial principal but also on the accumulated interest over time. This &#8220;interest on interest&#8221; effect can significantly boost your savings, especially over long periods. Understanding and leveraging compound interest can be a game-changer in achieving your financial [&#8230;]</p>
The post <a href="https://blog.bradpine.com/2024/07/19/the-power-of-compounded-interest/">Compounded Interest Calculator</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></description>
										<content:encoded><![CDATA[<p>Compound interest is a fundamental concept in wealth building, where your investment earns interest not only on the initial principal but also on the accumulated interest over time. This &#8220;interest on interest&#8221; effect can significantly boost your savings, especially over long periods. Understanding and leveraging compound interest can be a game-changer in achieving your financial goals.</p>



<div class="wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-16018d1d wp-block-buttons-is-layout-flex">
<div class="wp-block-button has-custom-font-size is-style-fill has-small-font-size"><a class="wp-block-button__link has-white-color has-text-color has-background has-link-color has-text-align-left wp-element-button" href="#watch-video-cta" style="border-radius:8px;background:linear-gradient(84deg,rgb(0,110,174) 0%,rgb(16,51,74) 100%)"><strong>Click here to view our 4-minute video detailing the power of compounded interest</strong></a></div>
</div>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Compound Interest Calculator</title>
<style>
:root {
  --primary-color: #10334A;
  --background-color: #EAE7E2;
  --border-color: #d8d9da;
  --text-color: #333;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto;
}

.grid-container > div { 
  
}

.item1 {
    background-color: var(--background-color);
    border-radius: 8px 0px 0px 8px;
    border-color: var(--border-color);
    border-style: solid;
    border-width: 1px;
}

.item2 {
    border-color: var(--border-color);
    border-style: solid;
    border-width: 1px;
    padding: .5rem;
    background-color: #fff;
	border-radius: 0px 8px 8px 0px;
}

@media only screen and (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
  #calculator, .item2 {
    padding: 1rem;
  }
}

#calculator {
    padding: .5rem;
    /* margin-bottom: .5rem; */
    display: flex;
    flex-direction: column;
    gap: .25rem;
    /* font-family: Gotham, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, sans-serif; */
    /* font-size: 15px; */
}

input[type=number], #frequency, #contributionFrequency, #rate, #principal, #contribution {
    font-family: Gotham, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, sans-serif;
    padding: .5rem 0.5rem .5rem 0.75rem;
    font-size: 15px;
    background-color: #fff;
    border: 1px solid #8b8c8f;
    border-radius: .125rem;
    outline: none;
	margin-bottom: 10px;
}
	

#result {
  font-family: Gotham, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}

.calc-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 5px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Gotham, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 15px;
}

.input-prefix, .input-suffix {
  position: relative;
}

.input-prefix::before, .input-suffix::after {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    /* font-size: larger; */
}

.input-prefix::before {
  content: '$';
  padding-right: 10px;
  left: 5px;
  font-family: Gotham, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, sans-serif;
}

.input-suffix::after {
  content: '%';
  right: 30px;
}

.input-prefix input,
.input-suffix input {
  padding-left: 25px;
}

.input-suffix input {
  padding-right: 25px;
}
</style>
</head>
<body>

<div class="grid-container">
  <div class="item1">
    <div id="calculator">
      <h3>Investment details</h3>
      <label for="principal">Initial Investment:</label>
      <div class="input-prefix">
        <input type="text" id="principal" value="0">
      </div>

      <label for="rate">Annual Interest Rate:</label>
      <div class="input-suffix">
        <input type="number" id="rate" step="0.1" value="0">
      </div>

      <label for="time">Number of Years:</label>
      <input type="number" id="time" value="0">

      <label for="frequency">Compound Frequency:</label>
      <select id="frequency">
        <option value="365">Daily</option>
        <option value="12">Monthly</option>
        <option value="1">Yearly</option>
      </select>

      <label for="contribution">Additional Contribution:</label>
      <div class="input-prefix">
        <input type="text" id="contribution" value="0">
      </div>

      <label for="contributionFrequency">Contribution Frequency:</label>
      <select id="contributionFrequency">
        <option value="12">Monthly</option>
        <option value="1">Annually</option>
      </select>

      <button class="calc-btn" onclick="calculate()">Calculate</button>
    </div>
  </div>
<div class="item2">
    <div id="result"></div>
    <div style="height: 400px; position: relative;"> <!-- Adjust this height as needed -->
        <canvas id="interestChart"></canvas>
        <p>This example demonstrates how interest is calculated not only on your initial deposit but also on the interest accumulated over time, showing the powerful effect of compound interest.</p>
    </div>
</div>
</div>

<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
let chart; // Declare chart as a global variable

function formatNumber(num) {
  return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}

function parseFormattedNumber(str) {
  return parseFloat(str.replace(/,/g, ''));
}

function compound_interest_with_contribution(principal, rate, time, compounds_per_year, contribution, contributionFrequency) {
    let amount = principal;
    let total_contributions = principal;
    const periods = time * 12;
    const contributionPeriods = 12 / contributionFrequency;
    
    for (let t = 1; t <= periods; t++) {
        amount = amount * Math.pow((1 + rate/compounds_per_year), (compounds_per_year / 12));
        if (t % contributionPeriods === 0) {
            amount += contribution;
            total_contributions += contribution;
        }
    }
    return {amount: amount, earned_interest: amount - total_contributions, total_contributions: total_contributions};
}

function calculate() {
    const principal = parseFormattedNumber(document.getElementById('principal').value);
    const rate = parseFloat(document.getElementById('rate').value) / 100;
    const time = parseInt(document.getElementById('time').value);
    const frequency = parseInt(document.getElementById('frequency').value);
    const contribution = parseFormattedNumber(document.getElementById('contribution').value);
    const contributionFrequency = parseInt(document.getElementById('contributionFrequency').value);

    const years = [];
    const totalValues = [];
    const principleValues = [];
    const earnedInterestValues = [];

    for (let t = 0; t <= time; t++) {
        years.push(t);
        const result = compound_interest_with_contribution(principal, rate, t, frequency, contribution, contributionFrequency);
        totalValues.push(result.amount);
        principleValues.push(result.total_contributions);
        earnedInterestValues.push(result.earned_interest);
    }

    document.getElementById('result').innerHTML = 
        `Total Balance: <span id="total-balance" style="font-weight: bold; color: #10334A;">$${formatNumber(totalValues[totalValues.length-1].toFixed(2))}</span></br>`+ 
        `Total Invested: <span id="total-balance" style="font-weight: bold; color: #10334A;">$${principleValues[principleValues.length-1].toFixed(2)}</span>`;

    updateChart(years, principleValues, earnedInterestValues);
}

function updateChart(years, principleValues, earnedInterestValues) {
    const ctx = document.getElementById('interestChart').getContext('2d');
    
    if (chart) {
        chart.destroy(); // Destroy the old chart if it exists
    }

    chart = new Chart(ctx, {
        type: 'line',
        data: {
            labels: years,
            datasets: [{
                label: 'Total Invested',
                data: principleValues,
                borderColor: '#4CAF50',
                fill: false
            },
            {
                label: 'Total Interest',
                data: earnedInterestValues,
                borderColor: '#10334A',
                fill: false
            }]
        },
        options: {
            responsive: true,
            maintainAspectRatio: false,
            plugins: {
                legend: {
                    position: 'bottom',
                    labels: {
                        boxWidth: 20,
                        padding: 20
                    }
                },
                title: {
                    display: false
                }
            },
            scales: {
                x: {
                    title: {
                        display: true,
                        text: 'Years'
                    }
                },
                y: {
                    title: {
                        display: true,
                        text: 'Amount'
                    },
                    ticks: {
                        callback: function(value, index, values) {
                            return '$' + formatNumber(value.toFixed(0));
                        }
                    }
                }
            },
            tooltips: {
                callbacks: {
                    label: function(tooltipItem, data) {
                        return data.datasets[tooltipItem.datasetIndex].label + ': $' + 
                               formatNumber(tooltipItem.yLabel.toFixed(2));
                    }
                }
            }
        }
    });
}

// Add event listeners to all input elements
const inputs = document.querySelectorAll('#calculator input, #calculator select');
inputs.forEach(input => {
    input.addEventListener('input', calculate);
});

// Add event listeners to format numbers with commas
document.getElementById('principal').addEventListener('blur', function(e) {
    this.value = formatNumber(parseFormattedNumber(this.value));
});
document.getElementById('contribution').addEventListener('blur', function(e) {
    this.value = formatNumber(parseFormattedNumber(this.value));
});

// Initialize the calculator
calculate();
</script>

</body>
</html>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<p><strong>Instructions:</strong></p>



<ol class="wp-block-list">
<li><strong>Enter Initial Principal:</strong> The amount of money you start with.</li>



<li><strong>Estimated Rate of Return (%):</strong> The annual return rate you expect to earn on your investment.</li>



<li><strong>Contribution Frequency:</strong> How often you plan to add to your investment (e.g., monthly, annually).</li>



<li><strong>Number of Years:</strong> The total period over which you plan to invest.</li>



<li><strong>Additional Contribution:</strong> The amount you will contribute at each frequency interval.</li>
</ol>



<p><strong>Example Calculation</strong></p>



<p>Let&#8217;s say you want to invest $10,000 in a savings account with a 5% annual yield, compounded daily. You don&#8217;t plan to add additional funds after your initial deposit. Here&#8217;s how you would use the calculator:</p>



<ul class="wp-block-list">
<li><strong>Initial Deposit:</strong> $10,000</li>



<li><strong>Contribution Amount:</strong> $0 (since no additional contributions will be made)</li>



<li><strong>Contribution Frequency:</strong> Ignore this field</li>



<li><strong>Years of Growth:</strong> 1 (start with 1 year, then increase to see longer-term growth)</li>



<li><strong>Estimated Rate of Return:</strong> 5%</li>



<li><strong>Compound Frequency:</strong> Daily</li>
</ul>



<p><strong>Example Results:</strong></p>



<ul class="wp-block-list">
<li><strong>After 1 Year:</strong>
<ul class="wp-block-list">
<li>Interest Earned: $512.67</li>



<li>Total Balance: $10,512.67</li>
</ul>
</li>



<li><strong>After 2 Years:</strong>
<ul class="wp-block-list">
<li>Interest Earned in Year 2: $538.96</li>



<li>Total Interest Earned Over 2 Years: $1,051.63</li>



<li>Total Balance: $11,051.63</li>
</ul>
</li>



<li><strong>After 10 Years:</strong>
<ul class="wp-block-list">
<li>Total Interest Earned: $6,486.65</li>



<li>Total Balance: $16,486.65</li>
</ul>
</li>
</ul>



<p>The hypothetical example is for illustration purposes only, not intended to be a recommendation or tax/legal advice.</p>



<div id="watch-video-cta" class="wp-block-group watch-video-cta has-white-background-color has-background" style="border: 1px solid #cccccc; border-radius: 8px; padding: 10px;"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">

<h2 class="wp-block-heading"><strong>Watch our video: &#8220;The Power of Creating Wealth Using Compound Interest – Everyone, Especially The Young Should Know&#8221;</strong></h2>


<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">

<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">

<figure class="wp-block-image size-large"><a href="https://youtu.be/-vp8UWp_rcM?si=_To6zOhs_dGmnwqc"><img decoding="async" width="1024" height="576" src="https://blog.bradpine.com/wp-content/uploads/2024/07/Final-Thumbnail-for-Compounded-Interest-play-1024x576.png" alt="" class="wp-image-2890" srcset="https://blog.bradpine.com/wp-content/uploads/2024/07/Final-Thumbnail-for-Compounded-Interest-play-1024x576.png 1024w, https://blog.bradpine.com/wp-content/uploads/2024/07/Final-Thumbnail-for-Compounded-Interest-play-300x169.png 300w, https://blog.bradpine.com/wp-content/uploads/2024/07/Final-Thumbnail-for-Compounded-Interest-play-768x432.png 768w, https://blog.bradpine.com/wp-content/uploads/2024/07/Final-Thumbnail-for-Compounded-Interest-play.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>

</div>


<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">

<p>Learn why compound interest is essential, especially for young investors, and how you can harness its power to grow your wealth. Don&#8217;t miss out on this valuable knowledge that can set you on the path to financial success.</p>

</div>

</div>

</div></div>The post <a href="https://blog.bradpine.com/2024/07/19/the-power-of-compounded-interest/">Compounded Interest Calculator</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2889</post-id>	</item>
		<item>
		<title>The Replacement Ratio Method: How Much Income Do You Really Need in Retirement?</title>
		<link>https://blog.bradpine.com/2023/10/13/the-replacement-ratio-method-how-much-income-do-you-really-need-in-retirement/</link>
		
		<dc:creator><![CDATA[Bradford Pine]]></dc:creator>
		<pubDate>Fri, 13 Oct 2023 18:22:23 +0000</pubDate>
				<category><![CDATA[Retirement Planning]]></category>
		<guid isPermaLink="false">https://blog.bradpine.com/?p=2823</guid>

					<description><![CDATA[<p>Retirement planning can seem daunting, but there are easy techniques to estimate your retirement income. One of these methods is the replacement ratio, a simple calculation that provides valuable insights into your financial situation after retirement. In this blog post, we will explore everything you need to know about the replacement ratio and how to [&#8230;]</p>
The post <a href="https://blog.bradpine.com/2023/10/13/the-replacement-ratio-method-how-much-income-do-you-really-need-in-retirement/">The Replacement Ratio Method: How Much Income Do You Really Need in Retirement?</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></description>
										<content:encoded><![CDATA[<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="779" height="618" src="https://blog.bradpine.com/wp-content/uploads/2023/10/BPWG_Expense-Analysis-Worksheet-pdf.png" alt="expense analysis" class="wp-image-2826" srcset="https://blog.bradpine.com/wp-content/uploads/2023/10/BPWG_Expense-Analysis-Worksheet-pdf.png 779w, https://blog.bradpine.com/wp-content/uploads/2023/10/BPWG_Expense-Analysis-Worksheet-pdf-300x238.png 300w, https://blog.bradpine.com/wp-content/uploads/2023/10/BPWG_Expense-Analysis-Worksheet-pdf-768x609.png 768w" sizes="auto, (max-width: 779px) 100vw, 779px" /></figure>



<p>Retirement planning can seem daunting, but there are easy techniques to estimate your retirement income. One of these methods is the replacement ratio, a simple calculation that provides valuable insights into your financial situation after retirement. In this blog post, we will explore everything you need to know about the replacement ratio and how to make it work for you. For a more in-depth discussion on this topic, I suggest watching my video titled &#8220;Conquering the Fear of Running Out of Money in Retirement.&#8221;  (<a href="https://www.youtube.com/watch?v=q_vQusDjIGw" target="_blank" rel="noopener" title="">Click Here to Watch</a>)<br></p>



<h2 class="wp-block-heading">Understanding the Replacement Ratio</h2>



<p>The replacement ratio serves as a valuable retirement planning tool, allowing you to estimate the portion of your working income required to sustain your pre-retirement lifestyle throughout retirement. Generally, it is recommended that you aim for 70 to 85 percent of your pre-retirement income during this phase.</p>



<p>This percentage is derived from various assumptions and factors.</p>



<ol class="wp-block-list">
<li>Decreased Expenses: You can bid farewell to work-related costs, such as commuting expenses and professional attire.</li>



<li>Lower Taxes: Your tax burden may decrease as some retirement income, like Social Security, may not be subject to taxation or may be taxed at a lower rate.</li>



<li>No More Retirement Savings: You will no longer need to allocate a portion of your income towards saving for retirement.</li>



<li>Independent Dependents: With financially independent children and potentially retired spouses, you will have fewer dependents to support.</li>



<li>Debt Reduction: By the time you retire, you may have already paid off significant debts, such as your mortgage.</li>
</ol>



<h2 class="wp-block-heading">Pros and Cons of the Replacement Ratio</h2>



<p>Similar to any financial planning tool, the replacement ratio has its advantages and drawbacks.</p>



<h3 class="wp-block-heading">Advantages:</h3>



<ol class="wp-block-list">
<li><strong>Simplicity</strong>: It offers an easy-to-understand calculation, making it accessible to a wide range of individuals.</li>



<li><strong>Flexibility</strong>: The replacement ratio can adapt to changing incomes and lifestyles as time goes on.</li>



<li><strong>Visibility</strong>: It transforms the abstract concept of retirement income into a tangible goal to strive for.</li>
</ol>



<h3 class="wp-block-heading">Drawbacks:</h3>



<ol class="wp-block-list">
<li>Making the Replacement Ratio Work for You: It relies on a standardized calculation that may overlook individual variations.</li>



<li>Assumptions: Some assumptions, such as lower expenses and the absence of debt, may not be applicable to everyone. Moreover, predicting future tax policies introduces uncertainty.</li>



<li>Timing: It may not be suitable for individuals approaching retirement in the next few years, as their current and projected expenses require a more comprehensive analysis.</li>



<li>Rising Costs: Recent trends, including increased medical expenses, long-term care, and the potential for higher taxes, can challenge the accuracy of the replacement ratio.</li>
</ol>



<p>Calculating your replacement ratio can be a valuable starting point for retirement planning. To simplify this process, I have included my expense analysis worksheet.</p>



<p>You can download it <strong><a href="https://bit.ly/Expense-Analysis-Worksheet-BPWG" target="_blank" rel="noopener" title="">[here]</a></strong>.&nbsp;</p>



<p>The next crucial step is to determine how you will generate this income. Common sources include Social Security, pensions, and personal savings. It is important to regularly recalculate your replacement ratio to assess if any adjustments are necessary, taking into account factors such as job changes, market performance, and life events.</p>



<p>Remember, the replacement ratio serves as a guideline for those whose retirement plans are five or more years away. As you approach retirement or if you have already retired, it is advisable to conduct a detailed analysis of your expenses and projected retirement income.</p>



<p>As mentioned earlier, the <a href="https://bit.ly/Expense-Analysis-Worksheet-BPWG" target="_blank" rel="noopener" title="">expense analysis</a> worksheet can be extremely useful for this purpose.<br></p>



<h2 class="wp-block-heading">Conclusion</h2>



<p>The replacement ratio method is a powerful tool for estimating your retirement income needs. While it does have its limitations, when used wisely and in conjunction with professional guidance, it can offer valuable insights and assist you on your journey towards a financially secure retirement. So, take that first step, calculate your replacement ratio, and embark on the path to a worry-free retirement. For more valuable insights on this topic, don&#8217;t forget to watch my video, &#8220;<a href="https://www.youtube.com/watch?v=q_vQusDjIGw" target="_blank" rel="noopener" title="">Conquering the Fear of Running Out of Money in Retirement.</a>&#8220;</p>The post <a href="https://blog.bradpine.com/2023/10/13/the-replacement-ratio-method-how-much-income-do-you-really-need-in-retirement/">The Replacement Ratio Method: How Much Income Do You Really Need in Retirement?</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2823</post-id>	</item>
		<item>
		<title>Do You Have Emergency Airbags installed On Your Investment Portfolio? (Coronavirus Volatility)</title>
		<link>https://blog.bradpine.com/2020/03/02/do-you-have-emergency-airbags-installed-on-your-investment-portfolio-coronavirus-volatility/</link>
		
		<dc:creator><![CDATA[Bradford Pine]]></dc:creator>
		<pubDate>Tue, 03 Mar 2020 02:58:26 +0000</pubDate>
				<category><![CDATA[Individual Investors]]></category>
		<category><![CDATA[bradford pine wealth group]]></category>
		<category><![CDATA[Coronavirus]]></category>
		<category><![CDATA[Customized Portfolio]]></category>
		<category><![CDATA[financial advisor]]></category>
		<category><![CDATA[Investments]]></category>
		<category><![CDATA[Market Volatility]]></category>
		<category><![CDATA[risk management]]></category>
		<category><![CDATA[tax efficient]]></category>
		<category><![CDATA[Wealth Advisor Garden City NY]]></category>
		<guid isPermaLink="false">https://blog.bradpine.com/?p=2748</guid>

					<description><![CDATA[<p>Between the late-February market selloff due to Coronavirus fears and the record highs achieved in January, I’ve spent a lot of time this year fielding questions about whether it might be time to pull out of the markets. Surprising, right? But both rise in performance and a drop in performance can spark the same kinds [&#8230;]</p>
The post <a href="https://blog.bradpine.com/2020/03/02/do-you-have-emergency-airbags-installed-on-your-investment-portfolio-coronavirus-volatility/">Do You Have Emergency Airbags installed On Your Investment Portfolio? (Coronavirus Volatility)</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></description>
										<content:encoded><![CDATA[<div class="wp-block-image is-style-circle-mask"><figure class="aligncenter size-medium"><img loading="lazy" decoding="async" width="300" height="225" src="https://blog.bradpine.com/wp-content/uploads/2020/03/Bradford-Pine-Wealth-Group-1024x768-1-300x225.jpg" alt="" class="wp-image-2750" srcset="https://blog.bradpine.com/wp-content/uploads/2020/03/Bradford-Pine-Wealth-Group-1024x768-1-300x225.jpg 300w, https://blog.bradpine.com/wp-content/uploads/2020/03/Bradford-Pine-Wealth-Group-1024x768-1-768x576.jpg 768w, https://blog.bradpine.com/wp-content/uploads/2020/03/Bradford-Pine-Wealth-Group-1024x768-1.jpg 1024w" sizes="auto, (max-width: 300px) 100vw, 300px" /></figure></div>



<p class="has-drop-cap has-medium-font-size"><strong>Between the late-February market selloff due to Coronavirus fears and the record highs achieved in January, I’ve spent a lot of time this year fielding questions about whether it might be time to pull out of the markets. Surprising, right? But both rise in performance and a drop in performance can spark the same kinds of concerns.&nbsp;&nbsp; </strong></p>



<p class="has-medium-font-size"><strong>The concept of selling in these situations can be summed up as the “up a lot” and “down a lot” styles of investing: markets are “up a lot” so we should get out before they fall, or markets are “down a lot” so it must be time to get out before it gets worse. </strong></p>



<p class="has-medium-font-size"><strong>That might sound sensible in general terms, but try to imagine what it would be like to manage a portfolio like this. What does “a lot” actually mean? Which asset classes would make for a “safer” alternative? How much do you sell, and why? In my view, the “down a lot” approach is even more threatening to your financial security: it’s like thinking you might be at risk of an accident and <em>knowing</em> your car has airbags, but deciding to jump out anyway. Psychologically jumping out of a moving car has now become the better choice than the unknown (aka fear). </strong></p>



<p class="has-medium-font-size"><strong>These strategies are, in my opinion, a dangerous take on active management. But there is an alternative to both. </strong></p>



<h2 class="has-text-color wp-block-heading" style="color:#3166ab"><strong>What makes for good active management? </strong></h2>



<p class="has-medium-font-size"><strong>Most of my readers know that I’m a supporter of active management as a means of mitigating risk and uncovering opportunities. But as I tell my clients, active management is very different from trying to time the market based on past performance or a gut feeling, like the “up a lot” or “down a lot” philosophies. </strong></p>



<p class="has-medium-font-size"><strong>Rather than making decisions solely on markets rising and falling, I think it’s important to look at how the underlying economic picture is developing. Looking at a broad range of economic indicators can provide a more nuanced view of the economy and where things might be heading. </strong></p>



<p class="has-medium-font-size"><strong>One of the active managers I turn to for my clients’ portfolios does exactly that: the portfolio managers <em><span style="text-decoration: underline;">keep track of about 20 different indicators touching every aspect of the economy</span></em>, from consumer behavior to geopolitical risk and business outlook. Taken together, these analyses provide a tapestry of information. This can be assessed as a whole to help provide a picture of the potential risks facing the markets. </strong></p>



<p class="has-medium-font-size"><strong>Using that information, portfolios can be adjusted to mitigate the impact of growing risk in the economy and to potentially help avoid the impact of severe market downturns.</strong></p>



<h2 class="has-text-color wp-block-heading" style="color:#3166ab"><strong>How does that look for clients – and what’s the
difference? </strong></h2>



<p class="has-medium-font-size">I<strong>n my opinion, is a significantly different approach compared to the way most portfolios are managed. </strong></p>



<p class="has-medium-font-size"><strong>Most active investment managers will create a core asset allocation and perhaps include a “risk budget,” or some limits to the amount of volatility allowed in the portfolio. A manager might incorporate some economic indicators into this strategy and have a process for tactical decision-making. However, that’s where most of them will stop. </strong></p>



<p class="has-medium-font-size"><strong>But what I like about the approach I recommend is an important additional step: <em><span style="text-decoration: underline;">personalized/customer risk management. </span></em></strong></p>



<p class="has-medium-font-size"><strong>What many of my clients fear above all is another 2008. Taking these kinds of non-normal events (aka black swan events) into account and factoring in an investor’s specific individual needs means that we can seek to better control volatility through any market cycle. </strong></p>



<p class="has-medium-font-size"><strong>Combined with the broad economic projections we talked about above, this is the next level of active management, <em><span style="text-decoration: underline;">one that is both highly tailored to the individual (pinpointing their own risk threshold) and highly attuned to the possible directions of the economy at the same time</span>.</em> </strong></p>



<p class="has-medium-font-size"><strong>These are the airbags in your portfolio, and when they’re deployed they can help to cushion the blow of an economic turn for the worst. </strong></p>



<h2 class="has-text-color wp-block-heading" style="color:#3166ab"><strong>Engineering versus emotion </strong></h2>



<p class="has-medium-font-size"><strong>Designing a portfolio that works like this is a lot like building a car: it takes engineering, not emotion. The process relies on having the discipline to spot big risks and build a portfolio that can deploy the airbags at the right moment. When that airbag is deployed, you start taking steps to move from riskier assets to more conservative assets, and even towards cash if the road starts to look very treacherous.</strong></p>



<p class="has-medium-font-size"><strong>In my view, this is so important. It’s very easy to get caught up in the latest news about a single economic indicator or a single geopolitical headlines, including the Coronavirus,. It’s hard not to fall into it: the news is loud and it tends to focus on one big story at a time. The unknown is always the scariest: as Franklin D. Roosevelt said, “The only thing we have to fear is fear itself.”</strong></p>



<p class="has-medium-font-size"><strong>But the economy is far more complicated than headlines, and it’s important to have a process in place for analyzing it – and reacting to it.</strong> </p>



<p class="has-medium-font-size"><strong>On the other hand, a lot of advisors will invest your money in a long-only model portfolio that won’t adjust when the market turns – and more importantly won’t increase the cash allocation if they are forecasting a recession. Even if they’re nervous, these advisors are unlikely to make any changes to help preserve your savings; you’ll just have to grin and bear whatever the market brings. I think this is also a mistake.</strong></p>



<p class="has-medium-font-size"><strong>For me, the key is to be responsive to the market <em>without </em>getting emotional. Rather than relying on rules of thumb, build a strategy that can give you all the benefits of well-designed and well-engineered risk management. </strong></p>



<p class="has-medium-font-size"><strong>For more information on this modern, personalized approach to risk investment management, <a href="https://blog.bradpine.com/2019/03/27/the-true-evolution-of-investing-personalized-customized-tax-efficient/" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">click here</a> for a more detailed article about my approach.</strong></p>



<p>.</p>



<p> <em>Written by <a rel="noreferrer noopener" href="http://www.bradfordpinewealth.com/About-Bradford-Pine.5.htm" target="_blank">Bradford Pine</a> with Anna B. Wroblewska</em> </p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" class="youtube-player" width="600" height="338" src="https://www.youtube.com/embed/6RwE-Gw_E-s?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe>
</div></figure>



<p> To learn about retirement savings, download my free eBook, “<a rel="noreferrer noopener" href="https://blog.bradpine.com/10-tips-you-need-to-know-about-your-ira-rollover/" target="_blank">10 Tips You Need to Know About Your IRA Rollover</a>.”  This short book is packed with critical information that will help you  make the right decisions about your retirement savings. </p>The post <a href="https://blog.bradpine.com/2020/03/02/do-you-have-emergency-airbags-installed-on-your-investment-portfolio-coronavirus-volatility/">Do You Have Emergency Airbags installed On Your Investment Portfolio? (Coronavirus Volatility)</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2748</post-id>	</item>
		<item>
		<title>The True Evolution of Investing: Personalized Customized &amp; Tax efficient</title>
		<link>https://blog.bradpine.com/2019/03/27/the-true-evolution-of-investing-personalized-customized-tax-efficient/</link>
		
		<dc:creator><![CDATA[Bradford Pine]]></dc:creator>
		<pubDate>Thu, 28 Mar 2019 01:16:36 +0000</pubDate>
				<category><![CDATA[Individual Investors]]></category>
		<category><![CDATA[bradford pine wealth group]]></category>
		<category><![CDATA[Cookie Cutter]]></category>
		<category><![CDATA[Customized Portfolio]]></category>
		<category><![CDATA[financial advisor]]></category>
		<category><![CDATA[tax efficient]]></category>
		<category><![CDATA[Wealth Advisor Garden City NY]]></category>
		<guid isPermaLink="false">https://blog.bradpine.com/?p=2691</guid>

					<description><![CDATA[<p>One of the major benefits of being an independent advisor is the ability to evolve and enhance my clients’ investment strategy choices. At the Bradford Pine Wealth Group (BPWG), we’re always on the lookout for more effective ways to offer my clients personalized, risk managed, and tax sensitive portfolios. As an independent advisor, I’m not [&#8230;]</p>
The post <a href="https://blog.bradpine.com/2019/03/27/the-true-evolution-of-investing-personalized-customized-tax-efficient/">The True Evolution of Investing: Personalized Customized & Tax efficient</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></description>
										<content:encoded><![CDATA[<div class="wp-block-image"><figure class="aligncenter"><img loading="lazy" decoding="async" width="500" height="500" src="https://blog.bradpine.com/wp-content/uploads/2017/05/bradford-pine-wealth-group-garden-city-new-york-wealth-advisor-covered-call-strategy-covered1.jpg" alt="" class="wp-image-2645" srcset="https://blog.bradpine.com/wp-content/uploads/2017/05/bradford-pine-wealth-group-garden-city-new-york-wealth-advisor-covered-call-strategy-covered1.jpg 500w, https://blog.bradpine.com/wp-content/uploads/2017/05/bradford-pine-wealth-group-garden-city-new-york-wealth-advisor-covered-call-strategy-covered1-150x150.jpg 150w, https://blog.bradpine.com/wp-content/uploads/2017/05/bradford-pine-wealth-group-garden-city-new-york-wealth-advisor-covered-call-strategy-covered1-300x300.jpg 300w" sizes="auto, (max-width: 500px) 100vw, 500px" /></figure></div>



<p class="has-drop-cap has-medium-font-size"><strong>One of the major benefits of being an independent advisor is the ability to evolve and enhance my clients’ investment strategy choices. At the Bradford Pine Wealth Group (BPWG), we’re always on the lookout for more effective ways to offer my clients personalized, risk managed, and tax sensitive portfolios. As an independent advisor, I’m not reliant on any one company to provide me with the best of what they have. Instead, it’s my view that I have the ability to provide my clients with the best of what’s out there overall (oftentimes people think they’re getting this kind of service when they’re actually not). </strong></p>



<p class="has-medium-font-size"><strong>In any case, after extensive due diligence process, BPWG recently forged a partnership (November 2018) with a large asset management company who will allow me to bring white glove service and a higher degree of customization to my clients’ investment portfolios. </strong></p>



<p class="has-medium-font-size"><strong>This wasn’t easy to find, as such a high level of service isn’t available at most firms.</strong></p>



<p class="has-medium-font-size"><strong>Truly individualized asset management can be difficult to offer because it requires expertise, technology, and sufficient infrastructure. That’s why so many investors are put in one-size-fits-all “model” portfolios which they don’t actually realize that they are in, and this also doesn&#8217;t meet their specific needs. At the same time, you probably recognize the value in having your preferences and financial needs addressed in your investment strategy. </strong></p>



<p class="has-medium-font-size"><strong>While my business has always been focused on providing truly </strong><em><strong>individual</strong></em><strong> investment management for each of my clients, this relationship gives me the opportunity to offer so much more. Investors with $1 million in investable assets now have the ability to access a customized and actively managed portfolio, which means a lot – in my opinion, it is a strategy comparable to those used by institutional investors. </strong></p>



<p class="has-medium-font-size"><strong>Of course, that doesn’t mean it’s for everyone: if you choose to stay in your well-diversified model portfolio you can still receive a lot of the benefits of diversification and market exposure. But here’s why this approach to portfolio management matters so much to me as an advisor – and why I think you should also consider it for your own investments. </strong></p>



<p style="font-size:25px" class="has-text-color has-vivid-cyan-blue-color"><strong>What can a personalized
strategy offer?</strong></p>



<p class="has-medium-font-size"><strong>Personalized portfolio management isn’t management by a mathematical model and is not “set it and forget it”. It’s about reflecting the goals, objectives, risk tolerance and preferences of the investor. It is a thoughtful approach driven by a dedicated portfolio management team who I work very closely with on a daily basis – and who my clients can also interact with on a regular basis. This type of investment management can give you greater precision in aligning your investment strategy with your objectives and overall financial life. </strong></p>



<p><em><strong>Your personalized investment portfolio can:</strong></em></p>



<ul class="wp-block-list"><li><strong>Account
for the big picture </strong>by considering other investments, real estate, and
additional assets held outside of the portfolio to ensure that the portfolio
fits with and complements other pieces of the puzzle.In short, we don’t just look at the assets we’re managing: we look
at them all.</li><li><strong>Control
taxes </strong>by monitoring the potential impact of every trade every day. Every
dollar that stays in a client’s portfolio rather than going to Uncle Sam
compounds over time and helps to create meaningful wealth. In my experience, most
firms are not willing to put the work in to provide individualized tax
management at the client level.&nbsp; </li><li><strong>Control
risk </strong>by monitoring and adapting both your investment strategy and each
individual position in light of shifting markets.</li><li><strong>Control
income generation and distribution </strong>by precisely targeting an appropriate
balance that works towards each client’s specific goals. We can construct your
portfolio to meet your specific income needs.</li></ul>



<p class="has-drop-cap has-medium-font-size"><strong>Your average model or cookie-cutter portfolio simply can’t do this much for you.&nbsp; </strong></p>



<p style="font-size:25px" class="has-text-color has-vivid-cyan-blue-color"><strong>A truly customized
portfolio </strong></p>



<p class="has-medium-font-size"><strong>A personalized portfolio is absolutely within reach for high-net worth investors (those who have $1 million or more in investable assets). At this level of investment, your advisor and portfolio manager can help you build a custom portfolio that mostly employs individual securities, rather than relying solely on mutual funds or ETFs. </strong></p>



<p class="has-medium-font-size"><strong>Why would you want to own individual names?</strong> </p>



<p class="has-medium-font-size"><strong>The simple answer is that a tailored portfolio utilizing individual stocks and bonds allows for a higher degree of control and precision that is not achievable when in a cookie cutter model or mutual fund. </strong></p>



<p class="has-medium-font-size"><strong>Using individual securities for the bulk of your investments has important potential benefits: they have no hidden management </strong><a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://blog.bradpine.com/2014/06/02/how-much-are-you-paying-knowing-your-asset-management-mutual-fund-fees-2/" target="_blank"><strong>fees</strong></a><strong>, no risk of “slipping” from their benchmarks, they don’t have capital gains distributions to manage, and they aren’t subject to emotion-driven inflows and outflows like mutual funds. </strong></p>



<p class="has-medium-font-size"><strong>That makes individual securities very useful as an anchor in your portfolio – and it’s even more powerful when you know that the balance of sectors and asset classes can be adjusted depending on any other securities you already have. Of course, there are risks involved in investing in individual securities that are important to take into account. For some investors, this approach may not be suitable.</strong></p>



<p class="has-medium-font-size"><strong>At BPWG we complement a foundation of individual securities with mutual funds that target specific strategies, such as international equity and opportunistic fixed income. </strong></p>



<p style="font-size:21px" class="has-text-color has-vivid-cyan-blue-color"><strong>A holistic approach
to investment management</strong></p>



<p class="has-medium-font-size"><strong>It’s important to note that your personalized portfolio isn’t just a standalone set of investments: it’s built to account for all of your investable assets to create more coordination in your strategy and more tax efficiency overall. Being holistic means we can also take steps to mitigate potential risks in other areas or to diversify into sectors where you want more exposure. </strong></p>



<p class="has-medium-font-size"><strong>Over time, we’ll monitor your portfolio to make sure it’s always in line with your goals. We’ll check in regularly to keep tabs on how those goals are evolving and to make sure that you’re clear on what you own and how it’s performing. Behind the scenes, your portfolio management team has support and resources to monitor the economy and markets to track potential risk areas and rebalance your portfolio accordingly. This can possibly help you avoid getting caught in a major recession. </strong></p>



<p class="has-medium-font-size"><strong>Finally, we make sure to bring other stakeholders into the conversation when appropriate: this might include your CPA or other professional advisors. That way, we can coordinate your risk management and tax budgets/strategies appropriately. This level of communication fosters a relationship where the client, the advisor, and the portfolio management team are always in alignment. </strong></p>



<p style="font-size:25px" class="has-text-color has-vivid-cyan-blue-color"><strong>Try it: I think
you’ll be convinced </strong></p>



<p class="has-drop-cap has-medium-font-size"><strong>I’ve been in the trenches for over 26 years, and I’ve gained a lot of knowledge over this time. It’s my conviction that this is simply a better way to invest. With a portfolio that considers the big picture, stays aligned with your overall goals and objectives, actively manages risk and taxes, and comes with a team of very experienced portfolio managers who work directly with me and my clients, I believe your probability of successfully meeting your goals and objectives increases significantly.&nbsp; </strong></p>



<p class="has-medium-font-size"><strong>Many of my clients have seen a great deal of success building their wealth in their own way and have a unique set of goals and objectives that will change over time. Those evolving financial goals and objectives can’t always be met with a cookie-cutter portfolio, which is why I am very excited to bring a more personalized approach to my clients. </strong></p>



<p class="has-medium-font-size"><strong>However, don’t just take my word for it. See for yourself: I strongly believe you’ll come to the same conclusion. I have so much conviction, I’ll be shocked if you don’t! &nbsp;</strong></p>



<p><em>Written by <a rel="noreferrer noopener" href="http://www.bradfordpinewealth.com/About-Bradford-Pine.5.htm" target="_blank">Bradford Pine</a> with Anna B. Wroblewska</em></p>



<p>.</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" class="youtube-player" width="600" height="338" src="https://www.youtube.com/embed/6RwE-Gw_E-s?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe>
</div></figure>



<p>To learn about retirement savings, download my free eBook, “<a href="../../../../../10-tips-you-need-to-know-about-your-ira-rollover/" target="_blank" rel="noreferrer noopener">10 Tips You Need to Know About Your IRA Rollover</a>.” This short book is packed with critical information that will help you make the right decisions about your retirement savings.</p>The post <a href="https://blog.bradpine.com/2019/03/27/the-true-evolution-of-investing-personalized-customized-tax-efficient/">The True Evolution of Investing: Personalized Customized & Tax efficient</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2691</post-id>	</item>
		<item>
		<title>What Does Renegotiating Tariffs On Trade Mean To Your Investment Portfolio (NAFTA &amp; USMCA)</title>
		<link>https://blog.bradpine.com/2018/10/01/what-does-renegotiating-tariffs-on-trade-mean-to-your-investment-portfolio-nafta/</link>
		
		<dc:creator><![CDATA[Bradford Pine]]></dc:creator>
		<pubDate>Mon, 01 Oct 2018 23:08:54 +0000</pubDate>
				<category><![CDATA[Tariff]]></category>
		<category><![CDATA[bradford pine wealth group]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[China trade]]></category>
		<category><![CDATA[financial advisor]]></category>
		<category><![CDATA[Inflation]]></category>
		<category><![CDATA[Market Volatility]]></category>
		<category><![CDATA[NAFTA]]></category>
		<category><![CDATA[Tariffs]]></category>
		<category><![CDATA[USMCA]]></category>
		<category><![CDATA[Wealth Advisor Garden City NY]]></category>
		<guid isPermaLink="false">https://blog.bradpine.com/?p=2677</guid>

					<description><![CDATA[<p>Back in April, I shared my thoughts with you about the theory and practice of trade wars. This was a hot topic that I was getting a lot of questions about, and I’d like to revisit it now that we’re a few months into trade negotiations. Specifically, one of the things that has people confused [&#8230;]</p>
The post <a href="https://blog.bradpine.com/2018/10/01/what-does-renegotiating-tariffs-on-trade-mean-to-your-investment-portfolio-nafta/">What Does Renegotiating Tariffs On Trade Mean To Your Investment Portfolio (NAFTA & USMCA)</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></description>
										<content:encoded><![CDATA[<h4><img loading="lazy" decoding="async" class="alignleft wp-image-2679 size-large" src="https://blog.bradpine.com/wp-content/uploads/2018/10/shutterstock_1131501650-1-1024x512.jpg" alt="Bradford Pine Wealth Group Garden City, New York Wealth Advisor broke after graduation" width="1024" height="512" srcset="https://blog.bradpine.com/wp-content/uploads/2018/10/shutterstock_1131501650-1-1024x512.jpg 1024w, https://blog.bradpine.com/wp-content/uploads/2018/10/shutterstock_1131501650-1-300x150.jpg 300w, https://blog.bradpine.com/wp-content/uploads/2018/10/shutterstock_1131501650-1-768x384.jpg 768w, https://blog.bradpine.com/wp-content/uploads/2018/10/shutterstock_1131501650-1.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" />Back in April, I shared my thoughts with you about the theory and practice of <a href="https://blog.bradpine.com/2018/04/09/whats-a-trade-war-the-arguments-for-and-against-protectionism/" target="_blank" rel="noopener">trade wars</a>. This was a hot topic that I was getting a lot of questions about, and I’d like to revisit it now that we’re a few months into trade negotiations.</h4>
<h4>Specifically, one of the things that has people confused is the impact of tariffs on Chinese goods and the consequences of renegotiating the North American Free Trade Agreement (NAFTA).</h4>
<h4>Here’s my point of view on what’s going on and the potential impact on your portfolio.</h4>
<h2><strong><span style="color: #000080;">What’s going on</span> </strong></h2>
<h4>A lot of the news has been focused on tariffs, which are important for a couple of reasons: first, they change the cost of the products you buy. If there are tariffs on Chinese imports, those imports will get more expensive for you. For businesses, tariffs can affect competitiveness and profitability, which can make business leaders look for alternative ways to manufacture and distribute their products.</h4>
<h4>So, when the US imposed tariffs on another $200 billion in Chinese goods on September 24, bringing new tariffs to a total of $250 billion, it was significant news. China retaliated with duties on another $60 billion in American products. If the US follows through on threats related to China’s retaliation, tariffs could be imposed on another $267 billion in goods, effectively covering all goods imported from China in 2017. In the meantime, China cancelled continuing trade talks, though both sides have indicated that they are “open” to it.</h4>
<h4>You could see that openness on September 26, when China walked back tariffs on several imports (without specifying whether they would apply to American imports) to spare Chinese consumers the threat of rising prices and to help offset an economic slowdown. In the face of the trade war, China has been facing a weaker stock market, while the US market has continued to rally.</h4>
<h4>On the Canadian side, the US and Canada made slow and difficult progress towards the US-imposed October 1 deadline to update NAFTA – late on September 30, the parties agreed to an updated framework for the agreement.</h4>
<h4>I think the negotiating process with Canada has exemplified something I said earlier in the year: that the point of all the hoopla is to create a stronger negotiating position. In this case, it seems to have work.</h4>
<h2><strong><span style="color: #000080;">Uncertainty and politics</span> </strong></h2>
<h4>I believe the same thing is happening with negotiations with China: as the public, we see the political posturing, which is actually part of a larger discussion process. In my opinion, we’re likely to see a resolution with China, too.</h4>
<h4>In fact, I think better and more sustainable trade agreements are the whole point here. While there are, in my opinion, some problems with the way that we conduct trade with our global partners, on the whole there are gains to be had from having trading relationships. If we can structure those agreements to protect our economy from some of the risks of trade, I think we could be doing ourselves a good service.</h4>
<h4>Again, what we <strong>see </strong>in the meantime is the political posturing, the pointed public statements, and the bluffing of public disputes. We don’t really know what’s happening behind closed doors, but it’s my opinion that most of the people involved are hoping to get to a mutually beneficial resolution.</h4>
<h2><span style="color: #000080;"><strong>What happens next?</strong></span></h2>
<h4>From where I’m sitting, the US is in a great position to negotiate right now because the economy is doing so well. Unemployment is low, consumer confidence is high, and we’re in the middle of a solid economic expansion.</h4>
<h4>I think that makes it a good time to revisit and revise trading relationships so that we can be on firm footing in the future.</h4>
<h4>Of course, it’s possible that whether or not the new tariffs stay, there will be short-term challenges and even market volatility. After all, any kind of change in the way that business is conducted will affect investment decisions, manufacturing locations, and any number of other variables.</h4>
<h4>For example, the ratings agency Fitch suggested that economic growth will slow in the coming year as a result of the trade dispute with China, and we could see other short-term headwinds as well.</h4>
<h4>But when and if an agreement is reached, I think we will unleash a lot of optimism. As most investors probably know, businesses like clarity – and once they get it, I can see both markets and the economy going higher.</h4>
<h4>In closing, I have to add an important disclaimer: I don’t have a <a href="https://blog.bradpine.com/2015/02/04/heres-my-crystal-ball-when-it-comes-to-investing/" target="_blank" rel="noopener">crystal ball</a>. What we know is what’s in the news and being shared publicly. But based on my experience and the way I’m analyzing the situation, I think there could be a lot of long-term positives from this volatile period. Let’s see what tomorrow brings.</h4>
<h4><em>Written by <a href="http://www.bradfordpinewealth.com/About-Bradford-Pine.5.htm" target="_blank" rel="noopener noreferrer">Bradford Pine</a> with Anna B. Wroblewska</em></h4>
<p>&nbsp;</p>
<p><strong>Sources: </strong></p>
<p><a href="https://www.bloomberg.com/news/articles/2018-09-24/trump-imposes-next-batch-of-china-tariffs-as-trade-war-escalates" target="_blank" rel="noopener">https://www.bloomberg.com/news/articles/2018-09-24/trump-imposes-next-batch-of-china-tariffs-as-trade-war-escalates</a></p>
<p><a href="https://www.reuters.com/article/us-trade-nafta/adviser-says-us-close-to-mexico-only-nafta-deal-canada-unmoved-idUSKCN1M11SH" target="_blank" rel="noopener">https://www.reuters.com/article/us-trade-nafta/adviser-says-us-close-to-mexico-only-nafta-deal-canada-unmoved-idUSKCN1M11SH</a></p>
<p><a href="https://www.cnbc.com/2018/09/23/risk-that-all-china-imports-could-see-new-tariffs-goldman-sachs.html" target="_blank" rel="noopener">https://www.cnbc.com/2018/09/23/risk-that-all-china-imports-could-see-new-tariffs-goldman-sachs.html</a></p>
<p><a href="https://www.cbsnews.com/news/why-wall-street-is-ignoring-trumps-trade-war/" target="_blank" rel="noopener">https://www.cbsnews.com/news/why-wall-street-is-ignoring-trumps-trade-war/</a></p>
<p><a href="https://www.wsj.com/articles/china-announces-more-tariff-cuts-to-spur-spending-investment-1537967930" target="_blank" rel="noopener">https://www.wsj.com/articles/china-announces-more-tariff-cuts-to-spur-spending-investment-1537967930</a></p>
<p><a href="https://www.wsj.com/articles/u-s-canada-likely-to-reach-nafta-accord-sunday-announcement-is-imminent-1538360025" target="_blank" rel="noopener">https://www.wsj.com/articles/u-s-canada-likely-to-reach-nafta-accord-sunday-announcement-is-imminent-1538360025</a><br />
<iframe loading="lazy" class="youtube-player" width="600" height="338" src="https://www.youtube.com/embed/6RwE-Gw_E-s?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></p>
<p>To learn about retirement savings, download my free eBook, “<a href="../../../../../10-tips-you-need-to-know-about-your-ira-rollover/" target="_blank" rel="noopener noreferrer">10 Tips You Need to Know About Your IRA Rollover</a>.” This short book is packed with critical information that will help you make the right decisions about your retirement savings.</p>The post <a href="https://blog.bradpine.com/2018/10/01/what-does-renegotiating-tariffs-on-trade-mean-to-your-investment-portfolio-nafta/">What Does Renegotiating Tariffs On Trade Mean To Your Investment Portfolio (NAFTA & USMCA)</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2677</post-id>	</item>
		<item>
		<title>Stock Market Volatility, Geopolitics, and Midterms Elections– Oh My! Should You Be Worried?</title>
		<link>https://blog.bradpine.com/2018/06/04/stock-market-volatility-geopolitics-and-midterms-elections-oh-my-but-should-you-really-be-worried/</link>
		
		<dc:creator><![CDATA[Bradford Pine]]></dc:creator>
		<pubDate>Tue, 05 Jun 2018 00:01:03 +0000</pubDate>
				<category><![CDATA[Market Volatility & Uncertainty]]></category>
		<category><![CDATA[bradford pine wealth group]]></category>
		<category><![CDATA[financial advisor]]></category>
		<category><![CDATA[Inflation]]></category>
		<category><![CDATA[Market Volatility]]></category>
		<category><![CDATA[midterm elections]]></category>
		<category><![CDATA[North Korea]]></category>
		<category><![CDATA[trade wars]]></category>
		<category><![CDATA[Wealth Advisor Garden City NY]]></category>
		<guid isPermaLink="false">https://blog.bradpine.com/?p=2674</guid>

					<description><![CDATA[<p>If you’ve spent any time watching market news this year, you’ve likely experienced the roller coaster of recent stock performance. I’ve had a lot of questions about whether it’s different this time, or whether we’re heading for a tough correction. There are a lot of factors involved in this year’s market volatility, but that doesn’t [&#8230;]</p>
The post <a href="https://blog.bradpine.com/2018/06/04/stock-market-volatility-geopolitics-and-midterms-elections-oh-my-but-should-you-really-be-worried/">Stock Market Volatility, Geopolitics, and Midterms Elections– Oh My! Should You Be Worried?</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></description>
										<content:encoded><![CDATA[<h4><img loading="lazy" decoding="async" class="alignleft size-medium wp-image-2675" src="https://blog.bradpine.com/wp-content/uploads/2018/06/stock-market-volatility-300x274.jpg" alt="" width="300" height="274" srcset="https://blog.bradpine.com/wp-content/uploads/2018/06/stock-market-volatility-300x274.jpg 300w, https://blog.bradpine.com/wp-content/uploads/2018/06/stock-market-volatility-768x700.jpg 768w, https://blog.bradpine.com/wp-content/uploads/2018/06/stock-market-volatility.jpg 1000w" sizes="auto, (max-width: 300px) 100vw, 300px" />If you’ve spent any time watching market news this year, you’ve likely experienced the roller coaster of recent stock performance. I’ve had a lot of questions about whether it’s different this time, or whether we’re heading for a tough correction.</h4>
<h4>There are a lot of factors involved in this year’s market volatility, but that doesn’t mean it’s all bad news out there.</h4>
<h2><strong><span style="color: #000080;">What’s going on here?</span> </strong></h2>
<h4>A few of the major drivers of volatility this year have been around economic uncertainty, geopolitics, and what I’ll call generalized fear.</h4>
<h4>The Federal Reserve has started reining in the generous policies (like low interest rates) that were implemented after the financial crisis, which could have an impact on lending rates both at home and abroad. While the Fed is implementing more conservative policies as a result of a strengthening US economy, there are market observers who worry about implications on other economies – and to the stability of the US economy should our trade relationships undergo significant changes.</h4>
<h4>As the US renegotiates NAFTA and engages in trade negotiations with China, which have also been somewhat volatile, markets have been constantly trying to predict and absorb the potential implications.</h4>
<h4>Geopolitics is also a factor. From OPEC statements that led to uncertainty about future oil prices to the complicated situation in North Korea, we’ve seen varying degrees of hope, confusion, and volatility. More recently, political turmoil in Italy brought additional (and renewed) fears about prospects for the Eurozone and even the stability of the European Union itself.</h4>
<h2><span style="color: #000080;"><strong>The historical context</strong></span></h2>
<h4>Finally, our own political climate could be having an important impact – but not in the way you might think.</h4>
<h4>Historically speaking, mid-term election years are more volatile than other years. In fact, in eight out of the last nine mid-term election years, the S&amp;P 500 lost between 7% and 20%. Through April 2018, the S&amp;P 500 was down about 10% from the high in January. However, as of this writing, the index is still slightly positive for the year.</h4>
<h4>If you ask me, that on its own tells you something. Markets don’t like uncertainty: the more there is, the more volatile things tend to become. In mid-term years, the political order could be upended and shift the balance of governance – which could shift the balance of policy and predictability.</h4>
<h4>But, taken together, all these factors have made for a year where we’ve seen market swings that are more numerous and more pronounced than anything we experienced in the previous two years.</h4>
<h4>In fact, according to Bloomberg, down days are 24% bigger in magnitude this year than up days, a difference in performance that hasn’t been recorded since 1948. Whether you feel confident about your understanding of what’s going on or not, it’s enough to give anyone pause.</h4>
<h2><span style="color: #000080;"><strong>Should you be worried? </strong></span></h2>
<h4>All that said, there’s still a lot of good news that sometimes gets drowned out by the bad.</h4>
<h4>Large companies are doing very well in terms of earnings and activity, and implied volatility going forward is actually pretty low compared to historical averages. While economic growth in the first quarter came in lower than expected, it was still above the long-term average of 2%, and there are indications that second quarter growth will be even stronger.</h4>
<h4>There could also be important benefits for businesses (and thus investors) thanks to a trimming down of the Dodd-Frank Act, which had put more stringent rules on banks following the financial crisis. I believe smaller and medium-sized banks will now find it easier to operate – and to lend money.</h4>
<h4>Additionally, with lower taxes on corporations and repatriated profits because of the new tax plan, I believe we’re entering a period where companies will be able to invest in their operations, expand, and grow. This is potentially very good news for investors.</h4>
<h4>Global economic prospects are also positive. In fact, European markets have been more stable than ours this year as the European Union builds economic momentum.</h4>
<h2><span style="color: #000080;"><strong>Here’s what I think </strong></span></h2>
<h4>Even if trade tensions continue and even if geopolitics remain challenging, the prospects both at home and abroad are positive. I believe we’re closer to the bottom of this challenging period than to the top, and I think it’s important to look beyond a few months worth of volatility to get a real sense of where we are and where we’re going.</h4>
<h4>Of course, markets can surprise anyone, and there’s always a chance of a curve ball throwing all our collective predictions off course. But in this situation, I think the numbers speak for themselves. If you have a longer-term investment time horizon and a prudent investment strategy that’s suitable for you, I don’t think volatility should be at the top of your mind</h4>
<p>&nbsp;</p>
<h4><em>Written by <a href="http://www.bradfordpinewealth.com/About-Bradford-Pine.5.htm" target="_blank" rel="noopener noreferrer">Bradford Pine</a> with Anna B. Wroblewska</em></h4>
<p>&nbsp;</p>
<p><strong>Sources </strong></p>
<p>Brinker Reports (provided)</p>
<p>Bad day stats: <a href="https://www.bloomberg.com/news/articles/2018-05-29/big-days-are-all-bad-ones-as-stocks-punish-optimists-yet-again">https://www.bloomberg.com/news/articles/2018-05-29/big-days-are-all-bad-ones-as-stocks-punish-optimists-yet-again</a></p>
<p>US market vol: <a href="https://www.bloomberg.com/news/articles/2018-05-02/global-market-volatility-now-a-made-in-the-u-s-a-phenomenon">https://www.bloomberg.com/news/articles/2018-05-02/global-market-volatility-now-a-made-in-the-u-s-a-phenomenon</a></p>
<p>Italy: <a href="https://www.bloomberg.com/news/articles/2018-05-30/treasury-volatility-reawakens-with-biggest-jump-since-2016">https://www.bloomberg.com/news/articles/2018-05-30/treasury-volatility-reawakens-with-biggest-jump-since-2016</a></p>
<p>OPEC: <a href="https://www.bloomberg.com/news/articles/2018-05-30/oil-snaps-5-day-losing-streak-as-u-s-stockpiles-seen-shrinking">https://www.bloomberg.com/news/articles/2018-05-30/oil-snaps-5-day-losing-streak-as-u-s-stockpiles-seen-shrinking</a></p>
<p>&nbsp;</p>
<p><iframe loading="lazy" class="youtube-player" width="600" height="338" src="https://www.youtube.com/embed/6RwE-Gw_E-s?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></p>
<p>To learn about retirement savings, download my free eBook, “<a href="../../../../../10-tips-you-need-to-know-about-your-ira-rollover/" target="_blank" rel="noopener noreferrer">10 Tips You Need to Know About Your IRA Rollover</a>.” This short book is packed with critical information that will help you make the right decisions about your retirement savings.</p>The post <a href="https://blog.bradpine.com/2018/06/04/stock-market-volatility-geopolitics-and-midterms-elections-oh-my-but-should-you-really-be-worried/">Stock Market Volatility, Geopolitics, and Midterms Elections– Oh My! Should You Be Worried?</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2674</post-id>	</item>
		<item>
		<title>What’s a Trade War? The Arguments For and Against Protectionism</title>
		<link>https://blog.bradpine.com/2018/04/09/whats-a-trade-war-the-arguments-for-and-against-protectionism/</link>
		
		<dc:creator><![CDATA[Bradford Pine]]></dc:creator>
		<pubDate>Tue, 10 Apr 2018 03:28:59 +0000</pubDate>
				<category><![CDATA[Tariff]]></category>
		<category><![CDATA[bradford pine wealth group]]></category>
		<category><![CDATA[financial advisor]]></category>
		<category><![CDATA[import and exports]]></category>
		<category><![CDATA[protectionist trade policies]]></category>
		<category><![CDATA[Tariffs]]></category>
		<category><![CDATA[trade deficit]]></category>
		<category><![CDATA[trade wars]]></category>
		<category><![CDATA[Wealth Advisor Garden City NY]]></category>
		<guid isPermaLink="false">https://blog.bradpine.com/?p=2670</guid>

					<description><![CDATA[<p> . You’ve probably heard about this in the news, and you may be wondering: what is a trade war, and why should I care about the possibility of one? In this article I’ll introduce you to some of the basics of trade, trade wars – and the arguments for and against protectionism. Trade war economics [&#8230;]</p>
The post <a href="https://blog.bradpine.com/2018/04/09/whats-a-trade-war-the-arguments-for-and-against-protectionism/">What’s a Trade War? The Arguments For and Against Protectionism</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></description>
										<content:encoded><![CDATA[<h4><img loading="lazy" decoding="async" class="alignleft wp-image-2671" src="https://blog.bradpine.com/wp-content/uploads/2018/04/Bradford-Pine-Wealth-Group-Garden-City-NY-900x632-300x211.jpg" alt="" width="324" height="228" srcset="https://blog.bradpine.com/wp-content/uploads/2018/04/Bradford-Pine-Wealth-Group-Garden-City-NY-900x632-300x211.jpg 300w, https://blog.bradpine.com/wp-content/uploads/2018/04/Bradford-Pine-Wealth-Group-Garden-City-NY-900x632-768x539.jpg 768w, https://blog.bradpine.com/wp-content/uploads/2018/04/Bradford-Pine-Wealth-Group-Garden-City-NY-900x632.jpg 900w" sizes="auto, (max-width: 324px) 100vw, 324px" /></h4>
<h4> .</h4>
<h4></h4>
<h4>You’ve probably heard about this in the news, and you may be wondering: what <u>is</u> a trade war, and why should I care about the possibility of one?</h4>
<h4>In this article I’ll introduce you to some of the basics of trade, trade wars – and the arguments for and against protectionism.</h4>
<h2></h2>
<h2><span style="color: #000080;"><strong>Trade war economics  </strong></span></h2>
<h4><strong> </strong>A trade war is what happens when countries try to punish each other using trade policy. Tariffs and quotas (a tax) on imports and subsidies on exports are the most common ways that governments influence trade – and they’re also the most common weapons in a trade war.</h4>
<h4>For example, to protect American steelmakers, the US might impose a tariff on foreign steel. In retaliation, another country might put a tariff on American bourbon. In both cases, the tariff is essentially added to the cost of the final product.</h4>
<h4>What happens next?</h4>
<h4>Let’s pretend you own an American bourbon distillery. You sell bourbon for $10 a bottle in a foreign market. If that market imposes a $2 tariff per bottle, it means you either have to eat the cost and get only $8 from sales in that country, or pass some or all of the cost to your customers. If you pass the whole cost through, you’d charge $12 a bottle – which could reduce demand for your bourbon, meaning fewer sales.</h4>
<h4>In other words, a foreign tariff on your product can have a significant impact on your ability to make sales and stay profitable in that country.</h4>
<h4>On the other hand, let’s say you’re an American steel producer. In this situation, you could find yourself better off: maybe your foreign competitor is forced to raise their US prices to accommodate the tariff, which means that the market price for steel goes higher – and you take more money home. Perhaps they decide to leave your market altogether, or maybe they just eat the cost of the tariff and become less profitable.</h4>
<h4>But notice I said you “could” find yourself better off: one of the reasons trade policy is so tricky is that it can be hard to predict what will happen after the tariff is imposed. For example, higher prices could reduce demand for steel as customers start looking for cheaper substitutes.</h4>
<h4>Another complication is that most tariffs aren’t uniformly applied to all trading partners. In the case of steel, the proposal would affect China but not other imports, so it’s possible that the industry isn’t “supported” enough to really make an impact on local steelmakers.</h4>
<h4>Finally, tariffs can have unexpected or unintended consequences. A trading partner facing tariffs might decide it’s preferable to fight back rather than negotiate, or you could accidentally affect another domestic industry that you weren’t expecting to. That means supporting one industry could have negative consequences for another, or even on economic growth as a whole.</h4>
<h4>All of these details and nuances matter in how effective a policy is and what the potential fallout could be, which is part of the reason why markets are so worried about what will happen next.</h4>
<h2><strong><span style="color: #000080;">The benefits and costs of trade</span> </strong></h2>
<h4>At its core, the idea of free trade is about specializing in the activities that are the most profitable to you. This concept has arguably revolutionized (and globalized) the world economy.<em> </em></h4>
<h4>For example, if the US is incredibly good at building airplanes relative to everyone else, meaning it’s highly profitable for us to do it, then we’ll build more airplanes and someone else will build less (today, Boeing is the largest single exporter in the US in terms of dollar value). If Malaysia is better than the US at producing t-shirts, they’ll do more of that and we’ll do less.</h4>
<h4>There are benefits to this division of labor: when there are no restrictions to trade, you can have free rein make more profits on what <em>you’re </em>good at while enjoying the benefits of better prices on the things that someone <em>else</em> is good at.</h4>
<h4>Obviously, we do this all the time amongst ourselves as friends, colleagues, and spouses. For example, you might have an arrangement with your spouse where one of you does the dishes and the other does the laundry. These kinds of natural trades arise because one person might be better at doing a particular job, or because one person finds it aggravating (or costly, in economics-speak) to do it.</h4>
<h4>With trade, you see something similar on an economy-sized scale.</h4>
<h4>But that doesn’t mean trade is good for every person all the time. We might benefit as a whole from a highly-profitable aircraft sector and lower clothing prices. But your local t-shirt manufacturer might still have to shut down their factory and find a new job.</h4>
<h4>That’s one of the costs of free trade, which makes it understandable that people in industries facing a lot of foreign competition feel like they’re missing out.</h4>
<h2><strong><span style="color: #000080;">Balancing the pros and cons</span> </strong></h2>
<h4>There are many ways to deal with this, and protectionist trade policies are one way. Again, those policies can come at a cost, and it’s part of the policy-making process to figure out what the possible costs could be and whether they’re worth it.</h4>
<h4>In 2002, President George W. Bush implemented a 30% steel tariff that was rescinded in 2003 because of possible economic effects and the threat of retaliation from key trading partners. As the president’s former Chief of Staff, Andrew H. Card, Jr. put it, “Once the tit-for-tat starts, there are unintended consequences. You don’t know the extent of how everyone else will react.”</h4>
<h4>It’s not just countries: industries also react, and that can affect both consumers and investors.</h4>
<h4>Steel prices have already been higher all year with the expectation that tariffs will be imposed. American corporations, including Campbell’s Soup, have weighed in with their concerns, and the Swedish manufacturer Eloctrolux announced that it was putting a $250 million investment in American manufacturing on hold pending more clarity on the decision.</h4>
<h4>In other words, it can be hard to predict how a policy will impact an economy.</h4>
<h2><span style="color: #000080;"><strong>What happens next? </strong></span></h2>
<h4>Some have argued that the Trump Administration policies are intended as a negotiating tactic to improve our bargaining position on future trade agreements. I think that might be the case, and that the potential for a real trade war is slim. After all, the US is the world’s dominant economic force, and we have a lot of clout on a number of levels. As a pure negotiating tactic, it could make sense to use this fact to improve the position of key industries in the global market.</h4>
<h4>I think the idea of tariffs as a form of negotiating has merit based on what the president has said about trade with China. The US does have a large trade deficit with China, and in many cases there’s a mismatch in tariff policies that could be seen to penalize American workers. For example, the auto tariff in the US is 2.5% on imported vehicles versus China’s 25% &#8212; an arrangement that was negotiated decades ago, before China had a real auto industry (read more about it <a href="https://www.cfr.org/blog/auto-trade-china" target="_blank" rel="noopener">here</a>). This is something that President Trump might want to renegotiate – using the threat of tariffs on Chinese imports as leverage.</h4>
<h4>That’s part of the reason I don’t expect that we’ll go down the path of a real trade war. The economics of trade have been pretty well established at this point: even when another country acts “unfairly,” it’s usually in our interest to foster free trade as a way to help long-term economic growth.</h4>
<h4>Of course, there is also an argument that this approach could backfire. Europe, Asia, and Latin America have all been actively strengthening their own trading ties in the last year, which could give the US less clout in a dispute. Also, sometimes trade negotiations aren’t just about economics. It’s possible that foreign leaders will find the economic reasons for staying at the negotiating table to be less compelling than the political reasons to retaliate.</h4>
<h4>So, while the recent threat of trade war might just be a bluff, it’s not surprising that the markets have taken notice. We’ll just have to see what happens next.</h4>
<p>&nbsp;</p>
<h4><em>Written by <a href="http://www.bradfordpinewealth.com/About-Bradford-Pine.5.htm" target="_blank" rel="noopener noreferrer">Bradford Pine</a> with Anna B. Wroblewska</em></h4>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>References: </strong></p>
<p>Reserve currency issue <a href="https://www.bloomberg.com/news/articles/2018-03-26/as-trade-war-heats-up-biggest-currency-whales-make-their-move">https://www.bloomberg.com/news/articles/2018-03-26/as-trade-war-heats-up-biggest-currency-whales-make-their-move</a></p>
<p>Steel volatility <a href="https://www.bloomberg.com/news/articles/2018-03-22/trump-s-trade-war-wreaks-havoc-on-2-most-volatile-tariff-stocks">https://www.bloomberg.com/news/articles/2018-03-22/trump-s-trade-war-wreaks-havoc-on-2-most-volatile-tariff-stocks</a></p>
<p>Bush tariff costs <a href="https://www.wsj.com/articles/SB1046138047996402463">https://www.wsj.com/articles/SB1046138047996402463</a></p>
<p>Bush tariff costs, contrasting conclusion <a href="https://www.bloomberg.com/news/articles/2018-03-04/lessons-from-2002-show-economic-bang-from-steel-tariffs-was-tiny">https://www.bloomberg.com/news/articles/2018-03-04/lessons-from-2002-show-economic-bang-from-steel-tariffs-was-tiny</a></p>
<p>Andrew Card interview <a href="https://www.washingtonpost.com/news/wonk/wp/2018/03/06/remember-bushs-2002-steel-tariffs-his-chief-of-staff-warns-trump-not-to-do-the-same/?utm_term=.d782d4431382">https://www.washingtonpost.com/news/wonk/wp/2018/03/06/remember-bushs-2002-steel-tariffs-his-chief-of-staff-warns-trump-not-to-do-the-same/?utm_term=.d782d4431382</a></p>
<p>Steel prices 2018 <a href="https://www.marketwatch.com/story/heres-why-the-stock-market-took-the-trump-tariff-announcement-so-hard-2018-03-01">https://www.marketwatch.com/story/heres-why-the-stock-market-took-the-trump-tariff-announcement-so-hard-2018-03-01</a></p>
<p>Campbell’s Soup <a href="https://www.cnbc.com/2018/03/02/wilbur-ross-tariffs-are-nbd-but-campbells-says-cans-will-cost-more.html">https://www.cnbc.com/2018/03/02/wilbur-ross-tariffs-are-nbd-but-campbells-says-cans-will-cost-more.html</a></p>
<p>Electrolux <a href="https://www.reuters.com/article/us-usa-trade-trump-electrolux/electrolux-puts-250-million-u-s-investment-on-hold-over-trump-tariff-hike-idUSKCN1GE1P0">https://www.reuters.com/article/us-usa-trade-trump-electrolux/electrolux-puts-250-million-u-s-investment-on-hold-over-trump-tariff-hike-idUSKCN1GE1P0</a></p>
<p>&nbsp;</p>
<p><iframe loading="lazy" class="youtube-player" width="600" height="338" src="https://www.youtube.com/embed/6RwE-Gw_E-s?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></p>
<p>To learn about retirement savings, download my free eBook, “<a href="../../../../../10-tips-you-need-to-know-about-your-ira-rollover/" target="_blank" rel="noopener noreferrer">10 Tips You Need to Know About Your IRA Rollover</a>.” This short book is packed with critical information that will help you make the right decisions about your retirement savings.</p>The post <a href="https://blog.bradpine.com/2018/04/09/whats-a-trade-war-the-arguments-for-and-against-protectionism/">What’s a Trade War? The Arguments For and Against Protectionism</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2670</post-id>	</item>
		<item>
		<title>Are You a Beneficiary of the New Tax Reform Pass-Through Business Deductions? Find Out Here!</title>
		<link>https://blog.bradpine.com/2018/02/10/are-you-a-beneficiary-of-the-new-tax-reform-pass-through-business-deductions-find-out-here/</link>
		
		<dc:creator><![CDATA[Bradford Pine]]></dc:creator>
		<pubDate>Sat, 10 Feb 2018 21:39:58 +0000</pubDate>
				<category><![CDATA[Tax Tips]]></category>
		<category><![CDATA[1099]]></category>
		<category><![CDATA[20% tax deduction]]></category>
		<category><![CDATA[2017 tax reform]]></category>
		<category><![CDATA[bradford pine wealth group]]></category>
		<category><![CDATA[financial advisor]]></category>
		<category><![CDATA[K-1]]></category>
		<category><![CDATA[Limited liability company (LLC)]]></category>
		<category><![CDATA[Partnership]]></category>
		<category><![CDATA[Pass-Through Business Deductions]]></category>
		<category><![CDATA[S Corporation]]></category>
		<category><![CDATA[Sole proprietor]]></category>
		<category><![CDATA[Wealth Advisor Garden City NY]]></category>
		<guid isPermaLink="false">https://blog.bradpine.com/?p=2667</guid>

					<description><![CDATA[<p>Do you receive a 1099 or K-1? If so, the new tax rules under the 2017 tax reform effort could have a significant impact on your tax returns. The tax reform bill made significant changes to several parts of the tax code. One of the most talked about (not to mention confusing) applies to the [&#8230;]</p>
The post <a href="https://blog.bradpine.com/2018/02/10/are-you-a-beneficiary-of-the-new-tax-reform-pass-through-business-deductions-find-out-here/">Are You a Beneficiary of the New Tax Reform Pass-Through Business Deductions? Find Out Here!</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></description>
										<content:encoded><![CDATA[<h4><img loading="lazy" decoding="async" class="alignleft wp-image-2668" src="https://blog.bradpine.com/wp-content/uploads/2018/02/Bradford-Pine-Wealth-Group-Garden-City-NY-300x210.jpg" alt="" width="317" height="222" srcset="https://blog.bradpine.com/wp-content/uploads/2018/02/Bradford-Pine-Wealth-Group-Garden-City-NY-300x210.jpg 300w, https://blog.bradpine.com/wp-content/uploads/2018/02/Bradford-Pine-Wealth-Group-Garden-City-NY-768x538.jpg 768w, https://blog.bradpine.com/wp-content/uploads/2018/02/Bradford-Pine-Wealth-Group-Garden-City-NY.jpg 1000w" sizes="auto, (max-width: 317px) 100vw, 317px" />Do you receive a 1099 or K-1? If so, the new tax rules under the 2017 tax reform effort could have a significant impact on your tax returns.</h4>
<h4>The tax reform bill made significant changes to several parts of the tax code. One of the most talked about (not to mention confusing) applies to the owners of “pass-through” businesses, with a new 20% tax deduction on qualifying business income.</h4>
<h4>What many people don’t realize is that you can deduct <strong>up to </strong>20% depending on your business income and even the type of business you operate. Owners of service businesses will face important restrictions on their deductions.</h4>
<h4>Given that many of my clients are business owners themselves, I’ve put together some <strong>basic information</strong> about the new tax deduction and how it might apply to your service business.</h4>
<h4>Of course, I need to lead with an important disclaimer: I am <u>not</u> a tax attorney or an accountant, and this article is <u>not</u> intended to give tax advice or to replace the advice of a qualified attorney or accountant. Before you make any decisions about your own tax return or business, be sure to seek the help of a professional.</h4>
<h2><strong><span style="color: #000080;">Are you subject to the new rules?</span> </strong></h2>
<h4>If you operate a business or earn income as one of the following types of entity, the tax law changes could apply to you:</h4>
<ul>
<li>
<h4>Sole proprietor</h4>
</li>
<li>
<h4>Partnership</h4>
</li>
<li>
<h4>Limited liability company (LLC)</h4>
</li>
<li>
<h4>S Corporation</h4>
</li>
</ul>
<h4>One of the key features of these business structures is that you <u>do not</u> have to file a corporate tax return. Instead, you get a K-1 from your company’s accountant or 1099s from your clients and include that income on your personal income tax return.</h4>
<h4>Now, if you own a <strong>service business </strong>– that includes many, doctors, lawyers, consultants, financial advisors, athletes – you won’t just get to lob 20% off your business income on your tax return. Depending on your income, you may need to make some additional calculations, or forget about the deduction at all.</h4>
<h2><span style="color: #000080;"><strong>Figuring out your deduction</strong></span></h2>
<h4>Service businesses are subject to income restrictions on deductions. In a nutshell, if you earn more than $207,500 from your business as a single filer or $415,000 as a joint filer, the new pass-through tax deduction will have phased out completely and you <u>will not</u> receive the benefit.</h4>
<h4>More specifically:</h4>
<ul>
<li>
<h4>If you earn less than $157,500 from your business as a single filer (less than $315,000 for joint filers), you’ll likely be able to take the <strong>full deduction. </strong></h4>
</li>
<li>
<h4>If you earn between $157,500 and $207,500 as a single filer ($315,000 to $415,000 for joint filers), you’ll be subject to a scaled <strong>phase-out</strong> and your deduction will be reduced – talk to your accountant about how to figure out the exact number.</h4>
</li>
<li>
<h4>If you earn above $207,500 as a single filer ($415,000 as a joint filer) <strong>and </strong>you operate a service business, you <strong>won’t be eligible</strong> for the deduction.</h4>
</li>
</ul>
<h4>The word qualified is important. If you earn both wages and pass-through income from your business, you can only take a deduction for the pass-through income.</h4>
<h4>In other words, the deduction applies only to business income, not wages or compensation. That means if you earn $400,000 in wages and $125,000 in pass-through income, you’ll still be able to take the full deduction on the $125,000.</h4>
<h2><strong><span style="color: #000080;">Start early</span> </strong></h2>
<h4>Hopefully by reading this you have a rough sense of whether this deduction will apply to you – and how much math you’ll have to do to figure out your potential deduction at the end of the year.</h4>
<h4>But there are a number of complicated issues that still need to be addressed, especially if you have a complex business, several businesses, or other unique tax factors. In my opinion, <strong>the best thing you can do is to start early</strong> with navigating the new rules so that you have time to get help, answer questions, and figure out what you need to do to get the most benefit from the new rules.</h4>
<h4>Also keep in mind that if you do qualify for the pass-through tax break, you may have lost out on others (for example, with state and local tax deductions). That’s why it’s important to put this calculation together with the other updated rules, which may or may not apply to you – this will give you a more complete picture of your 2018 tax position.</h4>
<h4>In other words, don’t wait to reach out to your tax advisor. It could save you a lot of stress and confusion later on!</h4>
<h4> <em> </em></h4>
<h4><em>Written by <a href="http://www.bradfordpinewealth.com/About-Bradford-Pine.5.htm" target="_blank" rel="noopener noreferrer">Bradford Pine</a> with Anna B. Wroblewska</em></h4>
<p><strong> </strong></p>
<h4><span style="color: #000080;">More information about the pass-through deduction:</span></h4>
<p>Limits to the deduction: <a href="http://www.cpapracticeadvisor.com/news/12389903/2018-tax-reform-pass-through-income-deduction-more-complex-than-thought" target="_blank" rel="noopener">http://www.cpapracticeadvisor.com/news/12389903/2018-tax-reform-pass-through-income-deduction-more-complex-than-thought</a></p>
<p>Calculating your deduction, the simple version: <a href="https://www.forbes.com/sites/kellyphillipserb/2017/12/22/what-tax-reform-means-for-small-businesses-pass-through-entities/#1b5a262c6de3" target="_blank" rel="noopener">https://www.forbes.com/sites/kellyphillipserb/2017/12/22/what-tax-reform-means-for-small-businesses-pass-through-entities/#1b5a262c6de3</a></p>
<p>Section 469 issues: <a href="https://www.crowehorwath.com/insights/tax-alert/tax-news-highlights-pass-through-entity-deduction-calculation.aspx" target="_blank" rel="noopener">https://www.crowehorwath.com/insights/tax-alert/tax-news-highlights-pass-through-entity-deduction-calculation.aspx</a></p>
<p>Impact on state taxes: <a href="https://taxfoundation.org/pass-deduction-wont-flow-states/" target="_blank" rel="noopener">https://taxfoundation.org/pass-deduction-wont-flow-states/</a></p>
<p>AGI: <a href="https://www.irs.com/articles/adjusted-gross-income-agi-vs-modified-adjusted-gross-income-magi" target="_blank" rel="noopener">https://www.irs.com/articles/adjusted-gross-income-agi-vs-modified-adjusted-gross-income-magi</a></p>
<p>&nbsp;</p>
<p><iframe loading="lazy" class="youtube-player" width="600" height="338" src="https://www.youtube.com/embed/6RwE-Gw_E-s?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></p>
<p>To learn about retirement savings, download my free eBook, “<a href="../../../../../10-tips-you-need-to-know-about-your-ira-rollover/" target="_blank" rel="noopener noreferrer">10 Tips You Need to Know About Your IRA Rollover</a>.” This short book is packed with critical information that will help you make the right decisions about your retirement savings.</p>The post <a href="https://blog.bradpine.com/2018/02/10/are-you-a-beneficiary-of-the-new-tax-reform-pass-through-business-deductions-find-out-here/">Are You a Beneficiary of the New Tax Reform Pass-Through Business Deductions? Find Out Here!</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2667</post-id>	</item>
		<item>
		<title>Flying Blind With Bitcoin &amp; Other Cryptocurrency</title>
		<link>https://blog.bradpine.com/2018/01/05/flying-blind-with-bitcoin/</link>
		
		<dc:creator><![CDATA[Bradford Pine]]></dc:creator>
		<pubDate>Fri, 05 Jan 2018 21:45:14 +0000</pubDate>
				<category><![CDATA[Cryptocurrencies & Blockchain]]></category>
		<category><![CDATA[alt coins]]></category>
		<category><![CDATA[bitcoin]]></category>
		<category><![CDATA[blockchain]]></category>
		<category><![CDATA[bradford pine wealth group]]></category>
		<category><![CDATA[cryptocurrencies]]></category>
		<category><![CDATA[ethereum]]></category>
		<category><![CDATA[financial advisor]]></category>
		<category><![CDATA[ripple]]></category>
		<category><![CDATA[Wealth Advisor Garden City NY]]></category>
		<guid isPermaLink="false">https://blog.bradpine.com/?p=2662</guid>

					<description><![CDATA[<p>I can’t tell you the number of phone calls I’ve fielded about bitcoin in recent months. The shocking rise of cryptocurrencies this year triggered a wave of media attention and interest in this new form of money as an investment. Even my kids have asked me about it, and are investing themselves. For early adopters [&#8230;]</p>
The post <a href="https://blog.bradpine.com/2018/01/05/flying-blind-with-bitcoin/">Flying Blind With Bitcoin & Other Cryptocurrency</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></description>
										<content:encoded><![CDATA[<h4><img loading="lazy" decoding="async" class="alignleft wp-image-2663 size-medium" src="https://blog.bradpine.com/wp-content/uploads/2018/01/Bradford-pine-wealth-advisor-in-Garden-City-NY-300x103.jpg" alt="Bradford Pine Wealth Group Garden City, NY" width="300" height="103" srcset="https://blog.bradpine.com/wp-content/uploads/2018/01/Bradford-pine-wealth-advisor-in-Garden-City-NY-300x103.jpg 300w, https://blog.bradpine.com/wp-content/uploads/2018/01/Bradford-pine-wealth-advisor-in-Garden-City-NY-768x263.jpg 768w, https://blog.bradpine.com/wp-content/uploads/2018/01/Bradford-pine-wealth-advisor-in-Garden-City-NY.jpg 1000w" sizes="auto, (max-width: 300px) 100vw, 300px" />I can’t tell you the number of phone calls I’ve fielded about bitcoin in recent months. The shocking rise of cryptocurrencies this year triggered a wave of media attention and interest in this new form of money as an investment. Even my kids have asked me about it, and are investing themselves.</h4>
<h4>For early adopters of cryptocurrency, 2017 was a good year: the value of bitcoin rose about 1,500%.<a href="https://www.marketwatch.com/story/heres-what-bitcoins-monster-2017-gain-looks-like-in-one-humongous-chart-2017-12-06" target="_blank" rel="noopener" name="_ftnref1">[1]</a> Litecoin, another cryptocurrency, recently jumped 73% in less than 24 hours right around the time bitcoin futures became available for the first time, in mid-December.<a href="https://www.forbes.com/sites/jessedamiani/2017/12/12/litecoin-rockets-ahead-with-a-73-7-hour-bull-run-hitting-9023-growth-year-to-date/#216a02a52bcc" target="_blank" rel="noopener" name="_ftnref2">[2]</a></h4>
<h4>Of course, the market is changing so rapidly that this article may very well be outdated by the time you read this!</h4>
<h4>But if you’re considering bitcoin or another cryptocurrency as a possible investment, I suggest you tread carefully. In this article, I’ll answer some common questions that I’m hearing about bitcoin, and I’ll offer a few insights into my perspective about cryptocurrency as both an innovation and an investment.</h4>
<h2><span style="color: #000080;"><strong>What is bitcoin? </strong></span></h2>
<h4>In my opinion, many of the people who are buying into the bitcoin rush know very little about it, or about blockchain and cryptocurrencies in general. That means they haven’t thought through some of the risks and realities of this kind of investment.</h4>
<h4>Bitcoin is a cryptocurrency, which means that it’s a digital version of cash that relies on <a href="https://en.wikipedia.org/wiki/Cryptography" target="_blank" rel="noopener">cryptography</a> to protect and verify transactions – and to control the creation of more bitcoin. This system is built in something called blockchain, which is basically a new way of creating and maintaining a ledger of transactions (I won’t get into the creation, or “mining,” of bitcoin here, but it’s part of the system).</h4>
<h4>Every time bitcoin is created or traded, it’s recorded on the blockchain, which is verified and shared across a network or participants instead of by a single institution, like a bank. Blockchain is special because it’s transparent while remaining difficult to modify. It also runs forever, meaning there’s a record of every single transaction ever made.</h4>
<h4>For a simple comparison, think of an online message board: everyone’s messages are automatically added and recorded where every other reader can see them. All the messages from the very beginning of the thread are logged and displayed for all to see. However, in a message board you can usually delete or edit your message later on – you can’t do that with blockchain.</h4>
<h2><strong><span style="color: #000080;">What’s it worth?</span> </strong></h2>
<h4>A recent CNBC headline stated, “It’s Official: Bitcoin is Bigger Than Disney.”<a href="https://www.cnbc.com/video/2017/11/28/its-official-bitcoin-is-bigger-than-disney.html" target="_blank" rel="noopener" name="_ftnref3">[3]</a> In other words, the total dollar value of all the bitcoin out there is greater than the value of a large and recognizable company with assets that you can put a dollar value on.</h4>
<h4>But an economic argument for what a “reasonable” price is hasn’t been so easy to come by.</h4>
<h4>Bitcoin isn’t like a Disney: it doesn’t have assets you can sell, and it doesn’t have bonds that provide income which you can buy. It also has limited use as a currency. Bitcoin doesn’t have a history as a reliable or broadly accepted store of value, like the dollar, and its “exchange rate,” or price, has rocketed up thanks to market demand – but not by the economic value of bitcoin itself.</h4>
<h4>Add to this the reality that about <strong>40% of all bitcoin is held by just 1,000 people</strong>.</h4>
<h4>That makes bitcoin extremely sensitive to the whims of that very small group – and their actions aren’t regulated by securities authorities because bitcoin isn’t a security.<a href="https://www.bloomberg.com/news/articles/2017-12-08/the-bitcoin-whales-1-000-people-who-own-40-percent-of-the-market" target="_blank" rel="noopener" name="_ftnref4">[4]</a> Cryptocurrencies in general aren’t regulated, and it’s not clear they <em>could</em> be effectively regulated in the future. The government is not involved yet, and it may or may not get involved in the future – and it’s tough to know how it could affect prices and demand in the future.</h4>
<h4>When you add all this together, it’s difficult to see how bitcoin could be worth the values it is reaching today. Right now, it’s supply and demand that is driving the price, so there’s no true valuation – or even a valuation process – that you can rely on. That makes me nervous.</h4>
<h2><strong><span style="color: #000080;">So why all the hype?</span> </strong></h2>
<h4>Is bitcoin worth <em>something</em>? Probably.</h4>
<h4>Blockchain is pretty widely considered a significant improvement on transaction recording, and the real-world potential for digital currency could certainly be there. The way I look at it is that blockchain is the arms dealer in the war between cryptocurrencies. No matter which one wins – or even if none of them do – in my opinion it looks like blockchain will be here to stay.</h4>
<h4>I’m not a specialist in either area, and relatively speaking I’m quite a novice. But I’ve been around long enough to know the lasting impact that a new technology can have on financial markets and the world as a whole (do you remember the first “personal computers?” I sure do).</h4>
<h4>But I’ve <em>also</em> been around long enough to know that when you hear words like “new world order” it doesn’t always end well. There are unforeseen risks and even known weaknesses in the system. Just in December, a South Korean bitcoin exchange, Nicehash, went out of business after hackers made off with an undisclosed amount of the currency, while earlier in the month $70 million was stolen from the Nicehash exchange.<a href="http://money.cnn.com/2017/12/20/technology/south-korea-bitcoin-exchange-closes/index.html" target="_blank" rel="noopener" name="_ftnref5">[5]</a></h4>
<h4>Exchanges can make promises abount making investors whole, but this is an unregulated market – there are no guarantees.</h4>
<h4>In other words, I think it’s important to understand that “new world order” doesn’t always mean “smooth sailing.” Back in 1999, people were laughing at Warren Buffett for not recognizing the world had changed.<a href="http://news.bbc.co.uk/2/hi/business/1217716.stm" target="_blank" rel="noopener" name="_ftnref6">[6]</a> Some of the companies founded in those days did end up changing the world, but a lot of good people also lost their life savings in the hype.</h4>
<h2><span style="color: #000080;"><strong>What if I really want in? </strong></span></h2>
<h4>For those who are determined to be part of the bitcoin rush, I have three pieces of advice.</h4>
<h4><u>First, do your homework</u>. Understand the product and learn everything you can about how it’s being used, where the potential lies, and what could impact its price – for better or worse.</h4>
<h4><u>Second, don’t invest money you’re not prepared to lose</u>. My typical advice is to cap these types of investments at 5% of investable assets, but even that might be too much depending on your specific financial situation, personal financial needs, and overall asset allocation. If you don’t know what you can lose without impacting your overall financial goals, check in with your advisor.</h4>
<h4><u>Finally, prepare for any outcome</u>. In my opinion, this is a “zero or hero” investment: it might work brilliantly, or it might amount to nothing. In these types of situations, where price is driven by demand and where there are few fundamentals to work from, you need to brace for volatility and the potential for heavy losses.</h4>
<h2><strong><span style="color: #000080;">Whatever you do, <u>always</u> do your homework</span> </strong></h2>
<h4>Cryptocurrency may very well stick around and be a successful innovation, just like the tech sector was. The question is which cryptocurrencies will stand the test of time and go on to be successful – and at what price.</h4>
<h4>This is notoriously hard to predict. For example, few could have foreseen that MySpace would be eclipsed by Facebook, or that Amazon would grow from online bookseller to retail juggernaut.</h4>
<h4>In other words, I don’t know what’s going to happen in bitcoin, but what I see right now is a lot of uninformed investors piling in – and very few reasoned arguments for where bitcoin “should” be in terms of value. In my opinion this is a problematic situation to walk into.</h4>
<h4>My reasoning is simple: I think that when we stop acting like informed investors – or even informed traders – and start believing that something will be the winning lotto ticket, we’re likely to get in trouble.</h4>
<h4>Are people making a lot of money on bitcoin right now, at least on paper? It sure seems that way. But I’m concerned about all the people who could be left holding the bag when and if the bitcoin rush turns.</h4>
<h4>Like Warren Buffett, in this case I’d rather miss out on the upside than risk experiencing the downside. You can call it being a dinosaur if you want: I just call it being prudent.</h4>
<h4><em>Written by <a href="http://www.bradfordpinewealth.com/About-Bradford-Pine.5.htm" target="_blank" rel="noopener noreferrer">Bradford Pine</a> with Anna B. Wroblewska</em></h4>
<p>&nbsp;</p>
<p><a href="#%20" name="_ftn1">[1]</a> Source: <a href="https://www.marketwatch.com/story/heres-what-bitcoins-monster-2017-gain-looks-like-in-one-humongous-chart-2017-12-06">https://www.marketwatch.com/story/heres-what-bitcoins-monster-2017-gain-looks-like-in-one-humongous-chart-2017-12-06</a></p>
<p><a href="#%20" name="_ftn2">[2]</a> Source: <a href="https://www.forbes.com/sites/jessedamiani/2017/12/12/litecoin-rockets-ahead-with-a-73-7-hour-bull-run-hitting-9023-growth-year-to-date/#216a02a52bcc">https://www.forbes.com/sites/jessedamiani/2017/12/12/litecoin-rockets-ahead-with-a-73-7-hour-bull-run-hitting-9023-growth-year-to-date/#216a02a52bcc</a></p>
<p><a href="#%20" name="_ftn3">[3]</a> Source: <a href="https://www.cnbc.com/video/2017/11/28/its-official-bitcoin-is-bigger-than-disney.html">https://www.cnbc.com/video/2017/11/28/its-official-bitcoin-is-bigger-than-disney.html</a></p>
<p><a href="#%20" name="_ftn4">[4]</a> Source: <a href="https://www.bloomberg.com/news/articles/2017-12-08/the-bitcoin-whales-1-000-people-who-own-40-percent-of-the-market">https://www.bloomberg.com/news/articles/2017-12-08/the-bitcoin-whales-1-000-people-who-own-40-percent-of-the-market</a></p>
<p><a href="#%20" name="_ftn5">[5]</a> Source: <a href="http://money.cnn.com/2017/12/20/technology/south-korea-bitcoin-exchange-closes/index.html">http://money.cnn.com/2017/12/20/technology/south-korea-bitcoin-exchange-closes/index.html</a></p>
<p><a href="#%20" name="_ftn6">[6]</a> Source: <a href="https://www.cnbc.com/id/26902137">https://www.cnbc.com/id/26902137</a> and <a href="http://news.bbc.co.uk/2/hi/business/1217716.stm">http://news.bbc.co.uk/2/hi/business/1217716.stm</a></p>
<p><iframe loading="lazy" class="youtube-player" width="600" height="338" src="https://www.youtube.com/embed/6RwE-Gw_E-s?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></p>
<p>To learn about retirement savings, download my free eBook, “<a href="../../../../../10-tips-you-need-to-know-about-your-ira-rollover/" target="_blank" rel="noopener noreferrer">10 Tips You Need to Know About Your IRA Rollover</a>.” This short book is packed with critical information that will help you make the right decisions about your retirement savings.</p>The post <a href="https://blog.bradpine.com/2018/01/05/flying-blind-with-bitcoin/">Flying Blind With Bitcoin & Other Cryptocurrency</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2662</post-id>	</item>
		<item>
		<title>Thanks to Equifax, Your Social Security Number (SS#) Could Be Compromised: Here are 4 Steps to Protect Yourself</title>
		<link>https://blog.bradpine.com/2017/10/02/thanks-to-equifax-your-social-security-number-ss-could-be-compromised-here-are-4-steps-to-protect-yourself/</link>
		
		<dc:creator><![CDATA[Bradford Pine]]></dc:creator>
		<pubDate>Mon, 02 Oct 2017 21:48:40 +0000</pubDate>
				<category><![CDATA[Identity Theft]]></category>
		<category><![CDATA[bradford pine wealth group]]></category>
		<category><![CDATA[Equifax breach]]></category>
		<category><![CDATA[financial advisor]]></category>
		<category><![CDATA[fraud]]></category>
		<category><![CDATA[freeze]]></category>
		<category><![CDATA[hacked]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[Social Security Number (SS#)]]></category>
		<category><![CDATA[Wealth Advisor Garden City NY]]></category>
		<guid isPermaLink="false">https://blog.bradpine.com/?p=2656</guid>

					<description><![CDATA[<p>As a wealth advisor, I usually write about informative and educational topics like preparing for retirement, helping your kids fly the nest, and making better investment decisions. But in light of the recent Equifax hack, along with similar hacks at Target, Yahoo!, and others – and the common misperceptions about them – I think it’s [&#8230;]</p>
The post <a href="https://blog.bradpine.com/2017/10/02/thanks-to-equifax-your-social-security-number-ss-could-be-compromised-here-are-4-steps-to-protect-yourself/">Thanks to Equifax, Your Social Security Number (SS#) Could Be Compromised: Here are 4 Steps to Protect Yourself</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></description>
										<content:encoded><![CDATA[<h4><img loading="lazy" decoding="async" class="alignleft wp-image-2657" src="https://blog.bradpine.com/wp-content/uploads/2017/09/Bradford-Pine-Wealth-Group-Wealth-Advisor-Garden-City-NY-cyber-security-300x169.jpg" alt="" width="348" height="196" srcset="https://blog.bradpine.com/wp-content/uploads/2017/09/Bradford-Pine-Wealth-Group-Wealth-Advisor-Garden-City-NY-cyber-security-300x169.jpg 300w, https://blog.bradpine.com/wp-content/uploads/2017/09/Bradford-Pine-Wealth-Group-Wealth-Advisor-Garden-City-NY-cyber-security-768x432.jpg 768w, https://blog.bradpine.com/wp-content/uploads/2017/09/Bradford-Pine-Wealth-Group-Wealth-Advisor-Garden-City-NY-cyber-security.jpg 1000w" sizes="auto, (max-width: 348px) 100vw, 348px" />As a wealth advisor, I usually write about informative and educational topics like preparing for retirement, helping your kids fly the nest, and making better investment decisions. But in light of the recent Equifax hack, along with similar hacks at Target, Yahoo!, and others – and the common misperceptions about them – I think it’s important to tackle another issue: the steps you can take to <strong>protect</strong> your wealth in the digital age.</h4>
<h4>The biggest mistake you can make right now is to think your information is perfectly safe. Even excluding the many corporate hacks that happen regularly, up to 148 million people were affected in the Equifax breach. There are about 250 million people over the age of 18 in the US.</h4>
<h4>That gives you better than 50-50 odds that your information is out there. If you’re frustrated and angry, I’m with you. I was one of the many who actually paid for Equifax to monitor my personal information, only to have it compromised.</h4>
<h4>But like I tell my kids: you can get angry about a problem or deny that it exists – or you can roll up your sleeves and do something about it.</h4>
<h4>Here’s what I’m doing.</h4>
<h2><span style="color: #000080;"><strong>Step 1: Deal with your credit record </strong></span></h2>
<h4>The very first decision you need to make is what to do about your credit record. Do you <a href="https://www.consumer.ftc.gov/articles/0497-credit-freeze-faqs" target="_blank" rel="noopener">freeze</a> it, so no one can take credit under your name unless you lift the freeze? Sign up for ongoing credit monitoring?</h4>
<h4>The answer is that it depends on your needs and your trust level. Monitoring is convenient and usually effective. Of course, a lot of people are concerned about giving Equifax the very same information they already failed to protect.</h4>
<h4>But if you need your credit record to stay open, a monitoring service could be a good solution. Equifax is offering their monitoring service for free for a year, and other bureaus have a monitoring option as well.</h4>
<h4>You could potentially improve the security of monitoring if you add a free 90-day fraud alert to your credit report. This will give you an extra layer of protection for 3 months because it requires every lender to verify your identity before proceeding with any applications. You may even be able to set up an automatic renewal on the 90-day fraud alert. I have this in place and I think it’s a good combination of simplicity and security.</h4>
<h4>If you won’t be needing to use your credit report anytime soon, you can also freeze your file with each credit bureau. You’ll likely need to pay for this service.</h4>
<h4>When a lender has a legitimate request, like a credit check on a car loan, you’ll have a special PIN that you can use to temporarily open the file. You’ll need to know which credit bureau your lender uses, call in to “thaw” your file so they can access it, then freeze your record again afterwards. You may need to pay a fee each time you freeze and thaw your report.</h4>
<h4>This is obviously a little inconvenient, but it could be the best way to ensure that no one can access credit in your name.</h4>
<h4>If you want to learn more about identity theft and some of the serious issues that can accompany it, click here to see my <a href="https://www.youtube.com/user/BradfordPine#p/a/u/0/Y4iR-B4pOIU" target="_blank" rel="noopener">3-minute TV segment</a> on the subject.</h4>
<h2><span style="color: #000080;"><strong>Step 2. Set up two-factor authentication on every account that you can</strong></span></h2>
<h4>This, in my opinion, is a must. Two-factor authentication notices if someone is trying to log into your accounts from an unknown computer, mobile phone, or tablet. To make sure it’s really you, the system will send a security code to your phone number (or, sometimes, an email address). Once you’ve logged in from a particular device, you can check a box to remember it if you want to, so that you only have to go through these steps once. Some systems, like Gmail, will automatically remember your device after the first authentication.</h4>
<h4>Two-factor authentication can seem annoying, but it can also prevent someone from getting into your bank account. That’s why it’s important to set it up on any website that you can. Put together a list of all your bank and investment accounts, insurance agencies and credit cards, and then go to <a href="https://www.turnon2fa.com/" target="_blank" rel="noopener">this website</a> to learn how to set up two-factor authentication on each one. I have personally also set it up on all my email and social media accounts.</h4>
<h4>It only takes a few minutes, and in my opinion it’s very much worth it.</h4>
<h2><span style="color: #000080;"><strong>Step 3. Add a PIN on your phone <u>number</u> (I’m not talking about the PIN to open your phone!)</strong></span></h2>
<h4>Next, close another potential gap in security: your cell phone number.</h4>
<h4>As noted above, one of the most common features of two-factor authentication is a text message that provides you with a temporary security code. So what if someone else was able to compromise your phone number?</h4>
<h4>This isn’t a stretch: it’s easy to port a phone number from one carrier to another using only some basic personal information. If someone had that information already and just needed to get access to your security codes&#8230; well, let’s just say it’s happened before and it can easily happen again.</h4>
<h4>Make it harder by putting a PIN on your phone number with your carrier so that it can’t be ported by someone else. Call your phone providers <u>today</u> and make sure you have this extra layer of security in place. It’s an extremely fast and easy way to make sure two-factor authentication always works the way it’s supposed to.</h4>
<h2><span style="color: #000080;"><strong>Step 4. Update your passwords</strong></span></h2>
<h4>A lot of us are guilty of using the same basic password for all our logins, with a few tweaks here and there. It’s convenient, but it’s also unsafe. Once someone knows part of your password, it becomes a lot easier to figure out the rest of the sequence. This doesn’t just make your password easier to crack: if you reuse your passwords, it gives criminals access to a huge amount of digital information.</h4>
<h4>That’s why unique passwords are so important. One <a href="http://www.npr.org/sections/alltechconsidered/2017/08/14/543434808/forget-tough-passwords-new-guidelines-make-it-simple" target="_blank" rel="noopener">recent recommendation</a> (you can read or hit the play button next to the title, within this link) on passwords is to forget about complicated letters and symbols, and use long sentences for your passwords instead. So, instead of something impossible to remember, like “P@77yW3N7”, you could try “pattywenttothebank”.  Although in my opinion you should have a different phrase for each login. Reason being, if they hack one website and compromise your password, you don&#8217;t want them to have access to all of your sites.</h4>
<h4>The reason a phrase is better because sentences – very long passwords in general – are harder to crack because they’re long. Each character can be one of 26 letters: a password with 18 characters and no numbers, like the one above, has over 1.5 million possible combinations of letters. If you wanted to (or were required to) add a number or a symbol, your possibilities only go higher. However, for the user, they’re still memorable enough to be useful.</h4>
<h4>Of course, remembering dozens of different passwords can still be hard. To help you manage, you could use a password manager. Again, it depends on your level of trust: these tools are convenient, but they can also be hacked. Consumer Reports has a <a href="https://www.consumerreports.org/digital-security/everything-you-need-to-know-about-password-managers/" target="_blank" rel="noopener">great introduction</a> to password managers, including how to get the most value from them and some of the more popular products available.</h4>
<h4>That’s why some people find it more secure and less of a headache to use a more old-fashioned tool: a pen and a piece of paper. Few hackers are going to make that kind of effort, and you know it can’t be compromised online because it’s nowhere to be found. Just make sure you keep it in a very safe place.</h4>
<h2><span style="color: #000080;"><strong>The reality of the modern age </strong><strong> </strong></span></h2>
<h4>Hacking is, unfortunately, here to stay. There’s a high probability your information was compromised in the Equifax hack, and it may have been compromised before (check out <a href="http://haveibeenpwned.com/" target="_blank" rel="noopener">this site</a> to learn if your email address and site password were involved in other hacks – all you have to do is enter your email address).</h4>
<h4>That’s why you need to take these basic security precautions.</h4>
<h4>I’m not a cyber-security expert, and none of these tools or methods are foolproof. But much like the way you lock your doors, set the alarm in your house, or install a password to unlock your phone (by the way, you should have one of those too), these tools provide extra layers of protection that make stealing harder.</h4>
<h4>That alone is worth a lot.</h4>
<h4>So don’t wait: take these steps, and start taking control of your information today.</h4>
<h4><em>Written by <a href="http://www.bradfordpinewealth.com/About-Bradford-Pine.5.htm" target="_blank" rel="noopener noreferrer">Bradford Pine</a> with Anna B. Wroblewska</em></h4>
<p>&nbsp;</p>
<p><iframe loading="lazy" class="youtube-player" width="600" height="338" src="https://www.youtube.com/embed/6RwE-Gw_E-s?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></p>
<p>To learn about retirement savings, download my free eBook, “<a href="../../../../../10-tips-you-need-to-know-about-your-ira-rollover/" target="_blank" rel="noopener noreferrer">10 Tips You Need to Know About Your IRA Rollover</a>.” This short book is packed with critical information that will help you make the right decisions about your retirement savings.</p>The post <a href="https://blog.bradpine.com/2017/10/02/thanks-to-equifax-your-social-security-number-ss-could-be-compromised-here-are-4-steps-to-protect-yourself/">Thanks to Equifax, Your Social Security Number (SS#) Could Be Compromised: Here are 4 Steps to Protect Yourself</a> first appeared on <a href="https://blog.bradpine.com">Bradford Pine</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2656</post-id>	</item>
	</channel>
</rss>