Indu Lagna Calculator

Indu Lagna Calculator for Wealth Potential body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 20px; background-color: #f9f9f9; } .container { max-width: 800px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); } h1 { text-align: center; color: #2c3e50; margin-bottom: 30px; font-size: 2.2rem; } h2 { color: #34495e; margin-top: 40px; border-bottom: 2px solid #eee; padding-bottom: 10px; } .calculator-box { background-color: #f0f4f8; padding: 30px; border-radius: 8px; border: 1px solid #dfe6ed; margin-bottom: 40px; } .input-group { margin-bottom: 20px; } label { display: block; margin-bottom: 8px; font-weight: 600; color: #4a5568; } select { width: 100%; padding: 12px; border: 1px solid #cbd5e0; border-radius: 6px; font-size: 16px; background-color: #fff; transition: border-color 0.3s; } select:focus { border-color: #4299e1; outline: none; box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2); } button.calc-btn { width: 100%; background-color: #5a67d8; color: white; padding: 14px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; margin-top: 10px; } button.calc-btn:hover { background-color: #4c51bf; } #result { margin-top: 25px; display: none; animation: fadeIn 0.5s ease-in; } .result-card { background-color: #fff; border-left: 5px solid #48bb78; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border-radius: 4px; } .result-title { font-size: 1.1rem; color: #718096; margin-bottom: 5px; } .result-value { font-size: 2rem; font-weight: 800; color: #2f855a; margin-bottom: 10px; } .result-details { font-size: 0.95rem; color: #4a5568; background: #f0fff4; padding: 15px; border-radius: 6px; } .error-msg { color: #e53e3e; font-weight: bold; text-align: center; margin-top: 10px; display: none; } .article-content p { margin-bottom: 20px; } .highlight-box { background-color: #fffaf0; border-left: 4px solid #ed8936; padding: 15px; margin: 20px 0; } ul { margin-bottom: 20px; padding-left: 20px; } li { margin-bottom: 8px; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 600px) { .container { padding: 20px; } .calculator-box { padding: 20px; } }

Indu Lagna Calculator

— Select Sign — Aries (Mesha) Taurus (Vrishabha) Gemini (Mithuna) Cancer (Karka) Leo (Simha) Virgo (Kanya) Libra (Tula) Scorpio (Vrishchika) Sagittarius (Dhanu) Capricorn (Makara) Aquarius (Kumbha) Pisces (Meena)
— Select Sign — Aries (Mesha) Taurus (Vrishabha) Gemini (Mithuna) Cancer (Karka) Leo (Simha) Virgo (Kanya) Libra (Tula) Scorpio (Vrishchika) Sagittarius (Dhanu) Capricorn (Makara) Aquarius (Kumbha) Pisces (Meena)
Please select both Ascendant and Moon signs.

What is Indu Lagna?

In Vedic Astrology, the Indu Lagna (also known as the "Moon Lagna" for wealth) is a special mathematically derived point in your horoscope used specifically to analyze financial prosperity and wealth potential. The word "Indu" means Moon, highlighting the importance of the lunar influence on material accumulation.

Unlike standard wealth houses (like the 2nd and 11th houses), Indu Lagna acts as a specific indicator for the level of affluence a person can achieve. When benefic planets (like Jupiter, Venus, or Mercury) transit or aspect this sign, or if powerful planets reside in it during birth, it often indicates periods of significant financial gain.

How is Indu Lagna Calculated?

The calculation of Indu Lagna is based on the "Kalas" (planetary rays) assigned to the seven main planets. The method involves the following steps:

The Planetary Kalas (Rays):
  • Sun: 30 Kalas
  • Moon: 16 Kalas
  • Mars: 6 Kalas
  • Mercury: 8 Kalas
  • Jupiter: 10 Kalas
  • Venus: 12 Kalas
  • Saturn: 1 Kala

The Formula:

  1. Identify the 9th House Lord from your Ascendant (Lagna).
  2. Identify the 9th House Lord from your Moon Sign (Chandra Lagna).
  3. Add the Kalas of these two planets together.
  4. Divide the total sum by 12.
  5. Take the remainder (if the remainder is 0, treat it as 12).
  6. Count that number of signs forward from your Moon Sign.
  7. The resulting sign is your Indu Lagna.

Interpreting Your Result

Once you have identified your Indu Lagna sign using the calculator above, check your birth chart for the following:

  • Planets in Indu Lagna: Benefic planets here (Jupiter, Venus) are excellent for wealth. Malefic planets can indicate wealth through struggle or aggressive means.
  • The Lord of Indu Lagna: If the ruler of your Indu Lagna sign is well-placed (exalted or in its own house), it strengthens your wealth potential.
  • Transits: When Jupiter transits over your Indu Lagna, it is often considered a prosperous time financially.

This calculator simplifies the complex process of finding 9th lords and summing planetary rays, giving you the precise sign instantaneously.

function calculateInduLagna() { var ascInput = document.getElementById("ascendantSign"); var moonInput = document.getElementById("moonSign"); var errorDiv = document.getElementById("error"); var resultDiv = document.getElementById("result"); var ascSign = parseInt(ascInput.value); var moonSign = parseInt(moonInput.value); // Validation if (!ascSign || !moonSign) { errorDiv.style.display = "block"; resultDiv.style.display = "none"; return; } errorDiv.style.display = "none"; // 1. Data Definitions // Map signs to their ruling planets (1=Mars, 2=Venus, etc.) // 0 index is dummy. 1=Aries … 12=Pisces var signRulers = [null, "Mars", // 1 Aries "Venus", // 2 Taurus "Mercury", // 3 Gemini "Moon", // 4 Cancer "Sun", // 5 Leo "Mercury", // 6 Virgo "Venus", // 7 Libra "Mars", // 8 Scorpio "Jupiter", // 9 Sagittarius "Saturn", // 10 Capricorn "Saturn", // 11 Aquarius "Jupiter" // 12 Pisces ]; var planetKalas = { "Sun": 30, "Moon": 16, "Mars": 6, "Mercury": 8, "Jupiter": 10, "Venus": 12, "Saturn": 1 }; var signNames = [null, "Aries (Mesha)", "Taurus (Vrishabha)", "Gemini (Mithuna)", "Cancer (Karka)", "Leo (Simha)", "Virgo (Kanya)", "Libra (Tula)", "Scorpio (Vrishchika)", "Sagittarius (Dhanu)", "Capricorn (Makara)", "Aquarius (Kumbha)", "Pisces (Meena)" ]; // 2. Calculation Logic // Find 9th House from Ascendant // Formula: (CurrentSign + 8) % 12. If result 0, it's 12. var ninthFromAscIndex = (ascSign + 8) % 12; if (ninthFromAscIndex === 0) ninthFromAscIndex = 12; var lordOfNinthAsc = signRulers[ninthFromAscIndex]; var kalasAsc = planetKalas[lordOfNinthAsc]; // Find 9th House from Moon var ninthFromMoonIndex = (moonSign + 8) % 12; if (ninthFromMoonIndex === 0) ninthFromMoonIndex = 12; var lordOfNinthMoon = signRulers[ninthFromMoonIndex]; var kalasMoon = planetKalas[lordOfNinthMoon]; // Sum Kalas var totalKalas = kalasAsc + kalasMoon; // Remainder divided by 12 var remainder = totalKalas % 12; if (remainder === 0) remainder = 12; // Count remainder from Moon Sign to get Indu Lagna // Formula: (MoonSign + Remainder – 1) % 12. If 0 -> 12. // We subtract 1 because counting starts FROM the sign itself. var induLagnaIndex = (moonSign + remainder – 1) % 12; if (induLagnaIndex === 0) induLagnaIndex = 12; var induLagnaName = signNames[induLagnaIndex]; var induLagnaRuler = signRulers[induLagnaIndex]; // 3. Display Result var htmlOutput = '
'; htmlOutput += '
Your Indu Lagna Sign is
'; htmlOutput += '
' + induLagnaName + '
'; htmlOutput += '
'; htmlOutput += 'Calculation Breakdown:'; htmlOutput += '• 9th Lord from Ascendant: ' + lordOfNinthAsc + ' (' + kalasAsc + ' Kalas)'; htmlOutput += '• 9th Lord from Moon: ' + lordOfNinthMoon + ' (' + kalasMoon + ' Kalas)'; htmlOutput += '• Total Rays: ' + totalKalas + "; htmlOutput += '• Count from Moon: ' + remainder + ' signs'; htmlOutput += 'Wealth Ruler: ' + induLagnaRuler; htmlOutput += '
'; htmlOutput += '
'; resultDiv.innerHTML = htmlOutput; resultDiv.style.display = "block"; }

Leave a Reply

Your email address will not be published. Required fields are marked *