{"slug": "my-ai-agent-recommended-a-non-existent-investment-product-exposing-information", "title": "My AI Agent Recommended a Non-Existent Investment Product — Exposing Information Gaps Between Fund Distributors and Asset Manage", "summary": "A developer building an AI agent for investment research discovered that the agent fabricated a non-existent investment product, 'eMAXIS Slim FANG+', by combining popular brand names. Cross-referencing official sources revealed conflicting information about NISA eligibility between fund distributors and asset managers, highlighting a hierarchy of information reliability. The developer implemented a fact-checking mechanism using pandas to verify AI recommendations against primary data from asset managers.", "body_md": "Hey everyone, it's your average 38-year-old developer here, hacking away at AI agents and automated trading bots in my evenings and weekends, just like many of you.\n\nToday, I want to share a recent blunder with a financial information AI agent I built. What started as a chuckle-worthy mistake turned into a serious lesson about \"information reliability\" — a critical factor that can be fatal for any automated system design.\n\nWith the new NISA (Japan's tax-advantaged investment program) kicking off, I was building an AI agent to list investment trusts tracking specific indices, primarily to rebalance my own portfolio. I started by asking it to compare products linked to the trending \"FANG+\" index.\n\nWithin seconds of my prompt, the AI confidently replied:\n\n\"For FANG+ linked investment trusts, considering trust fees and performance, I recommend the following two:\n\nHmm, interesting. I knew about iFreeNEXT FANG+, but \"eMAXIS Slim FANG+\"?\n\n\"Wait, is that even a thing?\"\n\nI know the eMAXIS Slim series is popular for things like S&P500 and global index funds, but FANG+? I'd never heard of it. Skeptical, I quickly Googled it.\n\n...And indeed, it didn't exist.\n\nThe AI had confidently fabricated a plausible-sounding product and recommended it. This was a red flag.\n\nAI \"hallucinations\" are common. It likely combined the popular \"eMAXIS Slim\" brand with the popular \"FANG+\" index to generate a seemingly plausible answer.\n\nIt would be easy to just dismiss AI as \"unreliable\" and move on. But as an engineer, I wanted to dig deeper. What if the agent had only returned real product names? Would I have blindly trusted it and moved on to the next step?\n\nCurious, I decided to cross-reference multiple sources for the legitimate \"iFreeNEXT FANG+\". Specifically, I checked the website of \"Company A\" (a distributor selling the product) and the official website of \"Daiwa Asset Management\" (the asset manager that operates the fund).\n\nWhat I found was even more concerning:\n\n**The NISA growth investment category eligibility status conflicted between the two sources.**\n\nWhich one is correct? Unsurprisingly, it's the \"asset manager\" who creates the product. The distributor is essentially a \"retailer\" that procures and sells the product. They might have delayed updates or simple transcription errors.\n\nThis incident made me realize that information has a clear \"hierarchy\":\n\nMy agent had completely ignored this hierarchy. It treated all information gathered from the internet as flat data, simply summarized by the AI. This inherent risk meant it could recommend non-existent products or be misled by outdated secondary data.\n\nThis incident fundamentally changed my approach to designing information gathering agents. It's not enough to just have AI \"research\"; you need to build in mechanisms to \"verify\" for it to be practical.\n\nThe solution was simple:\n\nSpecifically, I implemented logic like this using Python (pandas):\n\n``` python\nimport pandas as pd\n\n# Primary data obtained from the asset manager's official website (master data)\nprimary_data = {\n    'Fund Name': ['iFreeNEXT FANG+', 'iFreeNEXT NASDAQ100'],\n    'Asset Manager': ['Daiwa Asset Management', 'Daiwa Asset Management'],\n    'NISA Growth Eligible': [True, True],\n    'Source': ['Asset Manager Official', 'Asset Manager Official']\n}\ndf_primary = pd.DataFrame(primary_data)\n\n# AI's recommendation list (including the fabricated product)\nai_recommendation = {\n    'Fund Name': ['eMAXIS Slim FANG+', 'iFreeNEXT FANG+'],\n    'Reason': ['Lowest trust fees', 'Strong track record']\n}\ndf_ai = pd.DataFrame(ai_recommendation)\n\n# --- Fact-checking logic ---\n# 1. Check if AI's recommendation exists in primary data (master)\nfor fund_name in df_ai['Fund Name']:\n    if fund_name not in df_primary['Fund Name'].values:\n        print(f\"[WARNING] AI recommended '{fund_name}' which does not exist in master data.\")\n\n# 2. Merge distributor information with primary information to detect discrepancies\n# (Skipped here, but involves merging distributor data with df_primary and checking for differences)\n```\n\nThis code doesn't blindly trust the AI's output. It first checks if the fund names recommended by the AI exist in our defined `df_primary`\n\n(primary information) list. Anything not found is flagged as a \"warning\".\n\nFurthermore, by merging specifications from secondary sources (like distributor sites) with the primary information, we can automatically detect issues like the \"NISA eligibility discrepancy.\"\n\nWhat I learned from this failure is that AI is a highly capable assistant, but not the ultimate decision-maker. Especially in domains requiring accuracy, such as finance or technical information, a system to verify AI output is the lifeline.\n\nAnd the foundation of that verification is the ability to discern \"which information is primary.\"\n\nWhen building automated systems, it's easy to gravitate towards readily accessible secondary information or APIs. But we must constantly ask: where did this information come from? Is its \"freshness\" and \"reliability\" guaranteed?\n\nUltimately, the biggest leverage comes from automating the tedious process of verification. Even if the AI lies, the overall system can still produce correct outputs. This incident reaffirmed my commitment to building robust systems that can handle such challenges. ✍️", "url": "https://wpnews.pro/news/my-ai-agent-recommended-a-non-existent-investment-product-exposing-information", "canonical_source": "https://dev.to/masaoshimadaopen/my-ai-agent-recommended-a-non-existent-investment-product-exposing-information-gaps-between-fund-12j5", "published_at": "2026-08-25 23:30:20+00:00", "updated_at": "2026-08-25 23:43:26.613129+00:00", "lang": "en", "topics": ["artificial-intelligence", "ai-agents", "ai-safety", "developer-tools"], "entities": ["eMAXIS Slim", "FANG+", "iFreeNEXT FANG+", "Daiwa Asset Management", "NISA"], "alternates": {"html": "https://wpnews.pro/news/my-ai-agent-recommended-a-non-existent-investment-product-exposing-information", "markdown": "https://wpnews.pro/news/my-ai-agent-recommended-a-non-existent-investment-product-exposing-information.md", "text": "https://wpnews.pro/news/my-ai-agent-recommended-a-non-existent-investment-product-exposing-information.txt", "jsonld": "https://wpnews.pro/news/my-ai-agent-recommended-a-non-existent-investment-product-exposing-information.jsonld"}}