How can I invest in stock portfolios? (2024)

\

\

Track funds on the go

\ 4.5\

\ \ \ \ ', afterLoading: function() { var openInAppBody = document.querySelector('body'); var openInAppContainer = document.querySelector('#open_in_app_widget_type_1'); var heightOuter = document.querySelector('.mfOuter'); openInAppBody.classList.add("open-inApp-widget"); function openInAppOnWindowScroll() { window.addEventListener("scroll", debounce(function() { var scroll = $(window).scrollTop(); if (scroll > 56) { openInAppBody.classList.remove('open-inApp-widget'); } else { openInAppBody.classList.add('open-inApp-widget'); } }, 200)) } document.querySelector(".inApp-close").addEventListener("click", function() { openInAppBody.classList.remove('open-inApp-widget'); openInAppContainer.classList.add('hide-openInApp'); }); openInAppOnWindowScroll(); }, bindEvent: function() { }, placeholder: { position: "beforebegin", // accepted value : "afterbegin" "afterend" "beforebegin" "beforeend" selector: "header" }, trigger: { evnt: "load", elm: "window", }, }, type_2: { html: '

\

\ \ How can I invest in stock portfolios? (1)\ \ 4.5\

\

\

\

\

This page looks better in the app

\

\

\

\

\

\ ', afterLoading: function() { var widgetElement = document.querySelector('#open_in_app_widget_type_2'); document.querySelector('#backdrop').addEventListener('click', function(e) { if (e.currentTarget.classList.contains('open-inApp-backdrop') && !widgetElement.classList.contains('hide-openInApp') && !widgetElement.contains(e.target)) { widgetElement.classList.add('hide-openInApp'); e.currentTarget.classList.remove("open-inApp-backdrop"); document.querySelector('body').classList.remove('no-scroll'); } }); // document.querySelector('.open-inApp-backdrop').onclick = function(e) { // var openInAppBackdrop = document.querySelector('.open-inApp-backdrop'); // var ignoreClickOnOpenAppElem = document.querySelector('#open_in_app_widget_type_3'); // if(e.target != document.querySelector('#open_in_app_widget_3')) { // ignoreClickOnOpenAppElem.classList.add('hide-openInApp'); // openInAppBackdrop.classList.remove("open-inApp-backdrop"); // } // } }, bindEvent: function() { }, placeholder: { position: "beforeend", // accepted value : "afterbegin" "afterend" "beforebegin" "beforeend" selector: "body" }, trigger: { evnt: "load", elm: "window", }, }, type_3: { html: '\

\ \ Open in app\

', afterLoading: function() { var productType = window.location.pathname.split('/')[1].replace('-', ' ') || 'Home'; var OpenInAppWidget = { openInAppContainer: document.querySelector("#open_in_app_widget_type_3"), hide: function() { this.openInAppContainer.classList.add("hide-openInApp"); this.openInAppContainer.classList.remove('show-openInApp'); }, show: function() { this.openInAppContainer.classList.add("show-openInApp"); this.openInAppContainer.classList.remove('hide-openInApp'); }, dismissed: false } OpenInAppWidget.hide(); // Show Widget when Page Scrolled 70% var scrolledHight = $(window).height(); window.addEventListener("scroll", debounce(function() { if (document.documentElement.scrollTop < (scrolledHight * 0.7)) { OpenInAppWidget.hide(); } else { if (!OpenInAppWidget.dismissed) { OpenInAppWidget.show(); customGaEvents("Download", "Download - Widget - Type_3 - View", document.querySelector('#primary_cta_type_3').textContent + ' - ' + document.querySelector('#secondary_cta_type_3').textContent + ' - ' + productType); } } }, 200)) // Hide Widget On Remind Me later Click document.querySelector("#secondary_cta_type_3").addEventListener("click", function() { OpenInAppWidget.dismissed = true; OpenInAppWidget.hide(); }); // Show Fixed Button Open in App on Upscroll var openInAppCta = document.querySelector('.open_inApp_onUpScroll'); var lastScroll = $(window).scrollTop(); window.addEventListener('scroll', function(e) { var currentScroll = $(window).scrollTop(); if (currentScroll > lastScroll + 5) { openInAppCta.classList.remove('show-openInApp'); } else if (currentScroll < lastScroll - 5 && OpenInAppWidget.dismissed) { openInAppCta.classList.add('show-openInApp'); customGaEvents("Download", "Download - Widget - Type_3 - View", document.querySelector('#widget_openInApp_action').textContent); } // Update the old value lastScroll = currentScroll; }); }, bindEvent: function() { }, placeholder: { position: "beforeend", // accepted value : "afterbegin" "afterend" "beforebegin" "beforeend" selector: "body" }, trigger: { evnt: "load", elm: "window", }, } } // slice and reverse is to maintain the array ordering precedence. // Second way is to put only unique regex in config, such that // one page will have only one matching widget. config.slice().reverse().forEach(function(item) { if (document.querySelector('#open_in_app_widget_' + item.template) || !isMobileDevice()) { return; } var loc = window.location.pathname; // Get Product Name var productType = window.location.pathname.split('/')[1].replace('-', ' ') || 'Home'; if (typeof item.urlRegex == "undefined" || loc.match(item.urlRegex)) { var selectedTemplate = template[item.template]; // Creating HTML var wrapper = document.createElement('div'); wrapper.innerHTML = selectedTemplate.html; // Heading Change if (item.heading && wrapper.querySelector('#widget_heading_' + item.template)) { wrapper.querySelector('#widget_heading_' + item.template).textContent = item.heading; } // Primary CTA Change. The if condition are as per precedence if (window.mobAppRedirectLink && !(item.primaryCta && item.primaryCta.href)) { wrapper.querySelector('#primary_cta_' + item.template).href = window.mobAppRedirectLink; } if (item.primaryCta && item.primaryCta.href) { wrapper.querySelector('#primary_cta_' + item.template).href = item.primaryCta.href; } if (item.primaryCta && item.primaryCta.text) { wrapper.querySelector('#primary_cta_' + item.template).textContent = item.primaryCta.text; } // Secondary CTA Change // Bind events var placeholder = item.placeholder || selectedTemplate.placeholder; var trigger = item.trigger || selectedTemplate.trigger; if (trigger.elm == 'window' && trigger.evnt == 'load') { // Inject and Show directly the widget as this function is running on load event. document.querySelector(placeholder.selector).insertAdjacentHTML( placeholder.position, wrapper.innerHTML ) } if (trigger.elm != 'window' && trigger.evnt.match('click')) { var elements = document.querySelectorAll(item.trigger.elm); wrapper.firstChild.classList.add('hide-openInApp'); $(document).on(trigger.evnt, item.trigger.elm, function(event) { if ($(event.target).closest(item.trigger.exclude).length) { return; } event.preventDefault(); document.querySelector('#backdrop').classList.add("open-inApp-backdrop"); changeRedirectAppPrimaryCtaLink(event, item.template, loc); document.querySelector('#open_in_app_widget_' + item.template).classList.remove('hide-openInApp'); document.querySelector('body').classList.add('no-scroll'); if (item.ga) { // var gaLabel = event.currentTarget.querySelector(item.ga.selector).getAttribute(item.ga.dataAttr); } var secondaryCta = ''; if (document.querySelector('#secondary_cta_' + item.template)) { secondaryCta = document.querySelector('#secondary_cta_' + item.template).textContent; } customGaEvents("Download", "Download - Widget - " + item.template.charAt(0).toUpperCase() + item.template.slice(1) + " - View", document.querySelector('#primary_cta_' + item.template).textContent + ' - ' + secondaryCta + ' - ' + productType); }); // Inject the HTML document.querySelector(placeholder.selector).insertAdjacentHTML( placeholder.position, wrapper.innerHTML ) } // after template injected selectedTemplate.afterLoading(); // Add GA events on primary and secondary click var primaryCtaLink = document.querySelector('#primary_cta_' + item.template); var secondaryCtaLink = document.querySelector('#secondary_cta_' + item.template); if (document.querySelector('#widget_openInApp_action')) { document.querySelector('#widget_openInApp_action').href = primaryCtaLink.href; } if (primaryCtaLink) { primaryCtaLink.addEventListener('click', function(ev) { customGaEvents("Download", "Download - Widget - " + item.template.charAt(0).toUpperCase() + item.template.slice(1) + " - Click", ev.currentTarget.innerText + ' - ' + productType); }); } if (secondaryCtaLink) { secondaryCtaLink.addEventListener('click', function(ev) { customGaEvents("Download", "Download - Widget - " + item.template.charAt(0).toUpperCase() + item.template.slice(1) + " - Click", ev.currentTarget.innerText + ' - ' + productType); }); } } }); }); function changeRedirectAppPrimaryCtaLink(ev, widgetType, pathname) { var primaryCtaLink = document.querySelector('#primary_cta_' + widgetType); var secondaryCtaLink = document.querySelector('#secondary_cta_' + widgetType); // We have current location, event and widget where the link needs to be changed if (pathname.match('/mutual-funds/')) { var webLink = ev.currentTarget.querySelector(".scheme-name a").getAttribute("href"); if (webLink && secondaryCtaLink) { secondaryCtaLink.href = webLink; } var schemeId = ev.currentTarget.dataset.schemeId var redirectLink = 'https://etmoney.onelink.me/unJQ?pid=mweb-organic&c=OIA_schemeid_' + schemeId + '&af_ios_url=' + encodeURIComponent('https://apps.apple.com/in/app/etmoney-mutual-funds-sip-fd/id1212752482') + '&is_retargeting=true&af_inactivity_window=7d&af_dp=' + encodeURIComponent('https://www.etmoney.com/mobileApp/App/investment?state=7&schemeId=' + schemeId) + '&af_web_dp=' + encodeURIComponent('https://www.etmoney.com') + '&af_android_url=' + encodeURIComponent('https://play.google.com/store/apps/details?id=com.smartspends&hl=en_IN&gl=US'); } else if (pathname.match('/fixed-deposit')) { var webLink = ev.currentTarget.querySelector("td a").getAttribute("href"); if (webLink && secondaryCtaLink) { secondaryCtaLink.href = webLink; } } else if (pathname.match('/credit-card/')) { var webLink = ev.currentTarget; if (webLink && secondaryCtaLink) { secondaryCtaLink.href = webLink; } } // TODO: Link for product listing to be generated if (redirectLink) { primaryCtaLink.href = redirectLink; } } // ()();

My Account

  • How can I invest in stock portfolios? (32)

  • My investments
  • My SIPs
  • My Watchlist
  • My transactions
  • Track external mutual funds
  • Profile
  • Profile
  • Logout

    Get Support

Download Mobile Apps

  • How can I invest in stock portfolios? (42) Mutual Funds

    • Mutual Funds Home
    • Know your Investor Personality
    • All about Mutual Funds
    • Explore Mutual Funds
    • Check Portfolio Health
    • Equity funds
    • Debt funds
    • Hybrid funds
  • How can I invest in stock portfolios? (43) Genius

    • Explore Genius
    • Stocks
    • Genius Portfolios
    • MF Portfolios
    • Stocks Portfolios
  • Earn

  • Fixed Deposit

  • Tax Saving Maximizer

  • Credit Score

  • How can I invest in stock portfolios? (49) Insurance

    • Term Life Insurance
    • Health Insurance
  • How can I invest in stock portfolios? (50) Calculators

    • SIP Calculator
    • Mutual Fund Calculator
    • FD Calculator
    • NPS Calculator
    • See all calculators

How can I invest in stock portfolios? (51)

How can I invest in stock portfolios? (52)

Great! You have sucessfully subscribed for newsletters for investments

Subcribed email:

  • Home
  • Genius
  • FAQs

Stocks

  • About Genius
  • Account
  • Membership
  • Investment
  • Stocks
  • SIP
  • Rebalancing
  • Goal
  • Withdrawal

In order to invest in stock portfolios, you need to have an active Demat account in any of these brokers:

  • Zerodha
  • 5paisa
  • AliceBlue
  • Edelweiss
  • Upstox
  • Angel One
  • Groww
  • HDFC Sec
  • Kotak Sec
  • Axis Direct
  • IIFL Sec
  • Motilal Oswal
  • Trustline
  • ICICI Direct

If you have a demat account in any of the above mentioned brokers, here are the step to invest in stocks portfolio:

  • Choose the portfolio basis your goal and horizon. Choose the payment mode(SIP or lumpsum) and amount.
  • Once done, we will recommend the optimum allocation as per the market trends and show the detailed list of stocks and ETFs that you need to invest in.
  • Once you have reviewed the order, you need to select your broker and we will redirect to the broker account where you'll need to login and place the order.
  • That's it, once the order is placed on your broker, you will be redirected back to ET Money platform where you can track your portfolio.

Few points to be noted here:

  • If you have placed a successful order in stocks with a certain broker, you cannot change your broker later.
  • In case you do not have sufficient amount in your broker account, you will be given the option in your broker account to add more funds.
  • Due to any issue if you order is partially filled, you will be given a option to complete your order on the app.

Was this helpful?

How can I invest in stock portfolios? (54)

Sorry to hear that!

If you need more help, kindly get in touch with us

How can I invest in stock portfolios? (55)

You have active tickets!

Hey there! Our team is actively working on your ticket and will respond to you soon. We appreciate your patience while we resolve this.

I have a different query.

Welcome to Support!!

How can I invest in stock portfolios? (56)

How can we help you?

Was this helpful? How can I invest in stock portfolios? (57)

Thank you for your feedback!

Okay, we are raising a ticket now, a team member will respond within 24 hours.

How can I invest in stock portfolios? (2024)

FAQs

How can I invest in stock portfolios? ›

To invest in stocks, open an online brokerage account, add money to the account, and purchase stocks or stock-based funds from there.

How much money do I need to invest to make $1000 a month? ›

A stock portfolio focused on dividends can generate $1,000 per month or more in perpetual passive income, Mircea Iosif wrote on Medium. “For example, at a 4% dividend yield, you would need a portfolio worth $300,000.

Where do I start a stock portfolio? ›

One of the easiest ways is to open an online brokerage account and buy stocks or stock funds. If you're not comfortable with that, you can work with a professional to manage your portfolio, often for a reasonable fee. Either way, you can invest in stock online at little cost.

How to invest in stocks as a beginner? ›

  1. 10 Step Guide to Investing in Stocks.
  2. Step 1: Set Clear Investment Goals.
  3. Step 2: Determine How Much You Can Afford To Invest.
  4. Step 3: Determine Your Tolerance for Risk.
  5. Step 4: Determine Your Investing Style.
  6. Choose an Investment Account.
  7. Step 6: Learn the Costs of Investing.
  8. Step 7: Pick Your Broker.

Which portfolio is best for investment? ›

An aggressive portfolio is ideal for someone with high risk tolerance and a lot of time to invest, while a conservative portfolio is better for someone with low risk tolerance and a short amount of time. A model portfolio doesn't necessarily make it the right portfolio for you.

How much will I have if I invest $500 a month for 10 years? ›

What happens when you invest $500 a month
Rate of return10 years30 years
4%$72,000$336,500
6%$79,000$474,300
8%$86,900$679,700
10%$95,600$987,000
Nov 15, 2023

How to make $2500 a month in passive income? ›

One of the easiest passive income strategies is dividend investing. By purchasing stocks that pay regular dividends, you can earn $2,500 per month in dividend income.

How many stocks should a beginner portfolio have? ›

What's the right number of companies to invest in, even if portfolio size doesn't matter? “Studies show there's statistical significance to the rule of thumb for 20 to 30 stocks to achieve meaningful diversification,” says Aleksandr Spencer, CFA® and chief investment officer at Bogart Wealth.

What are the best stocks for beginners? ›

Best Stocks To Invest In 2024 For Beginners
  • UnitedHealth Group Incorporated (NYSE:UNH) Number of Hedge Fund Holders: 104. Quarterly Revenue Growth: 14.10% ...
  • JPMorgan Chase & Co. (NYSE:JPM) Number of Hedge Fund Holders: 109. ...
  • Advanced Micro Devices, Inc. (NASDAQ:AMD) ...
  • Adobe Inc. (NASDAQ:ADBE) ...
  • Salesforce, Inc. (NYSE:CRM)
Feb 7, 2024

How much money do I need to start a portfolio? ›

It is possible to start a thriving portfolio with an initial investment of just $1,000, followed by monthly contributions of as little as $100. There are many ways to obtain an initial sum you plan to put toward investments.

How can I teach myself stocks? ›

10 great ways to learn stock trading as a beginner
  1. Open a stockbroker account. ...
  2. Casually follow the stock market. ...
  3. Find a mentor or a friend to learn with. ...
  4. Study successful investors. ...
  5. Read books. ...
  6. Read articles and listen to podcasts. ...
  7. Consider paid subscriptions, but skeptically.
Mar 13, 2024

How to buy shares in Coca-Cola? ›

Shares can be purchased through a Direct Stock Purchase and Dividend Reinvestment Plan sponsored and administered by Computershare Trust Company, N.A. Details about the Computershare Investment Plan, including any fees associated with the Plan, can be viewed and printed from Computershare's website.

When to buy stocks for beginners? ›

The best time of day to buy stocks is usually in the morning, shortly after the market opens. Mondays and Fridays tend to be good days to trade stocks, while the middle of the week is less volatile.

What is the safest portfolio? ›

Here are the best low-risk investments in April 2024:
  • High-yield savings accounts.
  • Money market funds.
  • Short-term certificates of deposit.
  • Series I savings bonds.
  • Treasury bills, notes, bonds and TIPS.
  • Corporate bonds.
  • Dividend-paying stocks.
  • Preferred stocks.
Apr 1, 2024

How do I start a $1000 portfolio? ›

How to invest $1,000 right now — wherever you are on your financial journey
  1. Build an emergency fund. An emergency fund is crucial to your financial health. ...
  2. Pay down debt. ...
  3. Put it in a retirement plan. ...
  4. Open a certificate of deposit (CD) ...
  5. Invest in money market funds. ...
  6. Buy treasury bills. ...
  7. Invest in stocks. ...
  8. Use a robo-advisor.

How long to hold stock to avoid tax? ›

You may have to pay capital gains tax on stocks sold for a profit. Any profit you make from selling a stock is taxable at either 0%, 15% or 20% if you held the shares for more than a year. If you held the shares for a year or less, you'll be taxed at your ordinary tax rate.

How much money if I invest $100 a month? ›

Investing $100 per month, with an average return rate of 10%, will yield $200,000 after 30 years. Due to compound interest, your investment will yield $535,000 after 40 years. These numbers can grow exponentially with an extra $100. If you make a monthly investment of $200, your 30-year yield will be close to $400,000.

How much should I invest to make $500 a month? ›

To generate $500 a month in passive income you may need to invest between $83,333 and $250,000, depending on the asset and investment type you select. In addition to yield, you'll want to consider safety, liquidity and convenience when selecting the investments you'll employ to provide monthly passive income.

How many dividends does 1 million dollars make? ›

Stocks in the S&P 500 index currently yield about 1.5% on aggregate. That means, if you have $1 million invested in a mutual fund or exchange-traded fund that tracks the index, you could expect annual dividend income of about $15,000.

How can I make $1000 a month passively? ›

Passive Income: 7 Ways To Make an Extra $1,000 a Month
  1. Buy US Treasuries. U.S. Treasuries are still paying attractive yields on short-term investments. ...
  2. Rent Out Your Yard. ...
  3. Rent Out Your Car. ...
  4. Rental Real Estate. ...
  5. Publish an E-Book. ...
  6. Become an Affiliate. ...
  7. Sell an Online Course. ...
  8. Bottom Line.
Apr 18, 2024

References

Top Articles
Latest Posts
Article information

Author: Barbera Armstrong

Last Updated:

Views: 5543

Rating: 4.9 / 5 (79 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Barbera Armstrong

Birthday: 1992-09-12

Address: Suite 993 99852 Daugherty Causeway, Ritchiehaven, VT 49630

Phone: +5026838435397

Job: National Engineer

Hobby: Listening to music, Board games, Photography, Ice skating, LARPing, Kite flying, Rugby

Introduction: My name is Barbera Armstrong, I am a lovely, delightful, cooperative, funny, enchanting, vivacious, tender person who loves writing and wants to share my knowledge and understanding with you.