PrimoGreedy-Agent / test_firewall.py
CiscsoPonce's picture
Initial Deploy (Clean)
a2cbcac
raw
history blame contribute delete
494 Bytes
from src.finance_tools import check_financial_health
print("\n--- 🕵️‍♂️ PRIMOGREEDY V2 TEST (Solvency + Valuation) ---\n")
# Test List:
# NVDA = Might fail (Expensive)
# AMC = Should fail (Bad Debt)
# KO (Coca Cola) = Should pass (Safe)
# PLTR (Palantir) = Might fail (Expensive)
tickers = ["NVDA", "AMC", "KO", "PLTR"]
for t in tickers:
result = check_financial_health(t)
icon = "✅" if result['status'] == "PASS" else "❌"
print(f"{icon} {t}: {result['reason']}")