<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>traveler0201 님의 블로그</title>
    <link>https://traveler0201.tistory.com/</link>
    <description>미국주식 분석 및 매매 전략 공유 블로그입니다.</description>
    <language>ko</language>
    <pubDate>Thu, 14 May 2026 00:07:01 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>traveler0201</managingEditor>
    <item>
      <title>로켓랩 분석 및 매매전략(2025. 06. 24)</title>
      <link>https://traveler0201.tistory.com/4</link>
      <description>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;ko&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;로켓랩(RKLB) 인터랙티브 매매 전략 분석&lt;/title&gt;
    &lt;script src=&quot;https://cdn.tailwindcss.com&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/chart.js&quot;&gt;&lt;/script&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;!-- Chosen Palette: Cosmic Neutrals --&gt;
    &lt;!-- Application Structure Plan: A top-down narrative SPA. Starts with a main dashboard (Investment Highlights) featuring the core thesis and bull/bear cases. A sticky navigation bar allows users to jump to focused sections: 'Growth Engines' (visualizing the dual business model and Neutron catalyst), 'Financials' (interactive charts), 'Technicals' (price analysis), and 'Strategy' (interactive toggles for different investor profiles). This structure is designed for intuitive exploration, guiding the user from high-level summary to detailed analysis, rather than rigidly following the report's linear chapter format. The goal is to facilitate understanding through layered information and targeted interactions. --&gt;
    &lt;!-- Visualization &amp; Content Choices: 
        - Report Info: Key financial metrics (Revenue, Margin, EBITDA). Goal: Show change over time. Viz: Line and Bar charts using Chart.js. Interaction: Tooltips on hover. Justification: Best for time-series data visualization.
        - Report Info: Neutron vs. Falcon 9 cost comparison. Goal: Compare competitors. Viz: Bar chart using Chart.js. Interaction: Tooltips. Justification: Clearly illustrates the economic value proposition.
        - Report Info: Neutron development milestones. Goal: Organize process. Viz: Horizontal timeline with HTML/CSS. Interaction: Visual state changes for completed/pending items. Justification: Intuitive way to track project progress.
        - Report Info: Short-term vs. Long-term strategies. Goal: Inform user choices. Viz: Content blocks. Interaction: JS-powered toggle buttons to switch views. Justification: Simplifies complex information by showing only relevant content.
        - Report Info: Bull vs. Bear cases. Goal: Compare arguments. Viz: Card layout with HTML/CSS. Justification: Side-by-side comparison enhances clarity.
        - Library/Method: Chart.js for all charts due to its simplicity, responsiveness, and canvas-based rendering. Vanilla JS for all state management and interactivity.
    --&gt;
    &lt;!-- CONFIRMATION: NO SVG graphics used. NO Mermaid JS used. --&gt;
    &lt;style&gt;
        body {
            font-family: 'Noto Sans KR', sans-serif;
            background-color: #f0f2f5;
        }
        .chart-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            height: 400px;
            max-height: 50vh;
        }
        .nav-link {
            transition: all 0.3s ease;
        }
        .nav-link.active, .nav-link:hover {
            color: #ffffff;
            background-color: #0056b3;
        }
        .strategy-btn.active {
            background-color: #007bff;
            color: white;
            border-color: #007bff;
        }
        .milestone {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .milestone.completed {
            text-decoration: line-through;
            opacity: 0.6;
        }
        .milestone.completed .milestone-icon {
            background-color: #28a745;
            color: white;
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body class=&quot;text-gray-800&quot;&gt;

    &lt;!-- Header --&gt;
    &lt;header class=&quot;bg-slate-800 text-white p-6 shadow-lg&quot;&gt;
        &lt;div class=&quot;container mx-auto max-w-7xl&quot;&gt;
            &lt;h1 class=&quot;text-3xl md:text-4xl font-bold&quot;&gt;로켓랩(RKLB) 인터랙티브 매매 전략 분석&lt;/h1&gt;
            &lt;p class=&quot;mt-2 text-lg text-slate-300&quot;&gt;변곡점을 항해하는 차세대 우주 리더&lt;/p&gt;
        &lt;/div&gt;
    &lt;/header&gt;
    
    &lt;!-- Sticky Navigation --&gt;
    &lt;nav id=&quot;navbar&quot; class=&quot;sticky top-0 z-50 bg-slate-700 text-slate-200 shadow-md&quot;&gt;
        &lt;div class=&quot;container mx-auto max-w-7xl&quot;&gt;
            &lt;div class=&quot;flex justify-center items-center space-x-2 md:space-x-4 py-2 px-2&quot;&gt;
                &lt;a href=&quot;#highlights&quot; class=&quot;nav-link px-3 py-2 rounded-md text-sm md:text-base font-medium&quot;&gt;투자 하이라이트&lt;/a&gt;
                &lt;a href=&quot;#growth&quot; class=&quot;nav-link px-3 py-2 rounded-md text-sm md:text-base font-medium&quot;&gt;성장 엔진&lt;/a&gt;
                &lt;a href=&quot;#financials&quot; class=&quot;nav-link px-3 py-2 rounded-md text-sm md:text-base font-medium&quot;&gt;재무 분석&lt;/a&gt;
                &lt;a href=&quot;#technicals&quot; class=&quot;nav-link px-3 py-2 rounded-md text-sm md:text-base font-medium&quot;&gt;기술적 분석&lt;/a&gt;
                &lt;a href=&quot;#strategy&quot; class=&quot;nav-link px-3 py-2 rounded-md text-sm md:text-base font-medium&quot;&gt;투자 전략&lt;/a&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/nav&gt;

    &lt;!-- Main Content --&gt;
    &lt;main class=&quot;container mx-auto max-w-7xl p-4 md:p-6&quot;&gt;
        
        &lt;!-- Section 1: Investment Highlights --&gt;
        &lt;section id=&quot;highlights&quot; class=&quot;scroll-mt-20 mb-12&quot;&gt;
            &lt;div class=&quot;bg-white p-6 rounded-lg shadow-lg&quot;&gt;
                &lt;h2 class=&quot;text-2xl font-bold mb-4 text-slate-800 border-b pb-2&quot;&gt;투자 하이라이트: 투기적 매수 (Speculative Buy)&lt;/h2&gt;
                &lt;p class=&quot;mb-6 text-gray-600&quot;&gt;
                    본 분석은 로켓랩을 높은 위험과 높은 잠재적 수익을 동시에 가진 '투기적 매수' 대상으로 평가합니다. 소형 발사체 시장의 리더십과 고성장 우주 시스템 사업을 기반으로, 미래 성장의 핵심 동력인 '뉴트론' 로켓 개발에 집중 투자하고 있습니다. 아래는 로켓랩 투자의 핵심적인 강세 및 약세 요인입니다.
                &lt;/p&gt;
                &lt;div class=&quot;grid md:grid-cols-2 gap-6&quot;&gt;
                    &lt;!-- Bull Case --&gt;
                    &lt;div class=&quot;bg-green-50 border border-green-200 p-6 rounded-lg&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold text-green-800 mb-3&quot;&gt;강세론 (Bull Case)  &lt;/h3&gt;
                        &lt;ul class=&quot;space-y-2 list-inside list-disc text-gray-700&quot;&gt;
                            &lt;li&gt;&lt;span class=&quot;font-semibold&quot;&gt;입증된 실행 능력:&lt;/span&gt; 소형 발사체 시장의 확고한 리더&lt;/li&gt;
                            &lt;li&gt;&lt;span class=&quot;font-semibold&quot;&gt;전환적 촉매제 '뉴트론':&lt;/span&gt; 중형 발사 시장의 판도를 바꿀 게임 체인저&lt;/li&gt;
                            &lt;li&gt;&lt;span class=&quot;font-semibold&quot;&gt;다각화된 사업 구조:&lt;/span&gt; 고마진 우주 시스템 사업이 발사 사업 리스크 완화&lt;/li&gt;
                            &lt;li&gt;&lt;span class=&quot;font-semibold&quot;&gt;강력한 정부 파트너십:&lt;/span&gt; 美 국방부/NASA와의 긴밀한 관계&lt;/li&gt;
                            &lt;li&gt;&lt;span class=&quot;font-semibold&quot;&gt;거대한 시장 기회:&lt;/span&gt; 1조 달러 규모로 성장할 우주 경제의 핵심 플레이어&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                    &lt;!-- Bear Case --&gt;
                    &lt;div class=&quot;bg-red-50 border border-red-200 p-6 rounded-lg&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold text-red-800 mb-3&quot;&gt;약세론 (Bear Case)  &lt;/h3&gt;
                        &lt;ul class=&quot;space-y-2 list-inside list-disc text-gray-700&quot;&gt;
                            &lt;li&gt;&lt;span class=&quot;font-semibold&quot;&gt;높은 밸류에이션 부담:&lt;/span&gt; 완벽한 성공을 가정한 현재 주가 수준&lt;/li&gt;
                            &lt;li&gt;&lt;span class=&quot;font-semibold&quot;&gt;뉴트론 개발 리스크:&lt;/span&gt; 지연 또는 실패 시 주가에 치명적 영향&lt;/li&gt;
                            &lt;li&gt;&lt;span class=&quot;font-semibold&quot;&gt;지속적인 현금 소진:&lt;/span&gt; 최소 2년간 수익성 부재 예상&lt;/li&gt;
                            &lt;li&gt;&lt;span class=&quot;font-semibold&quot;&gt;내부자 매도:&lt;/span&gt; 경영진의 지속적인 주식 매도는 위험 신호&lt;/li&gt;
                            &lt;li&gt;&lt;span class=&quot;font-semibold&quot;&gt;강력한 경쟁 환경:&lt;/span&gt; 스페이스X와의 경쟁 심화 가능성&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;

        &lt;!-- Section 2: Growth Engines --&gt;
        &lt;section id=&quot;growth&quot; class=&quot;scroll-mt-20 mb-12&quot;&gt;
            &lt;div class=&quot;bg-white p-6 rounded-lg shadow-lg&quot;&gt;
                &lt;h2 class=&quot;text-2xl font-bold mb-4 text-slate-800 border-b pb-2&quot;&gt;성장 엔진: 이중 사업 모델과 뉴트론 촉매제&lt;/h2&gt;
                &lt;p class=&quot;mb-6 text-gray-600&quot;&gt;
                    로켓랩의 성장은 '발사 서비스'와 '우주 시스템'이라는 두 개의 강력한 기둥에 의해 구동됩니다. 이 두 사업부는 서로 시너지를 내며 강력한 '플라이휠 효과'를 창출합니다. 여기에 미래 성장을 폭발시킬 '뉴트론' 로켓이 더해져 회사의 가치를 재평가하게 될 것입니다.
                &lt;/p&gt;

                &lt;div class=&quot;grid md:grid-cols-2 gap-8 mb-8&quot;&gt;
                    &lt;div class=&quot;bg-blue-50 p-4 rounded-lg&quot;&gt;
                        &lt;h4 class=&quot;text-lg font-bold text-blue-800&quot;&gt;발사 서비스 (Launch Services)&lt;/h4&gt;
                        &lt;p class=&quot;text-sm text-gray-600 mt-1&quot;&gt;안정적 캐시카우. 일렉트론 로켓 중심. 매출의 35% 차지.&lt;/p&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;bg-indigo-50 p-4 rounded-lg&quot;&gt;
                        &lt;h4 class=&quot;text-lg font-bold text-indigo-800&quot;&gt;우주 시스템 (Space Systems)&lt;/h4&gt;
                        &lt;p class=&quot;text-sm text-gray-600 mt-1&quot;&gt;고마진 성장 동력. 위성 부품 및 플랫폼. 매출의 65% 차지.&lt;/p&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;mt-8&quot;&gt;
                    &lt;h3 class=&quot;text-xl font-bold mb-4 text-center&quot;&gt;뉴트론: 시장 파괴 분석 (vs 팰컨 9)&lt;/h3&gt;
                    &lt;p class=&quot;text-center text-gray-600 mb-4&quot;&gt;뉴트론은 더 큰 로켓이 아닌 '더 똑똑한' 로켓입니다. 팰컨 9의 거대한 용량이 비효율적인 중간 시장을 공략하여, 약 4톤의 일반 상업 임무에서 고객에게 훨씬 매력적인 비용을 제공합니다.&lt;/p&gt;
                    &lt;div class=&quot;chart-container h-96 md:h-[450px]&quot;&gt;
                        &lt;canvas id=&quot;neutronChart&quot;&gt;&lt;/canvas&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
                
                &lt;div class=&quot;mt-12&quot;&gt;
                     &lt;h3 class=&quot;text-xl font-bold mb-4 text-center&quot;&gt;뉴트론 개발 핵심 마일스톤&lt;/h3&gt;
                     &lt;p class=&quot;text-center text-gray-600 mb-6&quot;&gt;뉴트론의 성공은 로켓랩의 미래를 좌우합니다. 아래 타임라인을 통해 주요 개발 단계를 확인하고, 투자 논거의 유효성을 지속적으로 점검해야 합니다.&lt;/p&gt;
                    &lt;div id=&quot;milestone-timeline&quot; class=&quot;flex flex-col md:flex-row justify-between items-start md:items-center space-y-4 md:space-y-0 md:space-x-2&quot;&gt;
                        &lt;!-- Milestones will be injected by JS --&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;

        &lt;!-- Section 3: Financials --&gt;
        &lt;section id=&quot;financials&quot; class=&quot;scroll-mt-20 mb-12&quot;&gt;
            &lt;div class=&quot;bg-white p-6 rounded-lg shadow-lg&quot;&gt;
                &lt;h2 class=&quot;text-2xl font-bold mb-4 text-slate-800 border-b pb-2&quot;&gt;재무 분석: 초고속 성장의 대가&lt;/h2&gt;
                &lt;p class=&quot;mb-6 text-gray-600&quot;&gt;
                    로켓랩은 폭발적인 매출 성장을 기록하고 있지만, 뉴트론 개발을 위한 막대한 투자로 인해 현재는 수익성이 부재한 상태입니다. 그러나 핵심 사업의 총이익률은 꾸준히 개선되고 있으며, 뉴트론 발사 성공 시 2026-2027년 경 흑자 전환이 기대됩니다.
                &lt;/p&gt;
                &lt;div class=&quot;grid lg:grid-cols-2 gap-8&quot;&gt;
                    &lt;div&gt;
                        &lt;h3 class=&quot;text-xl font-bold mb-2 text-center&quot;&gt;총 매출 (백만 달러)&lt;/h3&gt;
                        &lt;div class=&quot;chart-container h-80&quot;&gt;
                            &lt;canvas id=&quot;revenueChart&quot;&gt;&lt;/canvas&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                    &lt;div&gt;
                        &lt;h3 class=&quot;text-xl font-bold mb-2 text-center&quot;&gt;총이익률 (GAAP) 및 조정 EBITDA (백만 달러)&lt;/h3&gt;
                        &lt;div class=&quot;chart-container h-80&quot;&gt;
                            &lt;canvas id=&quot;profitabilityChart&quot;&gt;&lt;/canvas&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;
        
        &lt;!-- Section 4: Technicals --&gt;
        &lt;section id=&quot;technicals&quot; class=&quot;scroll-mt-20 mb-12&quot;&gt;
            &lt;div class=&quot;bg-white p-6 rounded-lg shadow-lg&quot;&gt;
                &lt;h2 class=&quot;text-2xl font-bold mb-4 text-slate-800 border-b pb-2&quot;&gt;기술적 분석: 뜨거운 모멘텀 속 경고 신호&lt;/h2&gt;
                &lt;p class=&quot;mb-6 text-gray-600&quot;&gt;
                    주가는 강력한 상승 추세에 있으며 모든 주요 이동평균선 위에 위치해 있습니다. 하지만 일부 보조지표는 과매수 신호를 보내고 있으며, 특히 내부자들의 지속적인 매도는 신중한 접근이 필요함을 시사합니다.
                &lt;/p&gt;
                &lt;div class=&quot;grid md:grid-cols-2 gap-6 items-start&quot;&gt;
                    &lt;div&gt;
                        &lt;h3 class=&quot;text-xl font-bold mb-4&quot;&gt;주요 기술 지표&lt;/h3&gt;
                        &lt;div class=&quot;overflow-x-auto&quot;&gt;
                            &lt;table class=&quot;w-full text-sm text-left text-gray-500&quot;&gt;
                                &lt;thead class=&quot;text-xs text-gray-700 uppercase bg-gray-100&quot;&gt;
                                    &lt;tr&gt;
                                        &lt;th scope=&quot;col&quot; class=&quot;px-6 py-3&quot;&gt;지표&lt;/th&gt;
                                        &lt;th scope=&quot;col&quot; class=&quot;px-6 py-3&quot;&gt;현재 값&lt;/th&gt;
                                        &lt;th scope=&quot;col&quot; class=&quot;px-6 py-3&quot;&gt;신호&lt;/th&gt;
                                    &lt;/tr&gt;
                                &lt;/thead&gt;
                                &lt;tbody id=&quot;tech-indicators-table&quot;&gt;
                                    &lt;!-- Indicators will be injected by JS --&gt;
                                &lt;/tbody&gt;
                            &lt;/table&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                    &lt;div&gt;
                        &lt;h3 class=&quot;text-xl font-bold mb-4&quot;&gt;주요 지지 및 저항선&lt;/h3&gt;
                        &lt;div class=&quot;space-y-3&quot;&gt;
                            &lt;div class=&quot;bg-red-100 p-3 rounded-lg&quot;&gt;
                                &lt;p class=&quot;font-semibold text-red-800&quot;&gt;저항선&lt;/p&gt;
                                &lt;p class=&quot;text-lg font-bold text-red-900&quot;&gt;$33.46 (사상최고가), $35.00 (애널리스트 최고 목표가)&lt;/p&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;bg-green-100 p-3 rounded-lg&quot;&gt;
                                &lt;p class=&quot;font-semibold text-green-800&quot;&gt;1차 지지선&lt;/p&gt;
                                &lt;p class=&quot;text-lg font-bold text-green-900&quot;&gt;~$27.28 (20일 이동평균선)&lt;/p&gt;
                            &lt;/div&gt;
                             &lt;div class=&quot;bg-green-100 p-3 rounded-lg&quot;&gt;
                                &lt;p class=&quot;font-semibold text-green-800&quot;&gt;2차 지지선&lt;/p&gt;
                                &lt;p class=&quot;text-lg font-bold text-green-900&quot;&gt;~$24.10 (50일 이동평균선)&lt;/p&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;mt-4 bg-yellow-100 border-l-4 border-yellow-500 text-yellow-700 p-4&quot; role=&quot;alert&quot;&gt;
                            &lt;p class=&quot;font-bold&quot;&gt;주의: 내부자 매도&lt;/p&gt;
                            &lt;p&gt;최근 3개월간 $3,030만에 달하는 내부자 매도가 있었습니다. 이는 현재 밸류에이션에 대한 부담을 시사할 수 있습니다.&lt;/p&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;

        &lt;!-- Section 5: Strategy --&gt;
        &lt;section id=&quot;strategy&quot; class=&quot;scroll-mt-20&quot;&gt;
            &lt;div class=&quot;bg-white p-6 rounded-lg shadow-lg&quot;&gt;
                &lt;h2 class=&quot;text-2xl font-bold mb-4 text-slate-800 border-b pb-2&quot;&gt;실행 가능한 투자 전략&lt;/h2&gt;
                &lt;p class=&quot;mb-6 text-gray-600&quot;&gt;
                    로켓랩은 투자 기간과 위험 감수 수준에 따라 다른 접근 방식이 필요합니다. 아래에서 자신의 투자 성향에 맞는 전략을 확인하세요.
                &lt;/p&gt;
                &lt;div class=&quot;flex justify-center mb-6&quot;&gt;
                    &lt;div class=&quot;inline-flex rounded-md shadow-sm&quot; role=&quot;group&quot;&gt;
                        &lt;button type=&quot;button&quot; id=&quot;short-term-btn&quot; class=&quot;strategy-btn active px-4 py-2 text-sm font-medium text-gray-900 bg-white border border-gray-200 rounded-l-lg hover:bg-gray-100 focus:z-10 focus:ring-2 focus:ring-blue-700&quot;&gt;
                            단기 트레이딩 (3-6개월)
                        &lt;/button&gt;
                        &lt;button type=&quot;button&quot; id=&quot;long-term-btn&quot; class=&quot;strategy-btn px-4 py-2 text-sm font-medium text-gray-900 bg-white border-t border-b border-r border-gray-200 rounded-r-lg hover:bg-gray-100 focus:z-10 focus:ring-2 focus:ring-blue-700&quot;&gt;
                            장기 투자 (18개월 이상)
                        &lt;/button&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;!-- Short Term Strategy --&gt;
                &lt;div id=&quot;short-term-content&quot;&gt;
                     &lt;div class=&quot;bg-gray-50 p-6 rounded-lg border&quot;&gt;
                         &lt;h3 class=&quot;text-xl font-bold mb-3&quot;&gt;단기 트레이딩: 신중한 강세 (Cautiously Bullish)&lt;/h3&gt;
                         &lt;ul class=&quot;space-y-3&quot;&gt;
                            &lt;li class=&quot;flex items-start&quot;&gt;&lt;span class=&quot;text-blue-500 font-bold mr-2&quot;&gt;▶&lt;/span&gt;&lt;span&gt;&lt;span class=&quot;font-semibold&quot;&gt;스탠스:&lt;/span&gt; 모멘텀은 강력하나 과매수 상태. 추격 매수 자제.&lt;/span&gt;&lt;/li&gt;
                            &lt;li class=&quot;flex items-start&quot;&gt;&lt;span class=&quot;text-blue-500 font-bold mr-2&quot;&gt;▶&lt;/span&gt;&lt;span&gt;&lt;span class=&quot;font-semibold&quot;&gt;진입 전략:&lt;/span&gt; 조정 구간에서 분할 매수. 이상적 진입 구간은 20일 이평선(~&lt;span class=&quot;font-bold&quot;&gt;$27.50&lt;/span&gt;) 또는 50일 이평선(~&lt;span class=&quot;font-bold&quot;&gt;$24.10&lt;/span&gt;) 부근.&lt;/span&gt;&lt;/li&gt;
                            &lt;li class=&quot;flex items-start&quot;&gt;&lt;span class=&quot;text-blue-500 font-bold mr-2&quot;&gt;▶&lt;/span&gt;&lt;span&gt;&lt;span class=&quot;font-semibold&quot;&gt;리스크 관리:&lt;/span&gt; 진입가 대비 8-10% 하락 시 손절매 필수.&lt;/span&gt;&lt;/li&gt;
                            &lt;li class=&quot;flex items-start&quot;&gt;&lt;span class=&quot;text-blue-500 font-bold mr-2&quot;&gt;▶&lt;/span&gt;&lt;span&gt;&lt;span class=&quot;font-semibold&quot;&gt;이익 실현 목표:&lt;/span&gt; 1차 &lt;span class=&quot;font-bold&quot;&gt;$35.00&lt;/span&gt; (애널리스트 최고가), 2차 &lt;span class=&quot;font-bold&quot;&gt;$40.00&lt;/span&gt; (심리적 저항선).&lt;/span&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                     &lt;/div&gt;
                &lt;/div&gt;

                &lt;!-- Long Term Strategy --&gt;
                &lt;div id=&quot;long-term-content&quot; class=&quot;hidden&quot;&gt;
                    &lt;div class=&quot;bg-gray-50 p-6 rounded-lg border&quot;&gt;
                         &lt;h3 class=&quot;text-xl font-bold mb-3&quot;&gt;장기 투자: 투기적 매수 (Speculative Buy)&lt;/h3&gt;
                         &lt;ul class=&quot;space-y-3&quot;&gt;
                            &lt;li class=&quot;flex items-start&quot;&gt;&lt;span class=&quot;text-blue-500 font-bold mr-2&quot;&gt;▶&lt;/span&gt;&lt;span&gt;&lt;span class=&quot;font-semibold&quot;&gt;스탠스:&lt;/span&gt; 장기 논거는 매력적이나, 뉴트론 개발이라는 큰 실행 리스크 존재.&lt;/span&gt;&lt;/li&gt;
                            &lt;li class=&quot;flex items-start&quot;&gt;&lt;span class=&quot;text-blue-500 font-bold mr-2&quot;&gt;▶&lt;/span&gt;&lt;span&gt;&lt;span class=&quot;font-semibold&quot;&gt;매집 전략:&lt;/span&gt; 한 번에 매수하지 말고, 향후 6-12개월간 변동성을 이용해 분할 매수로 평단가 관리.&lt;/span&gt;&lt;/li&gt;
                            &lt;li class=&quot;flex items-start&quot;&gt;&lt;span class=&quot;text-blue-500 font-bold mr-2&quot;&gt;▶&lt;/span&gt;&lt;span&gt;&lt;span class=&quot;font-semibold&quot;&gt;논거 검증/무효화:&lt;/span&gt; 성공적인 뉴트론 발사는 논거 검증. 2분기 이상 지연 또는 주요 시험 실패는 비중 축소 신호.&lt;/span&gt;&lt;/li&gt;
                         &lt;/ul&gt;
                         &lt;h4 class=&quot;text-lg font-bold mt-6 mb-3&quot;&gt;핵심 모니터링 체크리스트 (뉴트론 타임라인)&lt;/h4&gt;
                         &lt;div id=&quot;long-term-milestones&quot; class=&quot;space-y-2&quot;&gt;
                             &lt;!-- Milestones will be injected by JS for long term strategy --&gt;
                         &lt;/div&gt;
                     &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;
    &lt;/main&gt;

    &lt;footer class=&quot;bg-slate-800 text-white mt-12 py-6&quot;&gt;
        &lt;div class=&quot;container mx-auto max-w-7xl text-center text-slate-400&quot;&gt;
            &lt;p&gt;&amp;copy; 2025 RKLB Interactive Analysis. All rights reserved.&lt;/p&gt;
            &lt;p class=&quot;text-sm mt-1&quot;&gt;본 자료는 제공된 보고서를 기반으로 생성되었으며, 투자 추천이 아닙니다. 모든 투자 결정은 본인의 판단과 책임 하에 이루어져야 합니다.&lt;/p&gt;
        &lt;/div&gt;
    &lt;/footer&gt;

    &lt;script&gt;
        document.addEventListener('DOMContentLoaded', function() {
            // Data from the report
            const financialData = {
                labels: ['2022', '2023', '2024', '2025(E)', '2026(E)', '2027(E)'],
                revenue: [211, 245, 436, 610, 1250, 1800],
                grossMargin: [9.0, 21.0, 26.6, 31.0, 35.0, 40.0],
                adjustedEbitda: [-105, -149, -152, -95, 50, 202]
            };
            
            const techIndicators = [
                { name: '이동평균선 (50/100/200일)', value: '주가 &gt; 모든 MA', signal: '강력 매수', signalClass: 'text-green-600' },
                { name: 'MACD (12, 26)', value: '1.01', signal: '매수', signalClass: 'text-green-600' },
                { name: 'RSI (14)', value: '64.22', signal: '중립 (과매수 근접)', signalClass: 'text-yellow-600' },
                { name: 'CCI (14)', value: '127.93', signal: '매도 (과매수)', signalClass: 'text-red-600' },
                { name: '거래량 균형', value: '긍정적', signal: '강세', signalClass: 'text-green-600' }
            ];

            const neutronMilestones = [
                { name: '1단 구조물 제작 완료', status: 'completed' },
                { name: '발사 단지 3 완공', status: 'completed' },
                { name: '2단 엔진 정적 연소 시험', status: 'pending' },
                { name: '1단 엔진 정적 연소 시험', status: 'pending' },
                { name: '최종 조립 &amp; WDR', status: 'pending' },
                { name: '첫 발사 (2025년 하반기 목표)', status: 'pending' }
            ];

            // Chart Configs
            const chartDefaultOptions = {
                responsive: true,
                maintainAspectRatio: false,
                plugins: {
                    legend: {
                        position: 'top',
                    },
                    tooltip: {
                        mode: 'index',
                        intersect: false,
                    }
                },
                scales: {
                    x: {
                        grid: {
                            display: false
                        }
                    },
                    y: {
                        grid: {
                            color: '#e2e8f0'
                        }
                    }
                }
            };

            // Neutron vs Falcon 9 Chart
            const neutronCtx = document.getElementById('neutronChart').getContext('2d');
            new Chart(neutronCtx, {
                type: 'bar',
                data: {
                    labels: ['팰컨 9 (Falcon 9)', '뉴트론 (Neutron)'],
                    datasets: [{
                        label: 'kg당 비용 (일반 상업 임무, 4톤 기준)',
                        data: [17500, 12500],
                        backgroundColor: [
                            'rgba(54, 162, 235, 0.6)',
                            'rgba(75, 192, 192, 0.6)'
                        ],
                        borderColor: [
                            'rgba(54, 162, 235, 1)',
                            'rgba(75, 192, 192, 1)'
                        ],
                        borderWidth: 1
                    }]
                },
                options: {
                    ...chartDefaultOptions,
                    indexAxis: 'y',
                    plugins: {
                        legend: { display: false },
                        title: {
                            display: true,
                            text: '4톤 위성 발사 시 예상 비용 비교 (단위: 달러/kg)'
                        },
                        tooltip: {
                            callbacks: {
                                label: function(context) {
                                    let label = context.dataset.label || '';
                                    if (label) {
                                        label += ': ';
                                    }
                                    if (context.parsed.x !== null) {
                                        label += new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(context.parsed.x);
                                    }
                                    return label;
                                }
                            }
                        }
                    },
                }
            });

            // Revenue Chart
            const revenueCtx = document.getElementById('revenueChart').getContext('2d');
            new Chart(revenueCtx, {
                type: 'bar',
                data: {
                    labels: financialData.labels,
                    datasets: [{
                        label: '총 매출 (백만 $)',
                        data: financialData.revenue,
                        backgroundColor: 'rgba(75, 192, 192, 0.6)',
                        borderColor: 'rgba(75, 192, 192, 1)',
                        borderWidth: 1
                    }]
                },
                options: chartDefaultOptions
            });

            // Profitability Chart
            const profitabilityCtx = document.getElementById('profitabilityChart').getContext('2d');
            new Chart(profitabilityCtx, {
                type: 'bar',
                data: {
                    labels: financialData.labels,
                    datasets: [
                        {
                            label: '총이익률 (%)',
                            data: financialData.grossMargin,
                            backgroundColor: 'rgba(54, 162, 235, 0.6)',
                            borderColor: 'rgba(54, 162, 235, 1)',
                            yAxisID: 'y1',
                            type: 'line',
                            tension: 0.1
                        },
                        {
                            label: '조정 EBITDA (백만 $)',
                            data: financialData.adjustedEbitda,
                            backgroundColor: 'rgba(255, 99, 132, 0.6)',
                            borderColor: 'rgba(255, 99, 132, 1)',
                            yAxisID: 'y',
                        }
                    ]
                },
                options: {
                    ...chartDefaultOptions,
                    scales: {
                        x: { grid: { display: false } },
                        y: {
                            type: 'linear',
                            display: true,
                            position: 'left',
                            title: {
                                display: true,
                                text: '조정 EBITDA (백만 $)'
                            }
                        },
                        y1: {
                            type: 'linear',
                            display: true,
                            position: 'right',
                            title: {
                                display: true,
                                text: '총이익률 (%)'
                            },
                            grid: {
                                drawOnChartArea: false,
                            },
                        },
                    }
                }
            });

            // Populate Technical Indicators Table
            const techTableBody = document.getElementById('tech-indicators-table');
            techIndicators.forEach(indicator =&gt; {
                const row = document.createElement('tr');
                row.className = 'bg-white border-b';
                row.innerHTML = `
                    &lt;td class=&quot;px-6 py-4 font-medium text-gray-900 whitespace-nowrap&quot;&gt;${indicator.name}&lt;/td&gt;
                    &lt;td class=&quot;px-6 py-4&quot;&gt;${indicator.value}&lt;/td&gt;
                    &lt;td class=&quot;px-6 py-4 font-semibold ${indicator.signalClass}&quot;&gt;${indicator.signal}&lt;/td&gt;
                `;
                techTableBody.appendChild(row);
            });
            
            // Populate Milestones
            const timelineContainer = document.getElementById('milestone-timeline');
            const longTermMilestonesContainer = document.getElementById('long-term-milestones');

            neutronMilestones.forEach(milestone =&gt; {
                const isCompleted = milestone.status === 'completed';

                // For timeline
                const timelineEl = document.createElement('div');
                timelineEl.className = `flex-1 flex flex-col items-center p-2 rounded-lg ${isCompleted ? 'bg-green-100' : 'bg-gray-100'}`;
                timelineEl.innerHTML = `
                    &lt;div class=&quot;w-8 h-8 rounded-full flex items-center justify-center text-white font-bold ${isCompleted ? 'bg-green-500' : 'bg-gray-400'}&quot;&gt;
                       ${isCompleted ? '✓' : '•'}
                    &lt;/div&gt;
                    &lt;p class=&quot;mt-2 text-center text-sm font-medium ${isCompleted ? 'text-green-800' : 'text-gray-700'}&quot;&gt;${milestone.name}&lt;/p&gt;
                `;
                timelineContainer.appendChild(timelineEl);

                // For long term strategy checklist
                const checklistEl = document.createElement('div');
                checklistEl.className = `milestone flex items-center p-2 rounded ${isCompleted ? 'completed' : ''}`;
                checklistEl.innerHTML = `
                    &lt;span class=&quot;milestone-icon w-6 h-6 mr-3 rounded-full flex items-center justify-center text-sm ${isCompleted ? 'bg-green-500 text-white' : 'border-2 border-gray-400 text-gray-500'}&quot;&gt;
                        ${isCompleted ? '✓' : ''}
                    &lt;/span&gt;
                    &lt;span&gt;${milestone.name}&lt;/span&gt;
                `;
                checklistEl.addEventListener('click', () =&gt; {
                   checklistEl.classList.toggle('completed');
                   const icon = checklistEl.querySelector('.milestone-icon');
                   if (checklistEl.classList.contains('completed')) {
                        icon.classList.add('bg-green-500', 'text-white');
                        icon.classList.remove('border-2', 'border-gray-400', 'text-gray-500');
                        icon.innerText = '✓';
                   } else {
                        icon.classList.remove('bg-green-500', 'text-white');
                        icon.classList.add('border-2', 'border-gray-400', 'text-gray-500');
                        icon.innerText = '';
                   }
                });
                longTermMilestonesContainer.appendChild(checklistEl);
            });

            // Strategy Toggle Logic
            const shortTermBtn = document.getElementById('short-term-btn');
            const longTermBtn = document.getElementById('long-term-btn');
            const shortTermContent = document.getElementById('short-term-content');
            const longTermContent = document.getElementById('long-term-content');

            shortTermBtn.addEventListener('click', () =&gt; {
                shortTermBtn.classList.add('active');
                longTermBtn.classList.remove('active');
                shortTermContent.classList.remove('hidden');
                longTermContent.classList.add('hidden');
            });

            longTermBtn.addEventListener('click', () =&gt; {
                longTermBtn.classList.add('active');
                shortTermBtn.classList.remove('active');
                longTermContent.classList.remove('hidden');
                shortTermContent.classList.add('hidden');
            });
            
            // Navbar Active Link Highlighting on Scroll
            const sections = document.querySelectorAll('section');
            const navLinks = document.querySelectorAll('.nav-link');

            window.addEventListener('scroll', () =&gt; {
                let current = '';
                sections.forEach(section =&gt; {
                    const sectionTop = section.offsetTop;
                    if (pageYOffset &gt;= sectionTop - 100) {
                        current = section.getAttribute('id');
                    }
                });

                navLinks.forEach(link =&gt; {
                    link.classList.remove('active');
                    if (link.getAttribute('href').includes(current)) {
                        link.classList.add('active');
                    }
                });
            });

        });
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</description>
      <category>미국주식/로켓랩</category>
      <category>로켓랩</category>
      <category>매매전략</category>
      <category>미국주식</category>
      <category>주식</category>
      <category>주식분석</category>
      <author>traveler0201</author>
      <guid isPermaLink="true">https://traveler0201.tistory.com/4</guid>
      <comments>https://traveler0201.tistory.com/4#entry4comment</comments>
      <pubDate>Tue, 24 Jun 2025 23:56:32 +0900</pubDate>
    </item>
    <item>
      <title>뉴스케일파워 분석 및 매매전략(2025. 06. 24)</title>
      <link>https://traveler0201.tistory.com/3</link>
      <description>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;ko&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;뉴스케일파워 (SMR) 투자 전략 인포그래픽&lt;/title&gt;
    &lt;script src=&quot;https://cdn.tailwindcss.com&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/chart.js@4.4.2/dist/chart.umd.min.js&quot;&gt;&lt;/script&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;900&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;style&gt;
        body { font-family: 'Noto Sans KR', sans-serif; background-color: #f4f4f5; color: #18181b; }
       .chart-container { position: relative; width: 100%; max-width: 600px; margin-left: auto; margin-right: auto; height: 320px; max-height: 45vh; }
       .card { background-color: #ffffff; border-radius: 0.75rem; padding: 1.5rem; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
       .section-title { font-size: 1.875rem; font-weight: 900; line-height: 1.2; color: #27272a; text-align: center; margin-bottom: 2rem; }
       .strategy-btn { background-color: #e4e4e7; color: #3f3f46; font-weight: 600; padding: 0.5rem 1rem; border-radius: 9999px; transition: background-color 0.2s, color 0.2s; border: 1px solid #d4d4d8; }
       .strategy-btn.active { background-color: #3b82f6; color: white; border-color: #3b82f6;}
       .strategy-content { display: none; }
       .strategy-content.active { display: block; }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body class=&quot;antialiased&quot;&gt;
    &lt;div class=&quot;container mx-auto p-4 sm:p-6 md:p-8 max-w-4xl&quot;&gt;
        &lt;header class=&quot;text-center mb-12&quot;&gt;
            &lt;h1 class=&quot;text-3xl md:text-4xl font-black text-zinc-800&quot;&gt;뉴스케일파워 (SMR) 투자 전략&lt;/h1&gt;
            &lt;p class=&quot;text-lg text-zinc-600 mt-2&quot;&gt;AI 혁명을 위한 고위험 고수익 에너지 베팅&lt;/p&gt;
        &lt;/header&gt;

        &lt;section class=&quot;mb-12&quot;&gt;
            &lt;h2 class=&quot;section-title&quot;&gt;핵심 투자 요약&lt;/h2&gt;
            &lt;p class=&quot;text-center max-w-3xl mx-auto text-zinc-600 mb-8&quot;&gt;미국 NRC 설계 인증을 받은 유일한 소형 모듈 원자로(SMR) 기업으로, AI 데이터센터의 폭발적인 전력 수요를 충족시킬 독보적 위치에 있습니다. 단, 상업화 이전 단계의 높은 실행 리스크와 변동성을 동반하는 전형적인 고위험 고수익 투자처입니다.&lt;/p&gt;
            &lt;div class=&quot;grid grid-cols-1 sm:grid-cols-3 gap-4 text-center&quot;&gt;
                &lt;div class=&quot;card p-4&quot;&gt;
                    &lt;p class=&quot;text-sm font-bold text-zinc-500&quot;&gt;규제 상태&lt;/p&gt;
                    &lt;p class=&quot;text-2xl font-black text-blue-600&quot;&gt;미국 유일 NRC 인증&lt;/p&gt;
                &lt;/div&gt;
                &lt;div class=&quot;card p-4&quot;&gt;
                    &lt;p class=&quot;text-sm font-bold text-zinc-500&quot;&gt;주요 프로젝트&lt;/p&gt;
                    &lt;p class=&quot;text-2xl font-bold text-green-600&quot;&gt;루마니아 RoPower&lt;/p&gt;
                &lt;/div&gt;
                &lt;div class=&quot;card p-4&quot;&gt;
                    &lt;p class=&quot;text-sm font-bold text-zinc-500&quot;&gt;공매도 비율&lt;/p&gt;
                    &lt;p class=&quot;text-2xl font-black text-red-600&quot;&gt;~21%&lt;/p&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;

        &lt;section class=&quot;mb-12&quot;&gt;
            &lt;h2 class=&quot;section-title&quot;&gt;주요 촉매제 vs 리스크&lt;/h2&gt;
            &lt;div class=&quot;grid grid-cols-1 md:grid-cols-2 gap-6 text-sm&quot;&gt;
                &lt;div class=&quot;card&quot;&gt;
                    &lt;h3 class=&quot;font-bold text-lg mb-3 text-green-600 text-center&quot;&gt;✅ 주요 상승 촉매제&lt;/h3&gt;
                    &lt;ul class=&quot;list-disc list-inside space-y-2&quot;&gt;
                        &lt;li&gt;77MWe 설계 최종 승인 (25년 7월)&lt;/li&gt;
                        &lt;li&gt;루마니아 프로젝트 최종 투자 결정 (FID)&lt;/li&gt;
                        &lt;li&gt;미국 내 신규 계약 수주 (데이터센터 등)&lt;/li&gt;
                        &lt;li&gt;높은 공매도 비율로 인한 숏 스퀴즈 가능성&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/div&gt;
                &lt;div class=&quot;card&quot;&gt;
                    &lt;h3 class=&quot;font-bold text-lg mb-3 text-red-600 text-center&quot;&gt;⚠️ 주요 하락 리스크&lt;/h3&gt;
                    &lt;ul class=&quot;list-disc list-inside space-y-2&quot;&gt;
                        &lt;li&gt;주요 프로젝트 지연 또는 실패&lt;/li&gt;
                        &lt;li&gt;2025년 내 신규 계약 부재&lt;/li&gt;
                        &lt;li&gt;지속적인 내부자 매도 및 높은 변동성&lt;/li&gt;
                        &lt;li&gt;공급망 병목 및 IRA 세금 공제 불확실성&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;

        &lt;section class=&quot;mb-12&quot;&gt;
            &lt;h2 class=&quot;section-title&quot;&gt;기술적 분석: 고변동성 속 장기 추세&lt;/h2&gt;
            &lt;p class=&quot;text-center max-w-3xl mx-auto text-zinc-600 mb-8&quot;&gt;주가는 200일 이동평균선 위에 위치해 장기 상승 추세에 있지만, 최근 고점에서 하락하며 단기 조정 국면에 진입했습니다. MACD 등 모멘텀 지표는 약세 신호를 보내고 있어, 지지선 확인이 필요한 시점입니다.&lt;/p&gt;
            &lt;div class=&quot;card p-6&quot;&gt;
                &lt;h3 class=&quot;font-bold text-lg text-center mb-4&quot;&gt;핵심 지지/저항선&lt;/h3&gt;
                &lt;div class=&quot;space-y-2 text-sm&quot;&gt;
                    &lt;div class=&quot;flex justify-between items-center p-2 rounded-md bg-red-100 text-red-800&quot;&gt;&lt;span class=&quot;font-semibold&quot;&gt;강력 저항 (최고가)&lt;/span&gt;&lt;span&gt;~ $45.31&lt;/span&gt;&lt;/div&gt;
                    &lt;div class=&quot;flex justify-between items-center p-2 rounded-md bg-red-100 text-red-800&quot;&gt;&lt;span class=&quot;font-semibold&quot;&gt;1차 저항&lt;/span&gt;&lt;span&gt;$40.50 - $42.50&lt;/span&gt;&lt;/div&gt;
                    &lt;div class=&quot;flex justify-between items-center p-2 rounded-md bg-zinc-200 text-zinc-800 font-bold&quot;&gt;&lt;span class=&quot;font-semibold&quot;&gt;현재가 (6월 중순)&lt;/span&gt;&lt;span&gt;~ $38.00&lt;/span&gt;&lt;/div&gt;
                    &lt;div class=&quot;flex justify-between items-center p-2 rounded-md bg-green-100 text-green-800&quot;&gt;&lt;span class=&quot;font-semibold&quot;&gt;1차 지지&lt;/span&gt;&lt;span&gt;$35.50 - $36.00&lt;/span&gt;&lt;/div&gt;
                    &lt;div class=&quot;flex justify-between items-center p-2 rounded-md bg-green-100 text-green-800&quot;&gt;&lt;span class=&quot;font-semibold&quot;&gt;강력 지지&lt;/span&gt;&lt;span&gt;$29.00 - $30.00&lt;/span&gt;&lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;

        &lt;section&gt;
            &lt;h2 class=&quot;section-title&quot;&gt;실행 가능한 매매 전략&lt;/h2&gt;
            &lt;div id=&quot;smr-strategies&quot;&gt;&lt;/div&gt;
        &lt;/section&gt;
    &lt;/div&gt;

    &lt;script&gt;
        window.onload = function() {
            function createStrategies(strategies, containerId) {
                const container = document.getElementById(containerId);
                if (!container) return;

                const buttonContainer = document.createElement('div');
                buttonContainer.className = 'flex flex-wrap justify-center gap-2 mb-4';
                
                const contentContainer = document.createElement('div');
                contentContainer.className = 'mt-4';

                strategies.forEach((strategy, index) =&gt; {
                    const btn = document.createElement('button');
                    btn.className = 'strategy-btn';
                    btn.textContent = strategy.title;
                    
                    const content = document.createElement('div');
                    content.className = 'strategy-content card text-sm';
                    content.innerHTML = `&lt;p&gt;${strategy.content}&lt;/p&gt;`;

                    if (index === 0) {
                        btn.classList.add('active');
                        content.classList.add('active');
                    }
                    
                    btn.onclick = () =&gt; {
                        container.querySelectorAll('.strategy-btn').forEach(b =&gt; b.classList.remove('active'));
                        container.querySelectorAll('.strategy-content').forEach(c =&gt; c.classList.remove('active'));
                        btn.classList.add('active');
                        content.classList.add('active');
                    };

                    buttonContainer.appendChild(btn);
                    contentContainer.appendChild(content);
                });

                container.appendChild(buttonContainer);
                container.appendChild(contentContainer);
            }

            createStrategies(smrData.strategies, 'smr-strategies');
        };

        const smrData = {
            strategies:
        };
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</description>
      <category>미국주식/뉴스케일파워</category>
      <category>뉴스케일파워</category>
      <category>매매전략</category>
      <category>미국주식</category>
      <category>분석</category>
      <category>재테크</category>
      <author>traveler0201</author>
      <guid isPermaLink="true">https://traveler0201.tistory.com/3</guid>
      <comments>https://traveler0201.tistory.com/3#entry3comment</comments>
      <pubDate>Tue, 24 Jun 2025 23:32:29 +0900</pubDate>
    </item>
    <item>
      <title>테슬라 분석 및 매매전략(2025. 06. 24)</title>
      <link>https://traveler0201.tistory.com/2</link>
      <description>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;ko&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;테슬라(TSLA) 인터랙티브 투자 분석&lt;/title&gt;
    &lt;script src=&quot;https://cdn.tailwindcss.com&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/chart.js@4.4.2/dist/chart.umd.min.js&quot;&gt;&lt;/script&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;900&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;!-- Chosen Palette: Warm Neutrals --&gt;
    &lt;!-- Application Structure Plan: The SPA is designed around the core conflict of &quot;Struggling Present vs. Hyped Future&quot;. A sticky top navigation allows users to jump between four main thematic sections: 1) Dashboard (펀더멘털), 2) Future Value (미래 가치), 3) Market Environment (시장 환경), and 4) Trading Strategies (투자 전략). This non-linear structure lets users explore based on their interests—whether they are fundamentals-focused, AI-believers, or traders. The initial dashboard immediately presents the core conflict side-by-side for maximum impact, guiding the user's exploration of the deeper sections. --&gt;
    &lt;!-- Visualization &amp; Content Choices: 1. Report Info: SOTP Valuation -&gt; Goal: Inform -&gt; Viz/Method: Donut Chart (in dashboard) &amp; Bar Chart (in deep dive) -&gt; Interaction: Hover tooltips -&gt; Justification: Quickly shows the heavy reliance on future projects for current valuation -&gt; Library: Chart.js (Canvas). 2. Report Info: Auto Margin Decline -&gt; Goal: Change -&gt; Viz/Method: Line Chart -&gt; Interaction: Toggle to show/hide effect of regulatory credits -&gt; Justification: Visually isolates the core problem in the auto business -&gt; Library: Chart.js. 3. Report Info: FSD Tech vs. Competitors -&gt; Goal: Organize/Compare -&gt; Viz/Method: HTML/CSS Diagram -&gt; Interaction: Static -&gt; Justification: Clearly contrasts the two main AV approaches without complex graphics (No SVG/Mermaid) -&gt; Tailwind CSS. 4. Report Info: Trading Strategies -&gt; Goal: Inform/Engage -&gt; Viz/Method: Annotated Line Chart &amp; simple HTML/CSS cards -&gt; Interaction: Visualizing key entry/exit levels -&gt; Justification: Makes abstract strategies concrete and actionable for users. -&gt; Chart.js. --&gt;
    &lt;!-- CONFIRMATION: NO SVG graphics used. NO Mermaid JS used. --&gt;
    &lt;style&gt;
        body { font-family: 'Noto Sans KR', sans-serif; background-color: #FDFBF6; color: #57524A; }
        .chart-container { position: relative; width: 100%; max-width: 600px; margin: auto; height: 320px; max-height: 45vh; }
        .nav-item { cursor: pointer; padding: 0.5rem 1rem; border-radius: 0.5rem; transition: background-color 0.3s, color 0.3s; font-weight: 700; }
        .nav-item.active { background-color: #A3907D; color: #FDFBF6; }
        .nav-item:not(.active):hover { background-color: #EFEAE3; }
        .card { background-color: white; border-radius: 0.75rem; padding: 1.5rem; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05); }
        .section-title { font-size: 2rem; font-weight: 900; line-height: 1.2; color: #43403a; text-align: center; margin-bottom: 2rem; }
        .kpi-value { color: #A3907D; font-weight: 900; }
        .accent-text-red { color: #c02626; }
        .accent-text-green { color: #16a34a; }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body class=&quot;antialiased&quot;&gt;

    &lt;div class=&quot;container mx-auto p-4 md:p-8 max-w-7xl&quot;&gt;
        &lt;header class=&quot;text-center mb-8&quot;&gt;
            &lt;h1 class=&quot;text-4xl md:text-5xl font-black text-[#43403a] mb-2&quot;&gt;테슬라 (TSLA): 전략적 기로에 서다&lt;/h1&gt;
            &lt;p class=&quot;text-lg text-[#7D6E5C]&quot;&gt;2025년 하반기 종합 인터랙티브 분석&lt;/p&gt;
        &lt;/header&gt;

        &lt;nav id=&quot;main-nav&quot; class=&quot;sticky top-2 z-50 bg-[#FDFBF6]/80 backdrop-blur-md rounded-xl shadow-md mb-8 py-2 px-4 flex justify-center items-center gap-2 md:gap-4&quot;&gt;
            &lt;div data-target=&quot;dashboard&quot; class=&quot;nav-item active&quot;&gt;대시보드&lt;/div&gt;
            &lt;div data-target=&quot;fundamentals&quot; class=&quot;nav-item&quot;&gt;펀더멘털&lt;/div&gt;
            &lt;div data-target=&quot;future-value&quot; class=&quot;nav-item&quot;&gt;미래 가치&lt;/div&gt;
            &lt;div data-target=&quot;market&quot; class=&quot;nav-item&quot;&gt;시장 환경&lt;/div&gt;
            &lt;div data-target=&quot;strategy&quot; class=&quot;nav-item&quot;&gt;투자 전략&lt;/div&gt;
        &lt;/nav&gt;

        &lt;main&gt;
            &lt;!-- Dashboard Section --&gt;
            &lt;section id=&quot;dashboard&quot; class=&quot;content-section&quot;&gt;
                &lt;p class=&quot;text-center max-w-3xl mx-auto text-[#7D6E5C] mb-8&quot;&gt;테슬라는 현재 두 개의 상반된 이야기가 공존하는 변곡점에 있습니다. 핵심 자동차 사업은 펀더멘털 약화에 직면해 있지만, 주가는 AI와 로보틱스라는 거대한 미래 성장 가능성에 대한 기대로 지탱되고 있습니다. 이 대시보드는 테슬라의 현재와 미래를 한눈에 비교하여 보여줍니다.&lt;/p&gt;
                &lt;div class=&quot;grid grid-cols-1 lg:grid-cols-2 gap-8&quot;&gt;
                    &lt;div class=&quot;card&quot;&gt;
                        &lt;h3 class=&quot;text-2xl font-bold text-center mb-4&quot;&gt;현재의 도전: 흔들리는 자동차 왕국&lt;/h3&gt;
                        &lt;div class=&quot;text-center mb-4&quot;&gt;
                            &lt;p class=&quot;text-lg font-semibold accent-text-red&quot;&gt;자동차 총이익률 (규제 크레딧 제외)&lt;/p&gt;
                            &lt;p class=&quot;text-5xl font-black accent-text-red&quot;&gt;-5.9%&lt;/p&gt;
                            &lt;p class=&quot;text-sm text-gray-500&quot;&gt;2025년 1분기 기준&lt;/p&gt;
                        &lt;/div&gt;
                        &lt;p class=&quot;text-sm text-center text-gray-600 mb-4&quot;&gt;수익성 높은 규제 크레딧 판매가 없었다면, 핵심 자동차 사업은 손실을 기록했을 것입니다. 이는 심각한 수익성 악화 신호입니다.&lt;/p&gt;
                        &lt;div class=&quot;chart-container&quot; style=&quot;height: 280px;&quot;&gt;
                            &lt;canvas id=&quot;prodDeliveryChart&quot;&gt;&lt;/canvas&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;card&quot;&gt;
                        &lt;h3 class=&quot;text-2xl font-bold text-center mb-4&quot;&gt;미래의 약속: AI 제국을 향한 꿈&lt;/h3&gt;
                        &lt;div class=&quot;text-center mb-4&quot;&gt;
                            &lt;p class=&quot;text-lg font-semibold kpi-value&quot;&gt;SOTP 기준 목표 주가&lt;/p&gt;
                            &lt;p class=&quot;text-5xl font-black kpi-value&quot;&gt;$358&lt;/p&gt;
                             &lt;p class=&quot;text-sm text-gray-500&quot;&gt;미래 사업 가치 반영&lt;/p&gt;
                        &lt;/div&gt;
                        &lt;p class=&quot;text-sm text-center text-gray-600 mb-4&quot;&gt;현재 가치는 로보택시, 옵티머스 등 미래 AI 프로젝트의 성공에 대한 시장의 기대를 반영하고 있습니다.&lt;/p&gt;
                        &lt;div class=&quot;chart-container&quot; style=&quot;height: 280px;&quot;&gt;
                            &lt;canvas id=&quot;sotpDonutChart&quot;&gt;&lt;/canvas&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/section&gt;

            &lt;!-- Fundamentals Section --&gt;
            &lt;section id=&quot;fundamentals&quot; class=&quot;content-section hidden&quot;&gt;
                &lt;h2 class=&quot;section-title&quot;&gt;펀더멘털 심층 분석&lt;/h2&gt;
                &lt;p class=&quot;text-center max-w-3xl mx-auto text-[#7D6E5C] mb-8&quot;&gt;2025년 1분기 실적은 테슬라의 핵심 자동차 사업이 직면한 도전을 명확히 보여줍니다. 매출 감소와 수익성 악화는 심각한 경고 신호이며, 이는 테슬라가 더 이상 단순한 자동차 회사가 아님을 시사합니다.&lt;/p&gt;
                &lt;div class=&quot;card&quot;&gt;
                     &lt;h3 class=&quot;text-xl font-bold text-center mb-1&quot;&gt;자동차 총이익률 추이&lt;/h3&gt;
                     &lt;p class=&quot;text-sm text-center text-gray-500 mb-4&quot;&gt;아래 버튼으로 규제 크레딧 효과를 확인하세요.&lt;/p&gt;
                     &lt;div class=&quot;flex justify-center mb-4&quot;&gt;
                        &lt;button id=&quot;toggleCreditsBtn&quot; class=&quot;bg-[#A3907D] text-white px-4 py-2 rounded-md font-semibold&quot;&gt;규제 크레딧 제외하고 보기&lt;/button&gt;
                     &lt;/div&gt;
                    &lt;div class=&quot;chart-container&quot;&gt;
                        &lt;canvas id=&quot;marginChart&quot;&gt;&lt;/canvas&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/section&gt;
            
            &lt;!-- Future Value Section --&gt;
            &lt;section id=&quot;future-value&quot; class=&quot;content-section hidden&quot;&gt;
                &lt;h2 class=&quot;section-title&quot;&gt;미래 가치 평가 (SOTP 분석)&lt;/h2&gt;
                 &lt;p class=&quot;text-center max-w-3xl mx-auto text-[#7D6E5C] mb-8&quot;&gt;테슬라의 현재 시가총액은 미래 AI 기반 프로젝트의 성공 가능성을 가격에 반영해야만 정당화될 수 있습니다. 각 사업 부문의 잠재적 가치를 분석합니다.&lt;/p&gt;
                &lt;div class=&quot;grid grid-cols-1 md:grid-cols-2 gap-8 mb-8&quot;&gt;
                    &lt;div class=&quot;card&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold mb-4&quot;&gt;FSD 기술: 비전 vs 라이다&lt;/h3&gt;
                        &lt;p class=&quot;text-sm text-gray-600 mb-4&quot;&gt;자율주행 기술에 대한 두 가지 핵심 접근 방식입니다.&lt;/p&gt;
                        &lt;div class=&quot;space-y-4&quot;&gt;
                            &lt;div&gt;
                                &lt;h4 class=&quot;font-bold kpi-value&quot;&gt;테슬라 (비전)&lt;/h4&gt;
                                &lt;p class=&quot;text-sm&quot;&gt;카메라와 방대한 실제 데이터에 의존하여 비용 효율적이고 확장성이 뛰어난 AI를 구축합니다.&lt;/p&gt;
                            &lt;/div&gt;
                            &lt;div&gt;
                                &lt;h4 class=&quot;font-bold text-gray-600&quot;&gt;웨이모 (라이다)&lt;/h4&gt;
                                &lt;p class=&quot;text-sm&quot;&gt;고가의 라이다, 레이더 등 다중 센서를 사용하여 데이터 중복성을 확보하지만, 확장 비용이 높습니다.&lt;/p&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                     &lt;div class=&quot;card&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold mb-4&quot;&gt;옵티머스: 휴머노이드 경쟁&lt;/h3&gt;
                        &lt;p class=&quot;text-sm text-gray-600 mb-4&quot;&gt;로봇 시장의 주요 경쟁자들과의 차별점입니다.&lt;/p&gt;
                        &lt;div class=&quot;space-y-4&quot;&gt;
                            &lt;div&gt;
                                &lt;h4 class=&quot;font-bold kpi-value&quot;&gt;테슬라 옵티머스&lt;/h4&gt;
                                &lt;p class=&quot;text-sm&quot;&gt;대량 생산과 '실제 세계 AI' 활용에 중점을 둡니다.&lt;/p&gt;
                            &lt;/div&gt;
                            &lt;div&gt;
                                &lt;h4 class=&quot;font-bold text-gray-600&quot;&gt;기타 (보스턴 다이내믹스 등)&lt;/h4&gt;
                                &lt;p class=&quot;text-sm&quot;&gt;연구 및 특정 분야의 민첩성에 초점을 맞추지만 대량 생산에는 한계가 있습니다.&lt;/p&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
                &lt;div class=&quot;card&quot;&gt;
                    &lt;h3 class=&quot;text-xl font-bold text-center mb-4&quot;&gt;사업부문별 가치평가 (SOTP)&lt;/h3&gt;
                    &lt;div class=&quot;chart-container&quot; style=&quot;height: 400px;&quot;&gt;
                        &lt;canvas id=&quot;sotpBarChart&quot;&gt;&lt;/canvas&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/section&gt;

            &lt;!-- Market Section --&gt;
            &lt;section id=&quot;market&quot; class=&quot;content-section hidden&quot;&gt;
                &lt;h2 class=&quot;section-title&quot;&gt;거시 경제 및 경쟁 환경&lt;/h2&gt;
                &lt;p class=&quot;text-center max-w-3xl mx-auto text-[#7D6E5C] mb-8&quot;&gt;테슬라의 성과는 내부 역량뿐만 아니라 금리, 규제, 그리고 치열한 경쟁과 같은 외부 요인에 큰 영향을 받습니다.&lt;/p&gt;
                &lt;div class=&quot;grid grid-cols-1 lg:grid-cols-2 gap-8&quot;&gt;
                    &lt;div class=&quot;card&quot;&gt;
                         &lt;h3 class=&quot;text-xl font-bold text-center mb-4&quot;&gt;글로벌 EV 시장 점유율 (2025년 1분기)&lt;/h3&gt;
                         &lt;p class=&quot;text-sm text-center text-gray-600 mb-4&quot;&gt;BYD가 테슬라를 제치고 글로벌 1위로 올라서며 경쟁 구도의 근본적인 변화를 보여줍니다.&lt;/p&gt;
                        &lt;div class=&quot;chart-container&quot; style=&quot;height: 300px;&quot;&gt;
                            &lt;canvas id=&quot;marketShareChart&quot;&gt;&lt;/canvas&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;card&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold text-center mb-4&quot;&gt;주요 시장 규제 환경&lt;/h3&gt;
                        &lt;p class=&quot;text-sm text-center text-gray-600 mb-4&quot;&gt;자율주행차(AV) 규제는 로보택시 사업의 성패를 좌우할 핵심 변수입니다.&lt;/p&gt;
                        &lt;div class=&quot;space-y-6 mt-6&quot;&gt;
                            &lt;div class=&quot;flex items-center&quot;&gt;
                                &lt;span class=&quot;text-2xl w-12 text-center&quot;&gt; &lt;/span&gt;
                                &lt;div&gt;
                                    &lt;h4 class=&quot;font-bold&quot;&gt;미국: &lt;span class=&quot;accent-text-green&quot;&gt;긍정적&lt;/span&gt;&lt;/h4&gt;
                                    &lt;p class=&quot;text-sm text-gray-600&quot;&gt;단일 국가 표준 마련 등 상업적 배포에 유리한 환경 조성 중.&lt;/p&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;flex items-center&quot;&gt;
                                &lt;span class=&quot;text-2xl w-12 text-center&quot;&gt; &lt;/span&gt;
                                &lt;div&gt;
                                    &lt;h4 class=&quot;font-bold&quot;&gt;유럽: &lt;span class=&quot;text-yellow-600&quot;&gt;복잡함&lt;/span&gt;&lt;/h4&gt;
                                    &lt;p class=&quot;text-sm text-gray-600&quot;&gt;규제가 복잡하고 까다로우나, 점진적인 완화 신호 감지.&lt;/p&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;flex items-center&quot;&gt;
                                &lt;span class=&quot;text-2xl w-12 text-center&quot;&gt; &lt;/span&gt;
                                &lt;div&gt;
                                    &lt;h4 class=&quot;font-bold&quot;&gt;중국: &lt;span class=&quot;accent-text-red&quot;&gt;부정적&lt;/span&gt;&lt;/h4&gt;
                                    &lt;p class=&quot;text-sm text-gray-600&quot;&gt;엄격한 신규 규제 도입으로 FSD 시범 운영이 중단되는 등 불확실성 증대.&lt;/p&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/section&gt;
            
            &lt;!-- Strategy Section --&gt;
            &lt;section id=&quot;strategy&quot; class=&quot;content-section hidden&quot;&gt;
                &lt;h2 class=&quot;section-title&quot;&gt;실행 가능한 투자 전략&lt;/h2&gt;
                &lt;p class=&quot;text-center max-w-3xl mx-auto text-[#7D6E5C] mb-8&quot;&gt;분석을 바탕으로 각기 다른 투자 성향에 맞춘 구체적인 트레이딩 전략을 제시합니다. 모든 투자는 자신의 판단과 책임 하에 이루어져야 합니다.&lt;/p&gt;
                &lt;div class=&quot;grid grid-cols-1 md:grid-cols-3 gap-6&quot;&gt;
                    &lt;div class=&quot;card&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold text-center mb-4 accent-text-green&quot;&gt;장기 강세론&lt;/h3&gt;
                        &lt;p class=&quot;text-sm text-gray-600&quot;&gt;AI 내러티브를 믿는 투자자를 위한 전략입니다. 극심한 변동성을 감내할 준비가 필요합니다.&lt;/p&gt;
                        &lt;ul class=&quot;list-disc list-inside mt-4 space-y-2 text-sm&quot;&gt;
                            &lt;li&gt;&lt;strong&gt;분할 매수:&lt;/strong&gt; 주요 기술적 지지선(예: 200일 이평선, ~$285)에서 분할하여 매수합니다.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;현금 담보 풋 매도:&lt;/strong&gt; 원하는 매수 가격에 풋옵션을 매도하여 프리미엄 수익을 얻거나 더 낮은 가격에 주식을 매수합니다.&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;card&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold text-center mb-4 accent-text-red&quot;&gt;전술적 약세론&lt;/h3&gt;
                        &lt;p class=&quot;text-sm text-gray-600&quot;&gt;현재의 고평가와 실행 리스크에 베팅하는 트레이더를 위한 전략입니다.&lt;/p&gt;
                         &lt;ul class=&quot;list-disc list-inside mt-4 space-y-2 text-sm&quot;&gt;
                            &lt;li&gt;&lt;strong&gt;촉매 실패 시 공매도:&lt;/strong&gt; 주요 이벤트(실적발표 등)가 실망스러울 경우, 명확한 손절매와 함께 공매도 포지션을 고려합니다. (고위험)&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;보호적 풋 매수:&lt;/strong&gt; 장기 풋옵션을 매수하여 제한된 위험으로 주가 하락에 베팅합니다.&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;card&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold text-center mb-4 text-yellow-600&quot;&gt;변동성 활용&lt;/h3&gt;
                        &lt;p class=&quot;text-sm text-gray-600&quot;&gt;장기 보유자가 추가 수익을 창출하거나, 주가가 특정 범위에서 움직일 것으로 예상하는 투자자를 위한 전략입니다.&lt;/p&gt;
                         &lt;ul class=&quot;list-disc list-inside mt-4 space-y-2 text-sm&quot;&gt;
                            &lt;li&gt;&lt;strong&gt;커버드 콜 매도:&lt;/strong&gt; 보유 주식 100주당 외가격 콜옵션 1개를 매도하여 높은 프리미엄 수익을 얻습니다. 주가 횡보 시 효과적입니다.&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/section&gt;
        &lt;/main&gt;
    &lt;/div&gt;

    &lt;script&gt;
        window.onload = function() {
            const chartDefaultOptions = {
                responsive: true,
                maintainAspectRatio: false,
                plugins: {
                    legend: { labels: { color: '#57524A', font: { family: &quot;'Noto Sans KR', sans-serif&quot; } } },
                    tooltip: {
                        bodyFont: { family: &quot;'Noto Sans KR', sans-serif&quot; },
                        titleFont: { family: &quot;'Noto Sans KR', sans-serif&quot; }
                    }
                },
                scales: {
                    x: { ticks: { color: '#7D6E5C' }, grid: { display: false } },
                    y: { ticks: { color: '#7D6E5C' }, grid: { color: '#EFEAE3' } }
                }
            };
            
            // --- Chart Data ---
            const sotpData = {
                labels: ['로보택시', '옵티머스', '핵심 자동차', '에너지', 'FSD 라이선싱', '기업 비용'],
                values: [174, 62, 78, 31, 25, -12],
                enterpriseValues: [5600, 2000, 2500, 1000, 800, -400]
            };

            const marketShareData = {
                labels: ['BYD', 'Tesla', 'Geely', 'SAIC-GM-Wuling', 'Volkswagen'],
                values: [15.4, 12.6, 6.9, 6.6, 4.0]
            };

            const prodDeliveryData = {
                labels: ['2024 Q1', '2024 Q2', '2024 Q3', '2024 Q4', '2025 Q1'],
                production: [433371, 479700, 430488, 494989, 362615],
                deliveries: [386810, 466140, 435059, 484507, 336681]
            };
            
            const marginData = {
                labels: ['2024 Q1', '2024 Q2', '2024 Q3', '2024 Q4', '2025 Q1'],
                gaapMargin: [19.0, 18.2, 17.9, 17.6, 12.9],
                exCreditMargin: [16.4, 15.7, 15.3, 15.0, -5.9] 
            };


            // --- Chart Instances ---

            // 1. Production vs Delivery Chart (Dashboard)
            const prodDeliveryChart = new Chart(document.getElementById('prodDeliveryChart'), {
                type: 'bar',
                data: {
                    labels: prodDeliveryData.labels,
                    datasets: [
                        { label: '생산량', data: prodDeliveryData.production, backgroundColor: '#A3907D' },
                        { label: '인도량', data: prodDeliveryData.deliveries, backgroundColor: '#EFEAE3' }
                    ]
                },
                options: { ...chartDefaultOptions, plugins: { ...chartDefaultOptions.plugins, title: { display: true, text: '분기별 생산량 vs 인도량', color: '#43403a' }}}
            });

            // 2. SOTP Donut Chart (Dashboard)
            const sotpDonutChart = new Chart(document.getElementById('sotpDonutChart'), {
                type: 'doughnut',
                data: {
                    labels: sotpData.labels.filter(l =&gt; l !== '기업 비용'),
                    datasets: [{
                        label: '주당 가치 기여도 ($)',
                        data: sotpData.values.filter(v =&gt; v &gt; 0),
                        backgroundColor: ['#7D6E5C', '#A3907D', '#C4B8A8', '#EFEAE3', '#D3C9BC'],
                        borderColor: '#FDFBF6',
                        borderWidth: 2
                    }]
                },
                options: { ...chartDefaultOptions, plugins: { ...chartDefaultOptions.plugins, title: { display: true, text: 'SOTP 가치 구성 (주당 $)', color: '#43403a' }}}
            });
            
            // 3. Margin Chart (Fundamentals)
            let isExCredits = false;
            const marginChart = new Chart(document.getElementById('marginChart'), {
                type: 'line',
                data: {
                    labels: marginData.labels,
                    datasets: [{
                        label: '자동차 총이익률 (GAAP)',
                        data: marginData.gaapMargin,
                        borderColor: '#A3907D',
                        backgroundColor: '#A3907D',
                        tension: 0.1
                    }]
                },
                options: { ...chartDefaultOptions, scales: { ...chartDefaultOptions.scales, y: { ticks: { callback: value =&gt; value + '%' }}}}
            });
            
            document.getElementById('toggleCreditsBtn').addEventListener('click', () =&gt; {
                isExCredits = !isExCredits;
                const newDataset = {
                    label: isExCredits ? '자동차 총이익률 (규제 크레딧 제외)' : '자동차 총이익률 (GAAP)',
                    data: isExCredits ? marginData.exCreditMargin : marginData.gaapMargin,
                    borderColor: isExCredits ? '#c02626' : '#A3907D',
                    backgroundColor: isExCredits ? '#c02626' : '#A3907D',
                    tension: 0.1
                };
                marginChart.data.datasets = [newDataset];
                marginChart.update();
                document.getElementById('toggleCreditsBtn').textContent = isExCredits ? '규제 크레딧 포함해서 보기' : '규제 크레딧 제외하고 보기';
            });
            
            // 4. SOTP Bar Chart (Future Value)
            const sotpBarChart = new Chart(document.getElementById('sotpBarChart'), {
                type: 'bar',
                data: {
                    labels: sotpData.labels,
                    datasets: [{
                        label: '사업부문별 기업 가치 (10억 $)',
                        data: sotpData.enterpriseValues,
                        backgroundColor: sotpData.values.map(v =&gt; v &lt; 0 ? '#c02626' : '#A3907D')
                    }]
                },
                options: { ...chartDefaultOptions, indexAxis: 'y', plugins: { ...chartDefaultOptions.plugins, legend: { display: false }}}
            });
            
            // 5. Market Share Chart (Market)
            const marketShareChart = new Chart(document.getElementById('marketShareChart'), {
                type: 'bar',
                data: {
                    labels: marketShareData.labels,
                    datasets: [{
                        label: '글로벌 BEV 시장 점유율 (%)',
                        data: marketShareData.values,
                        backgroundColor: ['#c02626', '#7D6E5C', '#A3907D', '#C4B8A8', '#EFEAE3']
                    }]
                },
                options: { ...chartDefaultOptions, plugins: { ...chartDefaultOptions.plugins, legend: { display: false }}, scales: { ...chartDefaultOptions.scales, y: { ticks: { callback: value =&gt; value + '%' }}}}
            });

            // --- Navigation Logic ---
            const navItems = document.querySelectorAll('.nav-item');
            const sections = document.querySelectorAll('.content-section');

            navItems.forEach(item =&gt; {
                item.addEventListener('click', () =&gt; {
                    const targetId = item.getAttribute('data-target');

                    navItems.forEach(nav =&gt; nav.classList.remove('active'));
                    item.classList.add('active');

                    sections.forEach(section =&gt; {
                        if (section.id === targetId) {
                            section.classList.remove('hidden');
                        } else {
                            section.classList.add('hidden');
                        }
                    });
                     window.scrollTo({ top: 0, behavior: 'smooth' });
                });
            });
        };
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</description>
      <category>미국주식/테슬라</category>
      <category>매매전략</category>
      <category>미국주식</category>
      <category>재테크</category>
      <category>주식</category>
      <category>테슬라</category>
      <author>traveler0201</author>
      <guid isPermaLink="true">https://traveler0201.tistory.com/2</guid>
      <comments>https://traveler0201.tistory.com/2#entry2comment</comments>
      <pubDate>Tue, 24 Jun 2025 23:19:03 +0900</pubDate>
    </item>
    <item>
      <title>파이서브 분석 및 매매전략(2025. 06. 24)</title>
      <link>https://traveler0201.tistory.com/1</link>
      <description>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;ko&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;파이서브(FI) 인터랙티브 투자 전략 분석&lt;/title&gt;
    &lt;script src=&quot;https://cdn.tailwindcss.com&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/chart.js&quot;&gt;&lt;/script&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
    &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;!-- Chosen Palette: Warm Neutrals --&gt;
    &lt;!-- Application Structure Plan: A top-level tabbed navigation SPA. This structure deconstructs the dense report into thematic, digestible sections: 1. Summary/Dashboard (landing page with key takeaways), 2. Fundamentals (business model, financial health), 3. Growth Catalysts (Clover story, Stablecoin), 4. Market Analysis (competition, valuation), and 5. Trading Strategy (actionable plan). This non-linear approach allows users to explore topics based on their interest, transforming a static document into an interactive exploratory tool, which is superior for usability and information retention. --&gt;
    &lt;!-- Visualization &amp; Content Choices: Report Info -&gt; Goal -&gt; Viz/Method -&gt; Interaction -&gt; Justification. 1. Revenue Split -&gt; Inform -&gt; Donut Chart (Chart.js) -&gt; Hover for details -&gt; Clear part-to-whole view. 2. Financial Growth -&gt; Show Trend -&gt; Bar Chart (Chart.js) -&gt; Tooltips -&gt; Easily visualizes performance over time. 3. Competitor Metrics -&gt; Compare -&gt; Interactive Bar Chart (Chart.js) -&gt; Dropdown to change metric -&gt; Dynamic comparison enhances engagement. 4. Analyst Ratings -&gt; Show Consensus -&gt; Donut Chart (Chart.js) -&gt; Tooltips -&gt; Quick visual summary of sentiment. 5. Trading Levels -&gt; Actionable Advice -&gt; Line Chart with Annotated Bands (Chart.js) -&gt; Hover for context -&gt; Clearly visualizes key price zones. All choices use Canvas-based Chart.js to adhere to constraints. --&gt;
    &lt;!-- CONFIRMATION: NO SVG graphics used. NO Mermaid JS used. --&gt;
    &lt;style&gt;
        body { font-family: 'Noto Sans KR', sans-serif; }
        .chart-container { position: relative; width: 100%; max-width: 800px; margin-left: auto; margin-right: auto; height: 350px; max-height: 40vh; }
        @media (min-width: 768px) { .chart-container { height: 400px; max-height: 50vh; } }
        .nav-link { transition: all 0.3s ease; }
        .nav-link.active { color: #0284c7; border-bottom-color: #0284c7; transform: translateY(-2px); }
        .content-section { display: none; }
        .content-section.active { display: block; }
        .kpi-card { transition: all 0.2s ease-in-out; }
        .kpi-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body class=&quot;bg-slate-50 text-slate-800&quot;&gt;

    &lt;div class=&quot;container mx-auto p-4 md:p-8&quot;&gt;
        
        &lt;header class=&quot;text-center mb-8&quot;&gt;
            &lt;h1 class=&quot;text-3xl md:text-4xl font-bold text-slate-900&quot;&gt;파이서브 (Fiserv, Inc., FI)&lt;/h1&gt;
            &lt;p class=&quot;text-lg text-slate-600 mt-2&quot;&gt;디지털 결제 최전선을 위한 종합 투자 전략&lt;/p&gt;
        &lt;/header&gt;

        &lt;nav class=&quot;sticky top-0 bg-slate-50/80 backdrop-blur-sm z-10 mb-8 border-b border-slate-200&quot;&gt;
            &lt;ul class=&quot;flex justify-center items-center space-x-4 md:space-x-8 text-sm md:text-base font-medium text-slate-600&quot;&gt;
                &lt;li&gt;&lt;a href=&quot;#summary&quot; class=&quot;nav-link active py-4 px-2 border-b-2 border-transparent hover:text-sky-600&quot;&gt;요약&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#fundamentals&quot; class=&quot;nav-link py-4 px-2 border-b-2 border-transparent hover:text-sky-600&quot;&gt;펀더멘털&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#catalysts&quot; class=&quot;nav-link py-4 px-2 border-b-2 border-transparent hover:text-sky-600&quot;&gt;성장 촉매제&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#market&quot; class=&quot;nav-link py-4 px-2 border-b-2 border-transparent hover:text-sky-600&quot;&gt;시장 분석&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;#strategy&quot; class=&quot;nav-link py-4 px-2 border-b-2 border-transparent hover:text-sky-600&quot;&gt;매매 전략&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/nav&gt;

        &lt;main&gt;
            &lt;!-- 요약 Section --&gt;
            &lt;section id=&quot;summary&quot; class=&quot;content-section active space-y-8&quot;&gt;
                &lt;div class=&quot;text-center bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                    &lt;h2 class=&quot;text-2xl font-bold mb-4 text-slate-900&quot;&gt;최종 투자 결론&lt;/h2&gt;
                    &lt;p class=&quot;max-w-3xl mx-auto text-slate-600 leading-relaxed&quot;&gt;
                        거시 경제, 산업 동향, 펀더멘털, 경쟁 구도, 기술적 분석을 종합한 결과, 파이서브(FI)는 현재 매력적인 투자 기회를 제공합니다. 시장의 단기적 오해와 달리, 회사는 전략적 전환에 성공하고 있으며, 스테이블코인이라는 강력한 미래 성장 동력을 확보했습니다. 이에 따라 '강력 매수(Strong Buy)' 의견을 제시합니다.
                    &lt;/p&gt;
                &lt;/div&gt;

                &lt;div class=&quot;grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6&quot;&gt;
                    &lt;div class=&quot;kpi-card bg-sky-600 text-white p-6 rounded-xl shadow-lg text-center&quot;&gt;
                        &lt;h3 class=&quot;font-bold text-lg&quot;&gt;투자의견&lt;/h3&gt;
                        &lt;p class=&quot;text-4xl font-bold mt-2&quot;&gt;강력 매수&lt;/p&gt;
                        &lt;p class=&quot;text-sm opacity-80 mt-1&quot;&gt;Strong Buy&lt;/p&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;kpi-card bg-white p-6 rounded-xl shadow-md text-center&quot;&gt;
                        &lt;h3 class=&quot;font-bold text-lg text-slate-700&quot;&gt;12개월 목표주가&lt;/h3&gt;
                        &lt;p class=&quot;text-4xl font-bold mt-2 text-slate-900&quot;&gt;$225&lt;/p&gt;
                        &lt;p class=&quot;text-sm text-green-600 font-semibold mt-1&quot;&gt;상승 잠재력 ~38%&lt;/p&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;kpi-card bg-white p-6 rounded-xl shadow-md text-center&quot;&gt;
                        &lt;h3 class=&quot;font-bold text-lg text-slate-700&quot;&gt;최적 진입 구간&lt;/h3&gt;
                        &lt;p class=&quot;text-4xl font-bold mt-2 text-slate-900&quot;&gt;$155-165&lt;/p&gt;
                        &lt;p class=&quot;text-sm text-slate-500 mt-1&quot;&gt;기술적/가치평가 기반&lt;/p&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;kpi-card bg-white p-6 rounded-xl shadow-md text-center&quot;&gt;
                        &lt;h3 class=&quot;font-bold text-lg text-slate-700&quot;&gt;손절매 가격&lt;/h3&gt;
                        &lt;p class=&quot;text-4xl font-bold mt-2 text-red-600&quot;&gt;$144&lt;/p&gt;
                        &lt;p class=&quot;text-sm text-slate-500 mt-1&quot;&gt;주간 종가 기준&lt;/p&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                    &lt;h3 class=&quot;text-xl font-bold mb-4 text-center text-slate-900&quot;&gt;핵심 투자 논거&lt;/h3&gt;
                    &lt;ul class=&quot;space-y-3 text-slate-700 max-w-2xl mx-auto&quot;&gt;
                        &lt;li class=&quot;flex items-start&quot;&gt;&lt;span class=&quot;text-sky-500 font-bold mr-3&quot;&gt;✓&lt;/span&gt;&lt;div&gt;&lt;strong&gt;견고한 사업 모델:&lt;/strong&gt; 상호 보완적인 가맹점/금융 솔루션으로 경기 변동에 대한 높은 회복탄력성 보유.&lt;/div&gt;&lt;/li&gt;
                        &lt;li class=&quot;flex items-start&quot;&gt;&lt;span class=&quot;text-sky-500 font-bold mr-3&quot;&gt;✓&lt;/span&gt;&lt;div&gt;&lt;strong&gt;클로버의 오해:&lt;/strong&gt; GPV 둔화는 저마진 거래 축소 및 고부가가치 서비스 확대를 위한 성공적인 전략적 전환의 증거.&lt;/div&gt;&lt;/li&gt;
                        &lt;li class=&quot;flex items-start&quot;&gt;&lt;span class=&quot;text-sky-500 font-bold mr-3&quot;&gt;✓&lt;/span&gt;&lt;div&gt;&lt;strong&gt;미래 성장 동력 (스테이블코인):&lt;/strong&gt; 마스터카드/페이팔과의 'FIUSD' 파트너십은 미래 디지털 자산 경제의 핵심 인프라 제공자로 자리매김할 기회.&lt;/div&gt;&lt;/li&gt;
                        &lt;li class=&quot;flex items-start&quot;&gt;&lt;span class=&quot;text-sky-500 font-bold mr-3&quot;&gt;✓&lt;/span&gt;&lt;div&gt;&lt;strong&gt;매력적인 밸류에이션:&lt;/strong&gt; 펀더멘털 개선 및 성장 잠재력 대비, 단기 우려로 인한 주가 하락으로 저평가 상태.&lt;/div&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                &lt;/div&gt;
            &lt;/section&gt;

            &lt;!-- 펀더멘털 Section --&gt;
            &lt;section id=&quot;fundamentals&quot; class=&quot;content-section space-y-8&quot;&gt;
                 &lt;div class=&quot;text-center bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                    &lt;h2 class=&quot;text-2xl font-bold mb-2 text-slate-900&quot;&gt;파이서브의 핵심 엔진: 펀더멘털&lt;/h2&gt;
                    &lt;p class=&quot;max-w-3xl mx-auto text-slate-600 leading-relaxed&quot;&gt;
                        파이서브의 강점은 안정적인 수익 기반과 성장 엔진을 동시에 갖춘 균형잡힌 사업 포트폴리오에서 나옵니다. 견고한 재무 성과와 전략적 부채 관리는 회사의 지속 가능한 성장을 뒷받침합니다.
                    &lt;/p&gt;
                &lt;/div&gt;
                &lt;div class=&quot;grid grid-cols-1 lg:grid-cols-5 gap-8&quot;&gt;
                    &lt;div class=&quot;lg:col-span-3 bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold mb-4 text-slate-900&quot;&gt;비즈니스 모델: 두 개의 강력한 기둥&lt;/h3&gt;
                        &lt;div class=&quot;sm:flex sm:space-x-6 space-y-4 sm:space-y-0&quot;&gt;
                            &lt;div class=&quot;flex-1 p-4 border border-slate-200 rounded-lg&quot;&gt;
                                &lt;h4 class=&quot;font-bold text-lg text-sky-700&quot;&gt;가맹점 솔루션 (매출의 46%)&lt;/h4&gt;
                                &lt;p class=&quot;text-sm text-slate-600 mt-1&quot;&gt;성장 엔진. '클로버(Clover)' POS 시스템과 대기업용 '캐럿(Carat)' 생태계를 통해 모든 규모의 가맹점에 결제 및 사업 관리 솔루션을 제공합니다.&lt;/p&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;flex-1 p-4 border border-slate-200 rounded-lg&quot;&gt;
                                &lt;h4 class=&quot;font-bold text-lg text-teal-700&quot;&gt;금융 솔루션 (매출의 47%)&lt;/h4&gt;
                                &lt;p class=&quot;text-sm text-slate-600 mt-1&quot;&gt;안정적 기반. 수천 개의 은행, 신용조합에 핵심 계정 처리, 디지털 뱅킹 솔루션을 제공하며, 장기 계약 기반의 높은 고객 유지율이 특징입니다.&lt;/p&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;chart-container mt-6 mx-auto&quot; style=&quot;max-width: 400px; height: 250px;&quot;&gt;
                            &lt;canvas id=&quot;revenueSplitChart&quot;&gt;&lt;/canvas&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;lg:col-span-2 bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold mb-4 text-slate-900&quot;&gt;부채: 전략적 레버리지&lt;/h3&gt;
                        &lt;p class=&quot;text-sm text-slate-600 mb-4&quot;&gt;퍼스트 데이터 인수로 인한 높은 부채는 리스크가 아닌, 가치 창출을 위한 의도된 전략입니다. 안정적 현금흐름을 바탕으로 부채를 상환하며 주주가치를 극대화하는 LBO 모델과 유사합니다.&lt;/p&gt;
                        &lt;ul class=&quot;space-y-3 text-slate-700 text-sm&quot;&gt;
                            &lt;li class=&quot;flex items-center&quot;&gt;&lt;span class=&quot;w-2 h-2 rounded-full bg-green-500 mr-3&quot;&gt;&lt;/span&gt;이자보상배율: &lt;strong&gt;4.9배&lt;/strong&gt; (양호)&lt;/li&gt;
                            &lt;li class=&quot;flex items-center&quot;&gt;&lt;span class=&quot;w-2 h-2 rounded-full bg-green-500 mr-3&quot;&gt;&lt;/span&gt;부채/영업현금흐름: &lt;strong&gt;24.2%&lt;/strong&gt; (충분한 상환 능력)&lt;/li&gt;
                            &lt;li class=&quot;flex items-center&quot;&gt;&lt;span class=&quot;w-2 h-2 rounded-full bg-sky-500 mr-3&quot;&gt;&lt;/span&gt;핵심 관점: 운영 부채가 아닌 &lt;strong&gt;성장 자산 인수&lt;/strong&gt;를 위한 투자.&lt;/li&gt;
                             &lt;li class=&quot;flex items-center&quot;&gt;&lt;span class=&quot;w-2 h-2 rounded-full bg-sky-500 mr-3&quot;&gt;&lt;/span&gt;미래 촉매제: 금리 인하 시 &lt;strong&gt;이자 비용 감소 &amp; EPS 증가&lt;/strong&gt; 기대.&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
                &lt;div class=&quot;bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                    &lt;h3 class=&quot;text-xl font-bold mb-4 text-center text-slate-900&quot;&gt;꾸준한 재무 성과&lt;/h3&gt;
                    &lt;p class=&quot;text-center text-slate-600 text-sm mb-4 max-w-2xl mx-auto&quot;&gt;파이서브는 지속적인 매출 성장과 수익성 개선을 통해 강력한 주당순이익(EPS) 성장률을 기록하고 있습니다.&lt;/p&gt;
                    &lt;div class=&quot;chart-container mx-auto&quot;&gt;
                        &lt;canvas id=&quot;financialsChart&quot;&gt;&lt;/canvas&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/section&gt;

            &lt;!-- 성장 촉매제 Section --&gt;
            &lt;section id=&quot;catalysts&quot; class=&quot;content-section space-y-8&quot;&gt;
                &lt;div class=&quot;text-center bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                    &lt;h2 class=&quot;text-2xl font-bold mb-2 text-slate-900&quot;&gt;미래를 이끌 성장 촉매제&lt;/h2&gt;
                    &lt;p class=&quot;max-w-3xl mx-auto text-slate-600 leading-relaxed&quot;&gt;
                       시장은 파이서브의 핵심 성장 스토리를 오해하고 있습니다. 클로버의 전략적 질적 성장과 스테이블코인 시장 선점은 미래 주가 재평가의 핵심 동력이 될 것입니다.
                    &lt;/p&gt;
                &lt;/div&gt;
                &lt;div class=&quot;grid grid-cols-1 md:grid-cols-2 gap-8&quot;&gt;
                    &lt;div class=&quot;bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold text-slate-900&quot;&gt;클로버의 역설: 양보다 질&lt;/h3&gt;
                        &lt;p class=&quot;text-sm text-slate-600 mt-2 mb-4&quot;&gt;최근 시장이 우려한 클로버의 총결제액(GPV) 성장 둔화는 사실, 저마진의 초소형 가맹점을 줄이고 고마진의 부가서비스를 사용하는 '우량' 고객에 집중하는 성공적 전략의 결과입니다. GPV 성장률(8%)보다 훨씬 높은 매출 성장률(27%)이 이를 증명합니다.&lt;/p&gt;
                        &lt;div class=&quot;chart-container&quot; style=&quot;height: 300px;&quot;&gt;
                            &lt;canvas id=&quot;cloverChart&quot;&gt;&lt;/canvas&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold text-slate-900&quot;&gt;스테이블코인: 미래 금융의 인프라&lt;/h3&gt;
                        &lt;p class=&quot;text-sm text-slate-600 mt-2 mb-4&quot;&gt;'FIUSD' 출시 및 마스터카드, 페이팔과의 파트너십은 파이서브를 단순 결제 처리사를 넘어 미래 디지털 자산 경제의 핵심 '배관' 제공자로 격상시키는 게임 체인저입니다.&lt;/p&gt;
                        &lt;div class=&quot;space-y-4 mt-6&quot;&gt;
                            &lt;div class=&quot;flex items-center p-4 bg-slate-100 rounded-lg&quot;&gt;
                                &lt;div class=&quot;text-2xl mr-4&quot;&gt; &lt;/div&gt;
                                &lt;div&gt;
                                    &lt;h4 class=&quot;font-semibold&quot;&gt;Fiserv (Finxact)&lt;/h4&gt;
                                    &lt;p class=&quot;text-xs text-slate-500&quot;&gt;디지털 자산 플랫폼 제공, FIUSD 발행&lt;/p&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                             &lt;div class=&quot;text-center text-2xl&quot;&gt;↓&lt;/div&gt;
                            &lt;div class=&quot;flex items-center p-4 bg-slate-100 rounded-lg&quot;&gt;
                                &lt;div class=&quot;text-2xl mr-4&quot;&gt; &lt;/div&gt;
                                &lt;div&gt;
                                    &lt;h4 class=&quot;font-semibold&quot;&gt;Mastercard &amp; PayPal&lt;/h4&gt;
                                    &lt;p class=&quot;text-xs text-slate-500&quot;&gt;네트워크 통합, 카드 지원, 온/오프 램핑&lt;/p&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                             &lt;div class=&quot;text-center text-2xl&quot;&gt;↓&lt;/div&gt;
                            &lt;div class=&quot;flex items-center p-4 bg-slate-100 rounded-lg&quot;&gt;
                               &lt;div class=&quot;text-2xl mr-4&quot;&gt; &lt;/div&gt;
                                &lt;div&gt;
                                    &lt;h4 class=&quot;font-semibold&quot;&gt;글로벌 상거래&lt;/h4&gt;
                                    &lt;p class=&quot;text-xs text-slate-500&quot;&gt;1.5억개 이상 가맹점, 국경간 거래에 활용&lt;/p&gt;
                                &lt;/div&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/section&gt;
            
            &lt;!-- 시장 분석 Section --&gt;
            &lt;section id=&quot;market&quot; class=&quot;content-section space-y-8&quot;&gt;
                &lt;div class=&quot;text-center bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                    &lt;h2 class=&quot;text-2xl font-bold mb-2 text-slate-900&quot;&gt;시장 내 위치와 가치 평가&lt;/h2&gt;
                    &lt;p class=&quot;max-w-3xl mx-auto text-slate-600 leading-relaxed&quot;&gt;
                        파이서브는 경쟁사 대비 우월한 수익성과 효율성을 보여주며 시장 지배력을 강화하고 있습니다. 월스트리트 분석가들의 압도적인 긍정적 평가는 현재 주가가 저평가되었음을 시사합니다.
                    &lt;/p&gt;
                &lt;/div&gt;

                &lt;div class=&quot;grid grid-cols-1 lg:grid-cols-2 gap-8&quot;&gt;
                    &lt;div class=&quot;bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                        &lt;div class=&quot;flex justify-between items-center mb-4&quot;&gt;
                            &lt;h3 class=&quot;text-xl font-bold text-slate-900&quot;&gt;경쟁사 비교&lt;/h3&gt;
                            &lt;select id=&quot;competitorMetricSelect&quot; class=&quot;text-sm border border-slate-300 rounded-md p-1.5 focus:ring-2 focus:ring-sky-500 focus:outline-none&quot;&gt;
                                &lt;option value=&quot;opMargin&quot;&gt;영업이익률&lt;/option&gt;
                                &lt;option value=&quot;netMargin&quot;&gt;순이익률&lt;/option&gt;
                                &lt;option value=&quot;roe&quot;&gt;ROE&lt;/option&gt;
                                &lt;option value=&quot;psRatio&quot;&gt;P/S 비율&lt;/option&gt;
                            &lt;/select&gt;
                        &lt;/div&gt;
                        &lt;p class=&quot;text-sm text-slate-600 mb-4&quot;&gt;파이서브는 주요 경쟁사인 글로벌 페이먼츠(GPN) 대비 대부분의 수익성 및 효율성 지표에서 우위를 보입니다.&lt;/p&gt;
                        &lt;div class=&quot;chart-container&quot; style=&quot;height: 300px;&quot;&gt;
                            &lt;canvas id=&quot;competitorChart&quot;&gt;&lt;/canvas&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                        &lt;h3 class=&quot;text-xl font-bold mb-4 text-slate-900&quot;&gt;월스트리트 컨센서스&lt;/h3&gt;
                        &lt;p class=&quot;text-sm text-slate-600 mb-4&quot;&gt;최근의 주가 부진에도 불구, 대다수의 분석가들은 파이서브의 장기 펀더멘털을 긍정적으로 평가하며 강력한 매수 의견을 유지하고 있습니다.&lt;/p&gt;
                        &lt;div class=&quot;sm:flex&quot;&gt;
                            &lt;div class=&quot;flex-1 chart-container&quot; style=&quot;height: 200px; max-width: 300px;&quot;&gt;
                                &lt;canvas id=&quot;analystRatingsChart&quot;&gt;&lt;/canvas&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;flex-1 mt-4 sm:mt-0 sm:ml-6 space-y-2 text-center sm:text-left&quot;&gt;
                                &lt;h4 class=&quot;font-semibold text-lg&quot;&gt;목표 주가&lt;/h4&gt;
                                &lt;p&gt;&lt;span class=&quot;font-bold text-slate-800 text-2xl&quot;&gt;$225&lt;/span&gt; &lt;span class=&quot;text-slate-500&quot;&gt;(평균)&lt;/span&gt;&lt;/p&gt;
                                &lt;p&gt;&lt;strong&gt;최고:&lt;/strong&gt; &lt;span class=&quot;text-green-600&quot;&gt;$281&lt;/span&gt;&lt;/p&gt;
                                &lt;p&gt;&lt;strong&gt;최저:&lt;/strong&gt; &lt;span class=&quot;text-red-600&quot;&gt;$145&lt;/span&gt;&lt;/p&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/section&gt;

            &lt;!-- 매매 전략 Section --&gt;
            &lt;section id=&quot;strategy&quot; class=&quot;content-section space-y-8&quot;&gt;
                &lt;div class=&quot;text-center bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                    &lt;h2 class=&quot;text-2xl font-bold mb-2 text-slate-900&quot;&gt;실행을 위한 전략적 청사진&lt;/h2&gt;
                    &lt;p class=&quot;max-w-3xl mx-auto text-slate-600 leading-relaxed&quot;&gt;
                        강력한 펀더멘털과 미래 성장성을 기반으로, 기술적 약세를 활용한 분할 매수 전략을 권고합니다. 명확한 진입, 목표, 손절 구간을 설정하여 리스크를 관리합니다.
                    &lt;/p&gt;
                &lt;/div&gt;
                &lt;div class=&quot;bg-white p-6 rounded-xl shadow-sm&quot;&gt;
                    &lt;h3 class=&quot;text-xl font-bold mb-4 text-center text-slate-900&quot;&gt;핵심 가격 레벨 시각화&lt;/h3&gt;
                    &lt;p class=&quot;text-center text-slate-600 text-sm mb-4 max-w-2xl mx-auto&quot;&gt;차트의 색상 밴드는 주요 전략적 가격 구간을 나타냅니다. 현재 주가는 매력적인 진입 구간 근처에 위치해 있습니다.&lt;/p&gt;
                    &lt;div class=&quot;chart-container mx-auto&quot;&gt;
                        &lt;canvas id=&quot;strategyChart&quot;&gt;&lt;/canvas&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 text-center&quot;&gt;
                    &lt;div class=&quot;bg-blue-100 p-4 rounded-lg&quot;&gt;
                        &lt;h4 class=&quot;font-bold&quot;&gt;진입 구간&lt;/h4&gt;
                        &lt;p class=&quot;text-lg font-mono font-bold text-blue-800&quot;&gt;$155 - $165&lt;/p&gt;
                    &lt;/div&gt;
                     &lt;div class=&quot;bg-red-100 p-4 rounded-lg&quot;&gt;
                        &lt;h4 class=&quot;font-bold&quot;&gt;손절매&lt;/h4&gt;
                        &lt;p class=&quot;text-lg font-mono font-bold text-red-800&quot;&gt;&amp;lt; $144&lt;/p&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;bg-green-100 p-4 rounded-lg&quot;&gt;
                        &lt;h4 class=&quot;font-bold&quot;&gt;1차 목표 (PT1)&lt;/h4&gt;
                        &lt;p class=&quot;text-lg font-mono font-bold text-green-800&quot;&gt;$225&lt;/p&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;bg-emerald-100 p-4 rounded-lg&quot;&gt;
                        &lt;h4 class=&quot;font-bold&quot;&gt;2차 목표 (PT2)&lt;/h4&gt;
                        &lt;p class=&quot;text-lg font-mono font-bold text-emerald-800&quot;&gt;$265&lt;/p&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/section&gt;
        &lt;/main&gt;

    &lt;/div&gt;

    &lt;script&gt;
        document.addEventListener('DOMContentLoaded', function () {
            const navLinks = document.querySelectorAll('.nav-link');
            const contentSections = document.querySelectorAll('.content-section');

            function navigateTo(hash) {
                navLinks.forEach(link =&gt; {
                    link.classList.toggle('active', link.hash === hash);
                });
                contentSections.forEach(section =&gt; {
                    section.classList.toggle('active', '#' + section.id === hash);
                });
            }
            
            navLinks.forEach(link =&gt; {
                link.addEventListener('click', function (e) {
                    e.preventDefault();
                    const targetId = this.getAttribute('href');
                    navigateTo(targetId);
                    window.location.hash = targetId;
                });
            });

            const initialHash = window.location.hash || '#summary';
            navigateTo(initialHash);
            
            // --- Chart Data ---
            const revenueSplitData = {
                labels: ['가맹점 솔루션', '금융 솔루션', '기타'],
                datasets: [{
                    label: '매출 비중',
                    data: [46, 47, 7],
                    backgroundColor: ['#0ea5e9', '#14b8a6', '#64748b'],
                    hoverOffset: 4
                }]
            };

            const financialsData = {
                labels: ['2022', '2023', '2024', '2025 (E)'],
                datasets: [{
                    label: '매출 성장률 (%)',
                    data: [9, 7, 7, 11],
                    backgroundColor: '#7dd3fc',
                    borderColor: '#0ea5e9',
                    borderWidth: 1,
                    type: 'bar',
                    yAxisID: 'y'
                }, {
                    label: '조정 EPS 성장률 (%)',
                    data: [14, 16, 14, 16],
                    backgroundColor: '#14b8a6',
                    borderColor: '#0f766e',
                    type: 'line',
                    fill: false,
                    tension: 0.1,
                    yAxisID: 'y',
                }]
            };
            
            const cloverData = {
                labels: ['Q1 2024', 'Q2 2024', 'Q3 2024', 'Q4 2024', 'Q1 2025'],
                datasets: [{
                    label: '클로버 GPV 성장률 (%)',
                    data: [15, 14, 12, 11, 8],
                    backgroundColor: '#a5b4fc',
                    borderColor: '#6366f1',
                    borderWidth: 1
                }, {
                    label: '클로버 매출 성장률 (%)',
                    data: [30, 29, 28, 28, 27],
                    backgroundColor: '#fca5a5',
                    borderColor: '#ef4444',
                    borderWidth: 1
                }]
            };

            const competitorData = {
                opMargin: { labels: ['Fiserv (FI)', 'Global Payments (GPN)'], data: [29.3, 23.7] },
                netMargin: { labels: ['Fiserv (FI)', 'Global Payments (GPN)', 'Block (SQ)'], data: [15.7, 15.5, 10.9] },
                roe: { labels: ['Fiserv (FI)', 'Global Payments (GPN)'], data: [11.9, 8.0] },
                psRatio: { labels: ['Fiserv (FI)', 'Global Payments (GPN)'], data: [4.9, 2.6] }
            };

            const analystRatingsData = {
                labels: ['강력 매수', '매수', '보유', '매도'],
                datasets: [{
                    data: [28, 4, 2, 2], // Based on one source: 28 Strong Buy, 4 Mod. Buy, 2 Hold, 2 Strong Sell
                    backgroundColor: ['#059669', '#10b981', '#f59e0b', '#ef4444'],
                    hoverOffset: 4
                }]
            };

            const strategyPriceData = [185, 180, 175, 170, 160, 165, 163];
            const strategyLabels = ['3월', '4월', '5/1', '5/15', '6/1', '6/15', '현재'];

            // --- Chart Instances ---
            let revenueSplitChart, financialsChart, cloverChart, competitorChart, analystRatingsChart, strategyChart;

            function createRevenueSplitChart() {
                const ctx = document.getElementById('revenueSplitChart')?.getContext('2d');
                if (!ctx) return;
                revenueSplitChart = new Chart(ctx, {
                    type: 'doughnut',
                    data: revenueSplitData,
                    options: {
                        responsive: true, maintainAspectRatio: false,
                        plugins: { legend: { position: 'bottom' }, title: { display: true, text: '2025년 1분기 부문별 매출 비중' } }
                    }
                });
            }

            function createFinancialsChart() {
                const ctx = document.getElementById('financialsChart')?.getContext('2d');
                if (!ctx) return;
                financialsChart = new Chart(ctx, {
                    type: 'bar',
                    data: financialsData,
                    options: {
                        responsive: true, maintainAspectRatio: false,
                        scales: { y: { beginAtZero: true, title: { display: true, text: '성장률 (%)' } } },
                        plugins: { legend: { position: 'bottom' } }
                    }
                });
            }

            function createCloverChart() {
                const ctx = document.getElementById('cloverChart')?.getContext('2d');
                if (!ctx) return;
                cloverChart = new Chart(ctx, {
                    type: 'bar',
                    data: cloverData,
                    options: {
                        responsive: true, maintainAspectRatio: false,
                        scales: { y: { beginAtZero: true, title: { display: true, text: 'YoY 성장률 (%)' } } },
                        plugins: { legend: { position: 'bottom' } }
                    }
                });
            }

            function createCompetitorChart(metric = 'opMargin') {
                const ctx = document.getElementById('competitorChart')?.getContext('2d');
                if (!ctx) return;
                if (competitorChart) competitorChart.destroy();
                
                competitorChart = new Chart(ctx, {
                    type: 'bar',
                    data: {
                        labels: competitorData[metric].labels,
                        datasets: [{
                            label: document.querySelector(`option[value=${metric}]`).textContent,
                            data: competitorData[metric].data,
                            backgroundColor: ['#38bdf8', '#fb923c', '#a78bfa'],
                            borderColor: ['#0ea5e9', '#f97316', '#8b5cf6'],
                            borderWidth: 1
                        }]
                    },
                    options: {
                        indexAxis: 'y', responsive: true, maintainAspectRatio: false,
                        plugins: { legend: { display: false } }
                    }
                });
            }

            function createAnalystRatingsChart() {
                const ctx = document.getElementById('analystRatingsChart')?.getContext('2d');
                if (!ctx) return;
                analystRatingsChart = new Chart(ctx, {
                    type: 'doughnut',
                    data: analystRatingsData,
                    options: {
                        responsive: true, maintainAspectRatio: false,
                        plugins: {
                            legend: { display: true, position: 'right', labels: { boxWidth: 12 } },
                            title: { display: true, text: '분석가 투자의견 분포' }
                        }
                    }
                });
            }

            function createStrategyChart() {
                const ctx = document.getElementById('strategyChart')?.getContext('2d');
                if(!ctx) return;
                strategyChart = new Chart(ctx, {
                    type: 'line',
                    data: {
                        labels: strategyLabels,
                        datasets: [{
                            label: 'FI 주가',
                            data: strategyPriceData,
                            borderColor: '#475569',
                            backgroundColor: '#64748b',
                            tension: 0.1,
                            fill: false
                        }]
                    },
                    options: {
                        responsive: true, maintainAspectRatio: false,
                        scales: { y: { beginAtZero: false } },
                        plugins: {
                            legend: { display: false },
                            annotation: {
                                annotations: {
                                    pt2: { type: 'box', yMin: 260, yMax: 270, backgroundColor: 'rgba(5, 150, 105, 0.1)', label: { content: 'PT2: $265', display: true, position: 'start', color: '#047857' } },
                                    pt1: { type: 'box', yMin: 220, yMax: 230, backgroundColor: 'rgba(22, 163, 74, 0.1)', label: { content: 'PT1: $225', display: true, position: 'start', color: '#15803d' } },
                                    entry: { type: 'box', yMin: 155, yMax: 165, backgroundColor: 'rgba(59, 130, 246, 0.1)', label: { content: '진입구간: $155-165', display: true, position: 'start', color: '#1d4ed8' } },
                                    stoploss: { type: 'box', yMin: 143, yMax: 145, backgroundColor: 'rgba(239, 68, 68, 0.1)', label: { content: '손절: $144', display: true, position: 'start', color: '#b91c1c' } }
                                }
                            }
                        }
                    }
                });
            }

            // --- Initial Chart Creations ---
            createRevenueSplitChart();
            createFinancialsChart();
            createCloverChart();
            createCompetitorChart();
            createAnalystRatingsChart();
            createStrategyChart();
            
            // --- Event Listeners ---
            document.getElementById('competitorMetricSelect')?.addEventListener('change', function(e) {
                createCompetitorChart(e.target.value);
            });
        });

    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</description>
      <category>미국주식/파이서브</category>
      <category>매매전략</category>
      <category>미국주식</category>
      <category>분석</category>
      <category>재테크</category>
      <category>주식</category>
      <category>파이서브</category>
      <author>traveler0201</author>
      <guid isPermaLink="true">https://traveler0201.tistory.com/1</guid>
      <comments>https://traveler0201.tistory.com/1#entry1comment</comments>
      <pubDate>Tue, 24 Jun 2025 23:15:56 +0900</pubDate>
    </item>
  </channel>
</rss>