メインコンテンツへスキップ

Documentation Index

Fetch the complete documentation index at: https://docs.injective.network/llms.txt

Use this file to discover all available pages before exploring further.

マーケットの最小価格Tick Size

最小マーケット価格tick sizeは、注文価格が増減できる最小単位を定義します。例えば、あるマーケットの最小価格tick sizeが 0.001 である場合、価格 0.0011 で提出された注文は、許容される増分に一致しないため拒否されます。
Note: 価格tick sizeの計算式は、spotマーケットとderivativeマーケットで異なります。

Spotマーケット

Human-Readableフォーマットからチェーンフォーマットへの変換

18 base decimals6 quote decimals を持つINJ/USDTマーケットを例とすると、チェーンフォーマットへの変換は以下の通りです: chainFormat=value×10(quoteDecimalsbaseDecimals)\text{chainFormat} = \text{value} \times 10^{(\text{quoteDecimals} - \text{baseDecimals})}

チェーンフォーマットからHuman-Readableフォーマットへの変換

human-readableフォーマットへ戻すには: humanReadableFormat=value×10(baseDecimalsquoteDecimals)\text{humanReadableFormat} = \text{value} \times 10^{(\text{baseDecimals} - \text{quoteDecimals})}

Derivativeマーケット

Human-Readableフォーマットからチェーンフォーマットへの変換

6 quote decimals を持つINJ/USDT perpetualマーケットを例とすると、チェーンフォーマットへの変換は以下の通りです: chainFormat=value×10quoteDecimals\text{chainFormat} = \text{value} \times 10^{-\text{quoteDecimals}}

チェーンフォーマットからHuman-Readableフォーマットへの変換

human-readableフォーマットへ戻すには: humanReadableFormat=value×10quoteDecimals\text{humanReadableFormat} = \text{value} \times 10^{-\text{quoteDecimals}} また、concepts も併せてご確認ください。
Last modified on May 14, 2026