<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>미분류 보관 - charmmoney.com</title>
	<atom:link href="http://charmmoney.com/ko/category/%eb%af%b8%eb%b6%84%eb%a5%98/feed/" rel="self" type="application/rss+xml" />
	<link>http://charmmoney.com/ko/category/미분류/</link>
	<description></description>
	<lastBuildDate>Thu, 30 Apr 2026 20:14:49 +0000</lastBuildDate>
	<language>ko-KR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>헤르메스 자동화를 시작할 때 Docker를 먼저 고려해야 하는 이유</title>
		<link>http://charmmoney.com/ko/%ed%97%a4%eb%a5%b4%eb%a9%94%ec%8a%a4-%ec%9e%90%eb%8f%99%ed%99%94-docker/</link>
					<comments>http://charmmoney.com/ko/%ed%97%a4%eb%a5%b4%eb%a9%94%ec%8a%a4-%ec%9e%90%eb%8f%99%ed%99%94-docker/#respond</comments>
		
		<dc:creator><![CDATA[charmmoney]]></dc:creator>
		<pubDate>Thu, 30 Apr 2026 20:14:48 +0000</pubDate>
				<category><![CDATA[미분류]]></category>
		<guid isPermaLink="false">https://charmmoney.com/?p=50</guid>

					<description><![CDATA[<p>헤르메스(Hermes) AI 에이전트 자동화, 왜 Docker로 시작해야 할까? (초보자 가이드) 헤르메스(Hermes)와 같은 AI 에이전트 자동화를 처음 접하면 가장 먼저 부딪히는 문제는 “환경 설정”입니다. 실제로 프로그램 자체보다 설치 과정에서 막히는 경우가 훨씬 많습니다. 이때 Docker를 활용하면 이러한 문제를 구조적으로 해결할 수 있습니다. 1. 설치 환경 문제를 근본적으로 차단 초보자가 가장 많이 겪는 문제는 다음과 같습니다. Docker는 ... <a title="헤르메스 자동화를 시작할 때 Docker를 먼저 고려해야 하는 이유" class="read-more" href="http://charmmoney.com/ko/%ed%97%a4%eb%a5%b4%eb%a9%94%ec%8a%a4-%ec%9e%90%eb%8f%99%ed%99%94-docker/" aria-label="헤르메스 자동화를 시작할 때 Docker를 먼저 고려해야 하는 이유에 대해 더 자세히 알아보세요">더 읽기</a></p>
<p>게시물 <a href="http://charmmoney.com/ko/%ed%97%a4%eb%a5%b4%eb%a9%94%ec%8a%a4-%ec%9e%90%eb%8f%99%ed%99%94-docker/">헤르메스 자동화를 시작할 때 Docker를 먼저 고려해야 하는 이유</a>이 <a href="http://charmmoney.com/ko/">charmmoney.com</a>에 처음 등장했습니다.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading">헤르메스(Hermes) AI 에이전트 자동화, 왜 Docker로 시작해야 할까? (초보자 가이드)</h1>



<p class="wp-block-paragraph">헤르메스(Hermes)와 같은 AI 에이전트 자동화를 처음 접하면 가장 먼저 부딪히는 문제는 <strong>“환경 설정”</strong>입니다. 실제로 프로그램 자체보다 설치 과정에서 막히는 경우가 훨씬 많습니다. 이때 <strong>Docker</strong>를 활용하면 이러한 문제를 구조적으로 해결할 수 있습니다.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">1. 설치 환경 문제를 근본적으로 차단</h2>



<p class="wp-block-paragraph">초보자가 가장 많이 겪는 문제는 다음과 같습니다.</p>



<ul class="wp-block-list">
<li>라이브러리 버전 충돌</li>



<li>Python, Node 등 실행 환경 불일치</li>



<li>다른 프로그램과의 간섭</li>
</ul>



<p class="wp-block-paragraph">Docker는 실행 환경을 하나의 <strong>컨테이너</strong>로 묶어버립니다.</p>



<p class="wp-block-paragraph">즉, 헤르메스가 정상 작동하는 상태를 그대로 복제해서 사용하는 구조입니다.</p>



<ul class="wp-block-list">
<li>한 번 실행되면 다른 PC에서도 동일하게 작동</li>



<li>환경 설정 문제 최소화</li>



<li>설정 꼬임 원천 차단</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">2. 복잡한 설치 과정 없이 빠른 실행</h2>



<p class="wp-block-paragraph">일반적인 설치 방식은 다음과 같습니다.</p>



<ol class="wp-block-list">
<li>프로그램 설치</li>



<li>라이브러리 설치</li>



<li>환경 변수 설정</li>



<li>오류 발생 시 반복 수정</li>
</ol>



<p class="wp-block-paragraph">하지만 Docker는 이미 설정된 환경을 그대로 가져옵니다.</p>



<p class="wp-block-paragraph"><strong>명령어 한 줄로 전체 시스템 실행이 가능</strong>하기 때문에 초보자 입장에서는 설치 시간을 획기적으로 줄일 수 있습니다.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">3. 여러 자동화를 동시에 운영 가능</h2>



<p class="wp-block-paragraph">헤르메스를 활용하면 자동화는 하나로 끝나지 않습니다.</p>



<ul class="wp-block-list">
<li>블로그 자동화</li>



<li>데이터 수집</li>



<li>알림 시스템</li>



<li>거래 자동화</li>
</ul>



<p class="wp-block-paragraph">이 모든 기능을 하나의 환경에서 실행하면 충돌이 발생할 수 있습니다.</p>



<p class="wp-block-paragraph">Docker는 각 자동화를 <strong>독립된 컨테이너</strong>로 분리합니다.</p>



<ul class="wp-block-list">
<li>한 자동화 오류 → 다른 자동화 영향 없음</li>



<li>유지보수 간편</li>



<li>확장성 우수</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">4. 시스템 안정성 확보</h2>



<p class="wp-block-paragraph">자동화는 대부분 장시간 실행됩니다. 이때 중요한 요소는 <strong>안정성</strong>입니다.</p>



<p class="wp-block-paragraph">Docker는 실행 환경을 격리하기 때문에 오류가 발생해도 전체 시스템에 영향을 주지 않습니다.</p>



<ul class="wp-block-list">
<li>문제 발생 시 해당 컨테이너만 재시작</li>



<li>빠른 복구 가능</li>



<li>시스템 전체 안정성 유지</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">5. 리소스 관리가 가능</h2>



<p class="wp-block-paragraph">자동화 작업은 CPU와 메모리를 지속적으로 사용합니다.</p>



<p class="wp-block-paragraph">특히 크롤링이나 실시간 데이터 감지 작업은 자원 사용량이 높아질 수 있습니다.</p>



<p class="wp-block-paragraph">Docker는 컨테이너별로 자원 제한이 가능합니다.</p>



<ul class="wp-block-list">
<li>CPU 사용량 제한</li>



<li>메모리 사용량 제한</li>
</ul>



<p class="wp-block-paragraph">즉, 특정 자동화가 과도하게 자원을 사용해도 <strong>전체 시스템 성능 저하를 방지</strong>할 수 있습니다.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">6. 서버 이전과 확장이 쉬움</h2>



<p class="wp-block-paragraph">처음에는 개인 PC에서 시작하더라도 이후에는 서버로 이전하는 경우가 많습니다.</p>



<p class="wp-block-paragraph">Docker를 사용하면 환경을 그대로 옮길 수 있습니다.</p>



<ul class="wp-block-list">
<li>클라우드 서버로 이전</li>



<li>다른 PC에서 동일 환경 실행</li>



<li>자동화 확장 운영</li>
</ul>



<p class="wp-block-paragraph">환경을 다시 세팅할 필요 없이 그대로 복제 가능하다는 점이 큰 장점입니다.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">7. 자동화 운영에 최적화된 구조</h2>



<p class="wp-block-paragraph">헤르메스와 같은 AI 자동화의 핵심은 <strong>“지속적이고 안정적인 실행”</strong>입니다.</p>



<p class="wp-block-paragraph">Docker는 다음과 같은 특징을 제공합니다.</p>



<ul class="wp-block-list">
<li>24시간 실행 구조</li>



<li>빠른 재시작</li>



<li>환경 일관성 유지</li>
</ul>



<p class="wp-block-paragraph">결국 유지 관리 시간을 줄이고 자동화의 안정성을 높이는 방향으로 연결됩니다.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">결론: Docker는 선택이 아니라 기반</h2>



<p class="wp-block-paragraph">Docker는 단순한 선택이 아니라 <strong>자동화를 제대로 운영하기 위한 기반</strong>에 가깝습니다.</p>



<p class="wp-block-paragraph">초보자 입장에서는 처음에 개념이 낯설 수 있지만, 구조를 이해하고 나면 오히려 훨씬 단순한 방식입니다.</p>



<p class="wp-block-paragraph"><strong>헤르메스 자동화를 안정적으로 운영하려면 초기 단계부터 Docker 기반으로 시작하는 것이 가장 효율적인 선택입니다.</strong></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><strong><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cc.png" alt="📌" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 핵심 요약</strong></p>



<ul class="wp-block-list">
<li>환경 설정 문제 해결</li>



<li>설치 시간 단축</li>



<li>자동화 분리 운영 가능</li>



<li>안정성 및 확장성 확보</li>
</ul>



<p class="wp-block-paragraph"></p>
<p>게시물 <a href="http://charmmoney.com/ko/%ed%97%a4%eb%a5%b4%eb%a9%94%ec%8a%a4-%ec%9e%90%eb%8f%99%ed%99%94-docker/">헤르메스 자동화를 시작할 때 Docker를 먼저 고려해야 하는 이유</a>이 <a href="http://charmmoney.com/ko/">charmmoney.com</a>에 처음 등장했습니다.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://charmmoney.com/ko/%ed%97%a4%eb%a5%b4%eb%a9%94%ec%8a%a4-%ec%9e%90%eb%8f%99%ed%99%94-docker/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>When Closing (Selling) on Bitget, Checking Only This Can Cost You Money</title>
		<link>http://charmmoney.com/ko/when-closing-selling-on-bitget-checking-only-this-can-cost-you-money/</link>
					<comments>http://charmmoney.com/ko/when-closing-selling-on-bitget-checking-only-this-can-cost-you-money/#respond</comments>
		
		<dc:creator><![CDATA[charmmoney]]></dc:creator>
		<pubDate>Fri, 09 Jan 2026 15:50:26 +0000</pubDate>
				<category><![CDATA[미분류]]></category>
		<guid isPermaLink="false">https://charmmoney.com/when-closing-selling-on-bitget-checking-only-this-can-cost-you-money/</guid>

					<description><![CDATA[<p>If you log in to Bitget, pick a coin, and take your entry, the position panel will show up at the bottom of the screen. And yes — the first number your eyes naturally lock onto is usually Unrealized PnL. It looks like “my expected profit,” so when it grows, dopamine kicks in. But here’s ... <a title="When Closing (Selling) on Bitget, Checking Only This Can Cost You Money" class="read-more" href="http://charmmoney.com/ko/when-closing-selling-on-bitget-checking-only-this-can-cost-you-money/" aria-label="When Closing (Selling) on Bitget, Checking Only This Can Cost You Money에 대해 더 자세히 알아보세요">더 읽기</a></p>
<p>게시물 <a href="http://charmmoney.com/ko/when-closing-selling-on-bitget-checking-only-this-can-cost-you-money/">When Closing (Selling) on Bitget, Checking Only This Can Cost You Money</a>이 <a href="http://charmmoney.com/ko/">charmmoney.com</a>에 처음 등장했습니다.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">If you log in to Bitget, pick a coin, and take your entry, the position panel will show up at the bottom of the screen.</p>



<p class="wp-block-paragraph">And yes — the first number your eyes naturally lock onto is usually <strong>Unrealized PnL</strong>.</p>



<p class="wp-block-paragraph">It looks like “my expected profit,” so when it grows, dopamine kicks in. But here’s the problem:</p>



<p class="wp-block-paragraph"><strong>If you close (sell) a position by trusting Unrealized PnL alone, you can end up taking a loss.</strong></p>



<p class="wp-block-paragraph">Because in many cases, that Unrealized PnL is not calculated based on the price you can actually exit at right now. It is calculated based on <strong>Mark Price</strong>.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">1) What Unrealized PnL Really Means on Bitget</h2>



<p class="wp-block-paragraph">Unrealized PnL is a “floating” profit/loss estimate while the position is still open.</p>



<p class="wp-block-paragraph">But the key detail is this:</p>



<p class="wp-block-paragraph"><strong>Unrealized PnL often reflects the result if you were to close at the Mark Price — not the real bid/ask you will hit when you close.</strong></p>



<p class="wp-block-paragraph">So if you’re trading tight ranges (like scalping) where a single tick can flip your PnL from plus to minus, you should be extra careful.</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1024" height="187" src="https://charmmoney.com/wp-content/uploads/2026/01/Bitget-Unrealized-PnLPC-1024x187.png" alt="Bitget Unrealized PnL(PC)" class="wp-image-15" srcset="http://charmmoney.com/wp-content/uploads/2026/01/Bitget-Unrealized-PnLPC-1024x187.png 1024w, http://charmmoney.com/wp-content/uploads/2026/01/Bitget-Unrealized-PnLPC-300x55.png 300w, http://charmmoney.com/wp-content/uploads/2026/01/Bitget-Unrealized-PnLPC-768x140.png 768w, http://charmmoney.com/wp-content/uploads/2026/01/Bitget-Unrealized-PnLPC.png 1229w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">2) Mark Price: What It Is (And Why Exchanges Use It)</h2>



<p class="wp-block-paragraph">So… what is Mark Price?</p>



<p class="wp-block-paragraph">If you look at the order book area, you’ll usually see Mark Price shown as a separate price (often in a lighter color) compared to the last traded price.</p>



<p class="wp-block-paragraph"><strong>Mark Price is not the last traded price.</strong></p>



<p class="wp-block-paragraph">It’s a reference price designed to help prevent unfair liquidations during sudden spikes, manipulation, or abnormal order book movements.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" width="437" height="547" src="https://charmmoney.com/wp-content/uploads/2026/01/Bitget-orderbook-mark-price.png" alt="Bitget orderbook mark price" class="wp-image-16" srcset="http://charmmoney.com/wp-content/uploads/2026/01/Bitget-orderbook-mark-price.png 437w, http://charmmoney.com/wp-content/uploads/2026/01/Bitget-orderbook-mark-price-240x300.png 240w" sizes="(max-width: 437px) 100vw, 437px" /></figure>
</div>


<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">3) How Mark Price Is Calculated (In Simple Terms)</h2>



<p class="wp-block-paragraph">Mark Price is commonly derived from a combination of:</p>



<ul class="wp-block-list">
<li><strong>Index Price</strong>: an average price collected from multiple exchanges</li>



<li><strong>Fair Basis / Funding-based adjustment</strong>: reflects the gap between futures and spot prices</li>
</ul>



<p class="wp-block-paragraph">In short, Mark Price exists so that people don’t get liquidated just because of a temporary “wick” or a manipulated spike.</p>



<p class="wp-block-paragraph">This is a protection mechanism — but it also creates a gap between what you “see” and what you can “execute.”</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">4) The Price You Actually Exit At: Bid/Ask Matters</h2>



<p class="wp-block-paragraph">Here’s the practical point:</p>



<p class="wp-block-paragraph"><strong>When you actually close a position, you don’t close at Mark Price.</strong></p>



<p class="wp-block-paragraph">You close at the market’s executable price:</p>



<ul class="wp-block-list">
<li><strong>For a long (buy) position</strong>, closing happens through the <strong>bid</strong> side (you sell into bids).</li>



<li><strong>For a short (sell) position</strong>, closing happens through the <strong>ask</strong> side (you buy back from asks).</li>
</ul>



<p class="wp-block-paragraph">So if you’re about to close, the most accurate thing to watch is the <strong>bid/ask</strong> (or the close preview), not just Unrealized PnL.</p>



<p class="wp-block-paragraph">Unrealized PnL is fine as a “quick glance” when you’re trading with room — but it should not be your only decision signal when precision matters.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">5) One More Important Warning: Don’t Play Chicken With Liquidation</h2>



<p class="wp-block-paragraph">Even though Mark Price exists to prevent unfair liquidations, you still should not “barely survive” liquidation zones.</p>



<p class="wp-block-paragraph">If you’re trading high leverage, isolated margin, or doing sleep trades with aggressive sizing, liquidation is not something you want to flirt with.</p>



<p class="wp-block-paragraph">Because once it happens, a big chunk of your funds can disappear instantly.</p>



<p class="wp-block-paragraph">If you want a practical approach to avoid throwing away around <strong>30% of your capital</strong> in liquidation situations, check the post below:</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Final Thoughts</h2>



<p class="wp-block-paragraph">If there’s one takeaway, it’s this:</p>



<p class="wp-block-paragraph"><strong>Unrealized PnL is not always “what you will actually get” when you close.</strong></p>



<p class="wp-block-paragraph">When you’re about to exit — especially in fast markets — keep your eyes on the real executable price (bid/ask) and treat Mark Price-based Unrealized PnL as a rough reference only.</p>
<p>게시물 <a href="http://charmmoney.com/ko/when-closing-selling-on-bitget-checking-only-this-can-cost-you-money/">When Closing (Selling) on Bitget, Checking Only This Can Cost You Money</a>이 <a href="http://charmmoney.com/ko/">charmmoney.com</a>에 처음 등장했습니다.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://charmmoney.com/ko/when-closing-selling-on-bitget-checking-only-this-can-cost-you-money/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 

Served from: charmmoney.com @ 2026-05-26 01:57:50 by W3 Total Cache
-->