mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-03-07 14:24:15 +00:00
Deployed 428d139 to develop in en with MkDocs 1.6.1 and mike 2.1.3
This commit is contained in:
@@ -699,6 +699,17 @@
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#crossmarketpairlist" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
|
||||
CrossMarketPairList
|
||||
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
@@ -2306,6 +2317,17 @@
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#crossmarketpairlist" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
|
||||
CrossMarketPairList
|
||||
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
@@ -2578,9 +2600,9 @@
|
||||
<h1 id="plugins">Plugins<a class="headerlink" href="#plugins" title="Permanent link">¶</a></h1>
|
||||
<h2 id="pairlists-and-pairlist-handlers">Pairlists and Pairlist Handlers<a class="headerlink" href="#pairlists-and-pairlist-handlers" title="Permanent link">¶</a></h2>
|
||||
<p>Pairlist Handlers define the list of pairs (pairlist) that the bot should trade. They are configured in the <code>pairlists</code> section of the configuration settings.</p>
|
||||
<p>In your configuration, you can use Static Pairlist (defined by the <a href="#static-pair-list"><code>StaticPairList</code></a> Pairlist Handler) and Dynamic Pairlist (defined by the <a href="#volume-pair-list"><code>VolumePairList</code></a> and <a href="#percent-change-pair-list"><code>PercentChangePairList</code></a> Pairlist Handlers).</p>
|
||||
<p>In your configuration, you can use Static Pairlist (defined by the <a href="#static-pair-list"><code>StaticPairList</code></a> Pairlist Handler) and Dynamic Pairlist (defined by the <a href="#volume-pair-list"><code>VolumePairList</code></a>, <a href="#crossmarketpairlist"><code>CrossMarketPairList</code></a>, <a href="#marketcappairlist"><code>MarketCapPairlist</code></a> and <a href="#percent-change-pair-list"><code>PercentChangePairList</code></a> Pairlist Handlers).</p>
|
||||
<p>Additionally, <a href="#agefilter"><code>AgeFilter</code></a>, <a href="#delistfilter"><code>DelistFilter</code></a>, <a href="#precisionfilter"><code>PrecisionFilter</code></a>, <a href="#pricefilter"><code>PriceFilter</code></a>, <a href="#shufflefilter"><code>ShuffleFilter</code></a>, <a href="#spreadfilter"><code>SpreadFilter</code></a> and <a href="#volatilityfilter"><code>VolatilityFilter</code></a> act as Pairlist Filters, removing certain pairs and/or moving their positions in the pairlist.</p>
|
||||
<p>If multiple Pairlist Handlers are used, they are chained and a combination of all Pairlist Handlers forms the resulting pairlist the bot uses for trading and backtesting. Pairlist Handlers are executed in the sequence they are configured. You can define either <code>StaticPairList</code>, <code>VolumePairList</code>, <code>ProducerPairList</code>, <code>RemotePairList</code>, <code>MarketCapPairList</code> or <code>PercentChangePairList</code> as the starting Pairlist Handler.</p>
|
||||
<p>If multiple Pairlist Handlers are used, they are chained and a combination of all Pairlist Handlers forms the resulting pairlist the bot uses for trading and backtesting. Pairlist Handlers are executed in the sequence they are configured. You can define either <code>StaticPairList</code>, <code>VolumePairList</code>, <code>ProducerPairList</code>, <code>RemotePairList</code>, <code>MarketCapPairList</code>, <code>PercentChangePairList</code> or <code>CrossMarketPairList</code> as the starting Pairlist Handler.</p>
|
||||
<p>Inactive markets are always removed from the resulting pairlist. Explicitly blacklisted pairs (those in the <code>pair_blacklist</code> configuration setting) are also always removed from the resulting pairlist.</p>
|
||||
<h3 id="pair-blacklist">Pair blacklist<a class="headerlink" href="#pair-blacklist" title="Permanent link">¶</a></h3>
|
||||
<p>The pair blacklist (configured via <code>exchange.pair_blacklist</code> in the configuration) disallows certain pairs from trading.
|
||||
@@ -2595,6 +2617,7 @@ You may also use something like <code>.*DOWN/BTC</code> or <code>.*UP/BTC</code>
|
||||
<li><a href="#producerpairlist"><code>ProducerPairList</code></a></li>
|
||||
<li><a href="#remotepairlist"><code>RemotePairList</code></a></li>
|
||||
<li><a href="#marketcappairlist"><code>MarketCapPairList</code></a></li>
|
||||
<li><a href="#crossmarketpairlist"><code>CrossMarketPairList</code></a></li>
|
||||
<li><a href="#agefilter"><code>AgeFilter</code></a></li>
|
||||
<li><a href="#delistfilter"><code>DelistFilter</code></a></li>
|
||||
<li><a href="#fulltradesfilter"><code>FullTradesFilter</code></a></li>
|
||||
@@ -2904,6 +2927,9 @@ If an incorrect category string is chosen, the plugin will print the available c
|
||||
<p class="admonition-title">Duplicate symbols in coingecko</p>
|
||||
<p>Coingecko often has duplicate symbols, where the same symbol is used for different coins. Freqtrade will use the symbol as is and try to search for it on the exchange. If the symbol exists - it will be used. Freqtrade will however not check if the <em>intended</em> symbol is the one coingecko meant. This can sometimes lead to unexpected results, especially on low volume coins or with meme coin categories.</p>
|
||||
</div>
|
||||
<h4 id="crossmarketpairlist">CrossMarketPairList<a class="headerlink" href="#crossmarketpairlist" title="Permanent link">¶</a></h4>
|
||||
<p>Generate or filter pairs based of their availability on the opposite market.</p>
|
||||
<p>The <code>pairs_exis_on</code> setting defines whether the pairs should exists on both spot and futures market (<code>both_markets</code>) or only exist on the specified trading mode (<code>current_market_only</code>). By default, the plugin will be in <code>both_markets</code> setting, which means whitelisted pairs have to exists on both spot and futures markets.</p>
|
||||
<h4 id="agefilter">AgeFilter<a class="headerlink" href="#agefilter" title="Permanent link">¶</a></h4>
|
||||
<p>Removes pairs that have been listed on the exchange for less than <code>min_days_listed</code> days (defaults to <code>10</code>) or more than <code>max_days_listed</code> days (defaults <code>None</code> mean infinity).</p>
|
||||
<p>When pairs are first listed on an exchange they can suffer huge price drops and volatility
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user