Pros and Cons of Investment Properties

Pros and Cons of Investment Properties By Monica Davey, Real Estate Empowered Last week I visited one of my first clients, now my friend, for her second anniversary as a homeowner. One of the things we talk about is the possibility of buying a new property and renting it out.…

Pros and Cons of Investment Properties

By Monica Davey, Real Estate Empowered

Last week I visited one of my first clients, now my friend, for her second anniversary as a homeowner. One of the things we talk about is the possibility of buying a new property and renting it out. She had so many questions that inspired me to write this article.

With the job growth that this area is experiencing, there are many people who, for different reasons, prefer to rent a property long-term instead of buying it. On the other hand, we are so lucky to live around the majestic beaches of The Emerald Coast that sometimes we do not take into account how lucky we are, every year millions of tourists from different parts of the world take one to two weeks out of their year to come and enjoy what we have within our reach daily. With the boom of Airbnb, many tourists choose to rent a property instead of a hotel room.

Because of all this growing demand, buying an investment property is worth considering; as I always say, every Real Estate journey is unique. Please take this article as a guide, and if you have any more questions, feel free to call me.

1.- Rental Income: Each month that your property is occupied, you will generate income that will cover the expenses of the house, such as the mortgage, interest, insurance, HOA fees, among others, and also, depending on the value of the rent, it will possibly generate a positive cash flow.

2.- Tax benefits: US tax laws offer multiple deductions for real estate investors, such as operating costs, depreciation, repairs, and/or improvements to the property.

3.- Growth of your Equity: The average sale price of houses sold has increased by 81% in the last ten years (from the third quarter of 2011 to the third quarter of 2021). Thus, if home price appreciation follows the same trend, a $250,000 home today could be worth $450,000 ten years from now.

4.- Reliable Sale: If, for some reason, you decide to sell the investment property to maximize your profits, the appreciation of the property allows you to sell it at a much higher price than your initial investment.

Among the disadvantages of owning an investment property are the possibilities of having a tenant who does not comply with the pre-established rules, an increase in taxes and insurance premiums, variability of the Real Estate market, neighborhood decline, difficulty maintaining the role of landlord, difficulty up-keeping the property and others.

In summary, like everything in life, there will always be pros and cons, and it will depend not only on your financial situation but also on the housing market’s economics.

As always, it is a blessing to be able to help you. Real Estate in the US is intimidating, but with my cooperation and expertise, you will see that we can conquer and achieve the American Dream of Homeownership.

If you are ready to start this adventure or have any other Real Estate questions, feel free to connect with me, you can find me on all social media platforms as: @mdavey.realtor

Read more articles about real estate:

Related posts

monica_davey

From Impossible Dreams to Achievable Realities:  Breaking the Rental Cycle

<?php

global $post;

// Obtén el ID del post actual
$post_id = $post->ID;
// Obtén el contenido del post
$post_content = get_post_field( 'post_content', $post_id );

// Calcula el tiempo de lectura estimado en minutos y segundos
$word_count = str_word_count( strip_tags( $post_content ) );
$reading_time_minutes = floor( $word_count / 200 );
$reading_time_seconds = ceil(($word_count / 200 - $reading_time_minutes) * 60);

// Muestra el tiempo de lectura estimado en minutos y segundos
echo '<p class="read_time">Reading Time: ' . $reading_time_minutes . ':' . $reading_time_seconds . ' min</p>';

?>

From Impossible Dreams to Achievable Realities:  Breaking the Rental Cycle By Monica Davey, Broker Associate, Real Estate Empowered LLC Moving to a new country always presents challenges, especially when the…

View post
Monica Davey

Summer in Bloom on the Emerald Coast of Northwest Florida

<?php

global $post;

// Obtén el ID del post actual
$post_id = $post->ID;
// Obtén el contenido del post
$post_content = get_post_field( 'post_content', $post_id );

// Calcula el tiempo de lectura estimado en minutos y segundos
$word_count = str_word_count( strip_tags( $post_content ) );
$reading_time_minutes = floor( $word_count / 200 );
$reading_time_seconds = ceil(($word_count / 200 - $reading_time_minutes) * 60);

// Muestra el tiempo de lectura estimado en minutos y segundos
echo '<p class="read_time">Reading Time: ' . $reading_time_minutes . ':' . $reading_time_seconds . ' min</p>';

?>

Summer in Bloom on the Emerald Coast of Northwest Florida by Monica Davey | Real Estate Empowered LLC July is hands down one of my favorite months of the year.…

View post
Panorama Mortgage Group logo

Help First Generation Home Buyers with a 1% Down Payment Loan

<?php

global $post;

// Obtén el ID del post actual
$post_id = $post->ID;
// Obtén el contenido del post
$post_content = get_post_field( 'post_content', $post_id );

// Calcula el tiempo de lectura estimado en minutos y segundos
$word_count = str_word_count( strip_tags( $post_content ) );
$reading_time_minutes = floor( $word_count / 200 );
$reading_time_seconds = ceil(($word_count / 200 - $reading_time_minutes) * 60);

// Muestra el tiempo de lectura estimado en minutos y segundos
echo '<p class="read_time">Reading Time: ' . $reading_time_minutes . ':' . $reading_time_seconds . ' min</p>';

?>

“We believe in removing barriers to homeownership and promoting financial autonomy,”

View post
<script>
  /*Source: https://github.com/Krzysztof-Antosik/Two-direction-Sticky-Sidebar*/
  
  // Verificar el ancho de pantalla al cargar y redimensionar
  function checkScreenWidth() {
    if (window.innerWidth <= 767) {
      // Si la pantalla es menor o igual a 676px, no ejecutar el código
      return;
    }

    const stickyElement = document.querySelector('.fb-sidebar__aside');
    const startPosition = stickyElement.getBoundingClientRect().top;

    let endScroll = window.innerHeight - stickyElement.offsetHeight - 500;
    let currPos = window.scrollY;
    let screenHeight = window.innerHeight;
    let stickyElementHeight = stickyElement.offsetHeight;
    let topGap = 40;
    let bottomGap = 40;

    setTimeout(() => {
      if (stickyElement.hasAttribute('data-top-gap')) {
        const dataTopGap = stickyElement.getAttribute('data-top-gap');
        topGap = dataTopGap === 'auto' ? startPosition : parseInt(dataTopGap);
      }

      if (stickyElement.hasAttribute('data-bottom-gap')) {
        bottomGap = parseInt(stickyElement.getAttribute('data-bottom-gap'));
      }
    }, 100);

    stickyElement.style.position = 'sticky';
    stickyElement.style.top = `${topGap}px`;
    stickyElement.style.height = 'fit-content';

    function positionStickySidebar() {
      endScroll = window.innerHeight - stickyElement.offsetHeight - bottomGap;
      const stickyElementTop = parseInt(stickyElement.style.top.replace('px', ''));

      if (stickyElementHeight + topGap + bottomGap > screenHeight) {
        if (window.scrollY < currPos) {
          if (stickyElementTop < topGap) {
            stickyElement.style.top = `${stickyElementTop + currPos - window.scrollY}px`;
          } else if (stickyElementTop >= topGap && stickyElementTop !== topGap) {
            stickyElement.style.top = `${topGap}px`;
          }
        } else {
          if (stickyElementTop > endScroll) {
            stickyElement.style.top = `${stickyElementTop + currPos - window.scrollY}px`;
          } else if (stickyElementTop < endScroll && stickyElementTop !== endScroll) {
            stickyElement.style.top = `${endScroll}px`;
          }
        }
      } else {
        stickyElement.style.top = `${topGap}px`;
      }
      currPos = window.scrollY;
    }

    function stickyElementToMe() {
      stickyElement.style.top = `${topGap}px`;
    }

    function updateSticky() {
      screenHeight = window.innerHeight;
      stickyElementHeight = stickyElement.offsetHeight;
      positionStickySidebar();
    }

    setTimeout(() => {
      window.addEventListener('resize', () => {
        currPos = window.scrollY;
        updateSticky();
      });

      document.addEventListener('scroll', updateSticky, {
        capture: true,
        passive: true
      });
    }, 1000);
  }

  // Verificar el ancho de pantalla al cargar y redimensionar
  window.addEventListener('load', checkScreenWidth);
  window.addEventListener('resize', checkScreenWidth);
</script>