mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-01-29 10:20:25 +00:00
Deployed cbbc386 to develop in en with MkDocs 1.6.1 and mike 2.1.3
This commit is contained in:
@@ -2263,10 +2263,12 @@ The configuration parameter <code>exchange.unknown_fee_rate</code> can be used t
|
||||
<p>Futures trading on bybit is currently supported for USDT markets, and will use isolated futures mode.</p>
|
||||
<p>On startup, freqtrade will set the position mode to "One-way Mode" for the whole (sub)account. This avoids making this call over and over again (slowing down bot operations), but means that changes to this setting may result in exceptions and errors.</p>
|
||||
<p>As bybit doesn't provide funding rate history, the dry-run calculation is used for live trades as well.</p>
|
||||
<p>API Keys for live futures trading must have the following permissions:
|
||||
* Read-write
|
||||
* Contract - Orders
|
||||
* Contract - Positions</p>
|
||||
<p>API Keys for live futures trading must have the following permissions:</p>
|
||||
<ul>
|
||||
<li>Read-write</li>
|
||||
<li>Contract - Orders</li>
|
||||
<li>Contract - Positions</li>
|
||||
</ul>
|
||||
<p>We do strongly recommend to limit all API keys to the IP you're going to use it from.</p>
|
||||
<div class="admonition warning">
|
||||
<p class="admonition-title">Unified accounts</p>
|
||||
@@ -2299,18 +2301,18 @@ It's therefore required to pass the UID as well.</p>
|
||||
<p class="admonition-title">Stoploss on Exchange</p>
|
||||
<p>Hyperliquid supports <code>stoploss_on_exchange</code> and uses <code>stop-loss-limit</code> orders. It provides great advantages, so we recommend to benefit from it.</p>
|
||||
</div>
|
||||
<p>Hyperliquid is a Decentralized Exchange (DEX). Decentralized exchanges work a bit different compared to normal exchanges. Instead of authenticating private API calls using an API key, private API calls need to be signed with the private key of your wallet.
|
||||
<p>Hyperliquid is a Decentralized Exchange (DEX). Decentralized exchanges work a bit different compared to normal exchanges. Instead of authenticating private API calls using an API key, private API calls need to be signed with the private key of your wallet (We recommend using an api Wallet for this, generated either on Hyperliquid or in your wallet of choice).
|
||||
This needs to be configured like this:</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="nt">"exchange"</span><span class="p">:</span><span class="w"> </span><span class="p">{</span>
|
||||
<span class="w"> </span><span class="nt">"name"</span><span class="p">:</span><span class="w"> </span><span class="s2">"hyperliquid"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"walletAddress"</span><span class="p">:</span><span class="w"> </span><span class="s2">"your_eth_wallet_address"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"privateKey"</span><span class="p">:</span><span class="w"> </span><span class="s2">"your_private_key"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"privateKey"</span><span class="p">:</span><span class="w"> </span><span class="s2">"your_api_private_key"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="c1">// ...</span>
|
||||
<span class="p">}</span>
|
||||
</code></pre></div>
|
||||
<ul>
|
||||
<li>walletAddress must be in hex format: <code>0x<40 hex characters></code>, and can be easily copied from your wallet.</li>
|
||||
<li>privateKey also must be in hex format: <code>0x<64 hex characters></code>, and can either be exported from your wallet or regenerated using your mnemonic phrase.</li>
|
||||
<li>walletAddress in hex format: <code>0x<40 hex characters></code> - Can be easily copied from your wallet - and should be your wallet address, not your API Wallet Address.</li>
|
||||
<li>privateKey in hex format: <code>0x<64 hex characters></code> - Use the key the API Wallet shows on creation.</li>
|
||||
</ul>
|
||||
<p>Hyperliquid handles deposits and withdrawals on the Arbitrum One chain, a Layer 2 scaling solution built on top of Ethereum. Hyperliquid uses USDC as quote / collateral. The process of depositing USDC on Hyperliquid requires a couple of steps, see <a href="https://hyperliquid.gitbook.io/hyperliquid-docs/onboarding/how-to-start-trading">how to start trading</a> for details on what steps are needed.</p>
|
||||
<div class="admonition note">
|
||||
@@ -2321,12 +2323,12 @@ Unfortunately, hyperliquid only offers 5000 historic candles, so backtesting wil
|
||||
<div class="admonition info">
|
||||
<p class="admonition-title">Some general best practices (non exhaustive)</p>
|
||||
<ul>
|
||||
<li>Beware of supply chain attacks, like pip package poisoning etcetera. However you export or (re-)generate your private key, make sure your environment is safe.</li>
|
||||
<li>Interact as little with the private key as possible. Store it in a separate file from the config.json (secrets.json for example) that you never have to touch, and secure it.</li>
|
||||
<li>Beware of supply chain attacks, like pip package poisoning etcetera. Whenever you use your private key, make sure your environment is safe.</li>
|
||||
<li>Don't use your actual wallet private key for trading. Use the Hyperliquid <a href="https://app.hyperliquid.xyz/API">API generator</a> to create a separate API wallet.</li>
|
||||
<li>Don't store your actual wallet private key on the server you use for freqtrade. Use the API wallet private key instead. This key won't allow withdrawals, only trading.</li>
|
||||
<li>Always keep your mnemonic phrase and private key private.</li>
|
||||
<li>Don't use the same mnemonic as the one you had to backup when initializing a hardware wallet, using the same mnemonic basically deletes the security of your hardware wallet.</li>
|
||||
<li>Create a different software wallet, only transfer the funds you want to trade with to that wallet, and use that wallet / private key to trade on Hyperliquid.</li>
|
||||
<li>Remember that if someone hacks the host you use for trading, or any other host you stored your private key / mnemonic on, you will lose the funds protected by that private key. That means the funds on that wallet and the funds deposited on Hyperliquid.</li>
|
||||
<li>Create a different software wallet, only transfer the funds you want to trade with to that wallet, and use that wallet to trade on Hyperliquid.</li>
|
||||
<li>If you have funds you don't want to use for trading (after making a profit for example), transfer them back to your hardware wallet.</li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -2336,7 +2338,7 @@ Unfortunately, hyperliquid only offers 5000 historic candles, so backtesting wil
|
||||
<ul>
|
||||
<li>The Ocean (exchange id: <code>theocean</code>) exchange uses Web3 functionality and requires <code>web3</code> python package to be installed:</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><span></span><code>$<span class="w"> </span>pip3<span class="w"> </span>install<span class="w"> </span>web3
|
||||
<div class="highlight"><pre><span></span><code>pip3<span class="w"> </span>install<span class="w"> </span>web3
|
||||
</code></pre></div>
|
||||
<h3 id="getting-latest-price-incomplete-candles">Getting latest price / Incomplete candles<a class="headerlink" href="#getting-latest-price-incomplete-candles" title="Permanent link">¶</a></h3>
|
||||
<p>Most exchanges return current incomplete candle via their OHLCV/klines API interface.
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -2,222 +2,222 @@
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/advanced-backtesting/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/advanced-hyperopt/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/advanced-orderflow/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/advanced-setup/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/backtesting/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/bot-basics/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/bot-usage/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/configuration/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/data-analysis/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/data-download/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/deprecated/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/developer/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/docker_quickstart/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/edge/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/exchanges/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/faq/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/freq-ui/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/freqai-configuration/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/freqai-developers/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/freqai-feature-engineering/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/freqai-parameter-table/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/freqai-reinforcement-learning/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/freqai-running/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/freqai/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/hyperopt/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/installation/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/leverage/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/lookahead-analysis/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/plotting/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/plugins/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/producer-consumer/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/recursive-analysis/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/rest-api/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/sql_cheatsheet/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/stoploss/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/strategy-101/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/strategy-advanced/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/strategy-callbacks/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/strategy-customization/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/strategy_analysis_example/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/strategy_migration/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/telegram-usage/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/trade-object/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/updating/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/utils/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/webhook-config/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/windows_installation/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/cors/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/pairlists/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/pricing/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/protections/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/release_template/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/showcase/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/strategy-imports/</loc>
|
||||
<lastmod>2024-11-28</lastmod>
|
||||
<lastmod>2024-11-30</lastmod>
|
||||
</url>
|
||||
</urlset>
|
||||
Binary file not shown.
Reference in New Issue
Block a user