본문 바로가기
카테고리 없음

코인 레버리지 청산

by wjdflgkrl 2025. 2. 6.
반응형

코인 레버리지 청산

코인 레버리지 청산

📌 코인 레버리지 청산

코인 레버리지 거래에서 **청산(Liquidation)**은 투자자가 설정한 증거금이 **최소 유지 증거금 이하로 감소**할 경우, 거래소에서 강제적으로 포지션을 정리하는 것을 의미합니다. 청산이 발생하면 **남아있는 증거금이 전부 사라지며, 큰 손실을 입을 수 있습니다.**

🔹 1. 코인 레버리지 청산이란?

레버리지 거래에서는 가격 변동으로 인해 **포지션을 유지하기 위한 증거금이 부족해지면** 강제 청산이 발생합니다. 이는 **레버리지가 높을수록 더 빠르게 발생**할 수 있습니다.

🔹 2. 청산이 발생하는 이유

  • 🔹 레버리지를 너무 높게 설정한 경우
  • 🔹 손절 라인을 설정하지 않은 경우
  • 🔹 시장 변동성이 큰 경우
  • 🔹 증거금이 부족하여 유지할 수 없는 경우

🔹 3. 거래소별 청산 시스템 비교

거래소 최대 레버리지 청산 방식
MEXC 200배 자동 청산 및 보험 펀드 운영
바이낸스 125배 강제 청산 후 추가 비용 없음
OKX 125배 청산 후 보험 펀드 보전
비트겟 125배 자동 청산 및 단계적 마진 조정

🔹 4. 청산을 피하는 방법

  • 낮은 레버리지(3~5배) 사용 → 고배율일수록 청산 위험 증가
  • 손절(S/L) 설정 → 예상 손실 한도를 미리 설정
  • 증거금(마진) 충분히 유지 → 변동성에 대비하여 추가 자금 확보
  • 펀딩비 고려 → 장기간 포지션 유지 시 발생하는 비용 체크

🔹 5. 코인 레버리지 거래소 추천

  • 🔹 MEXC: 최대 200배 레버리지 지원 가입하기
  • 🔹 바이낸스: 다양한 파생상품 제공
  • 🔹 OKX: 낮은 수수료 제공
  • 🔹 비트겟: 초보자 친화적인 인터페이스

🔹 6. 안전한 레버리지 거래를 위한 팁

  • ✅ 레버리지는 낮게 설정 (3~5배 추천)
  • ✅ 손절가 설정으로 청산 방지
  • ✅ 감정적인 매매 금지
반응형

/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js'; import {LargestContentfulPaint as ComputedLcp} from '../../computed/metrics/largest-contentful-paint.js'; const UIStrings = { /** Description of the Largest Contentful Paint (LCP) metric, which marks the time at which the largest text or image is painted by the browser. This is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */ description: 'Largest Contentful Paint marks the time at which the largest text or image is ' + `painted. [Learn more about the Largest Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)`, }; const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings); class LargestContentfulPaint extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'largest-contentful-paint', title: str_(i18n.UIStrings.largestContentfulPaintMetric), description: str_(UIStrings.description), scoreDisplayMode: Audit.SCORING_MODES.NUMERIC, supportedModes: ['navigation'], requiredArtifacts: ['HostUserAgent', 'Trace', 'DevtoolsLog', 'GatherContext', 'URL', 'SourceMaps'], }; } /** * @return {{mobile: {scoring: LH.Audit.ScoreOptions}, desktop: {scoring: LH.Audit.ScoreOptions}}} */ static get defaultOptions() { return { mobile: { // 25th and 13th percentiles HTTPArchive -> median and p10 points. // https://bigquery.cloud.google.com/table/httparchive:lighthouse.2020_02_01_mobile?pli=1 // https://web.dev/articles/lcp#what_is_a_good_lcp_score // see https://www.desmos.com/calculator/1etesp32kt scoring: { p10: 2500, median: 4000, }, }, desktop: { // 25th and 5th percentiles HTTPArchive -> median and p10 points. // SELECT // APPROX_QUANTILES(lcpValue, 100)[OFFSET(5)] AS p05_lcp, // APPROX_QUANTILES(lcpValue, 100)[OFFSET(25)] AS p25_lcp // FROM ( // SELECT CAST(JSON_EXTRACT_SCALAR(payload, "$['_chromeUserTiming.LargestContentfulPaint']") AS NUMERIC) AS lcpValue // FROM `httparchive.pages.2020_04_01_desktop` // ) scoring: { p10: 1200, median: 2400, }, }, }; } /** * @param {LH.Artifacts} artifacts * @param {LH.Audit.Context} context * @return {Promise} */ static async audit(artifacts, context) { const trace = artifacts.Trace; const devtoolsLog = artifacts.DevtoolsLog; const gatherContext = artifacts.GatherContext; const metricComputationData = { trace, devtoolsLog, gatherContext, settings: context.settings, URL: artifacts.URL, SourceMaps: artifacts.SourceMaps, simulator: null, }; const metricResult = await ComputedLcp.request(metricComputationData, context); const options = context.options[context.settings.formFactor]; return { score: Audit.computeLogNormalScore( options.scoring, metricResult.timing ), scoringOptions: options.scoring, numericValue: metricResult.timing, numericUnit: 'millisecond', displayValue: str_(i18n.UIStrings.seconds, {timeInMs: metricResult.timing}), }; } } export default LargestContentfulPaint; export {UIStrings};