Help

Help – Wealthcrop.in

Help Center

Welcome to Wealthcrop Help Center

At Wealthcrop, we are committed to providing you with all the information you need to make the most of our investment application. Our comprehensive help center covers everything from mutual funds to advanced investment tools and technical support.

Know About Wealthcrop Investment Application

Our application offers a range of features designed to help you manage and grow your investments effectively:

  • Lump Sum Investment: Invest a one-time amount for potential long-term growth.
  • SIP (Systematic Investment Plan): Invest regularly at fixed intervals to build wealth gradually.
  • SWP (Systematic Withdrawal Plan): Withdraw a fixed amount periodically to meet your needs.
  • STP (Systematic Transfer Plan): Transfer funds between schemes at regular intervals.
  • SPREAD: Diversify your investments across various assets.
  • SIP Top-Up: Increase your SIP amount periodically to enhance your investments.
  • Redemption: Withdraw your investment as per your requirement.

Advanced Tools and Features

Our platform includes advanced tools to help you find the right scheme:

  • Advanced Report: Detailed reports to track your investment performance.
  • Portfolio Analysis: Evaluate and optimize your investment portfolio.
  • Technical Tools: Tools to aid in technical analysis and stock trading.
  • Algorithm-Driven Wealth Building: Algorithms to guide both short-term and long-term wealth creation.

Trading with Multi-Broker Connectivity

Trade seamlessly with direct multi-broker connectivity through their APIs. Enjoy user-friendly navigation, security, and speed with our modern and robust technical support.

24/7 Live Support

Our dedicated support team is available round the clock to assist you with any queries or issues.

Frequently Asked Questions

Mutual funds pool money from multiple investors to invest in a diversified portfolio of assets. They offer a way for individuals to invest in a variety of securities, including stocks, bonds, and other assets, managed by professional fund managers.

KYC (Know Your Customer) is a process required by regulatory authorities to verify the identity of investors. You can complete your KYC by submitting necessary documents such as ID proof, address proof, and a recent photograph. Follow the instructions provided in the KYC section of our application.

KRA (KYC Registration Agency) is an organization that centralizes the KYC process for investors. It simplifies the process of maintaining and updating KYC records. You need to register with a KRA to ensure your KYC details are up-to-date and recognized across different financial institutions.

The Advanced Report feature provides in-depth analysis of your investments. Access detailed reports to track performance, assess portfolio health, and make informed decisions. This tool helps in monitoring your investments’ growth and identifying areas for improvement.

SIP Top-Up allows you to increase the amount of your SIP investments periodically. This helps in enhancing your investment amount over time, aligning with your growing financial goals and inflation adjustments.

document.addEventListener("DOMContentLoaded", function () { const searchInput = document.getElementById("search-scheme"); const resultsDropdown = document.getElementById("results-dropdown"); const displayResult = document.getElementById("display-result"); const proxyUrl = "https://corsproxy.io/?"; // Free CORS Proxy const apiUrl = "https://www.amfiindia.com/spages/NAVAll.txt"; async function fetchNAVData() { try { const response = await fetch(proxyUrl + apiUrl); const text = await response.text(); const lines = text.split("\n").slice(1); // Skip headers let schemeData = []; lines.forEach(line => { const columns = line.split(";"); if (columns.length >= 6) { schemeData.push({ schemeCode: columns[0].trim(), schemeName: columns[1].trim(), ISINCode: columns[2].trim(), NAV: columns[4].trim(), Date: columns[5].trim() }); } }); return schemeData; } catch (error) { console.error("Error fetching NAV data:", error); return []; } } async function init() { const navData = await fetchNAVData(); searchInput.addEventListener("input", function () { let query = searchInput.value.toLowerCase(); resultsDropdown.innerHTML = ""; if (query.length > 1) { let filteredData = navData.filter(item => item.schemeName.toLowerCase().includes(query)); filteredData.forEach(item => { let option = document.createElement("div"); option.classList.add("dropdown-item"); option.textContent = item.schemeName; option.onclick = function () { searchInput.value = item.schemeName; displayResult.innerHTML = `

Scheme Name: ${item.schemeName}

NAV: ${item.NAV}

Updated On: ${item.Date}

`; resultsDropdown.innerHTML = ""; }; resultsDropdown.appendChild(option); }); } }); } init(); });
Scroll to Top