<< All versions
Skill v1.0.0
currentAutomated scan100/100mkurman/zorai/freqtrade
──Details
PublishedJuly 29, 2026 at 12:09 PM
Content Hashsha256:ba1d6b28c3fa1246...
Git SHAd0acbfaf3d62
──Files
Files (1 file, 1.4 KB)
SKILL.md1.4 KBactive
SKILL.md · 47 lines · 1.4 KB
version: "1.0.0" name: freqtrade description: "Open-source crypto trading bot. Strategy development in Python, backtesting, hyperparameter optimization, dry-run and live trading. Supports major exchanges via CCXT. Telegram integration for monitoring." tags: [crypto, trading-bot, backtesting, automation, strategy, ccxt, zorai]
Overview
Freqtrade is an open-source crypto trading bot written in Python. Supports strategy development, backtesting, hyperparameter optimization, and dry-run or live trading via 100+ exchange backends (CCXT).
Installation
bash
git clone https://github.com/freqtrade/freqtrade.gitcd freqtradeuv pip install -e .
Strategy
python
from freqtrade.strategy import IStrategyclass MyStrategy(IStrategy):timeframe = "1h"minimal_roi = {"0": 0.01}stoploss = -0.05def populate_indicators(self, dataframe, metadata):dataframe["rsi"] = 100 - (100 / (1 + dataframe["close"] / dataframe["close"].shift(14)))return dataframedef populate_buy_trend(self, dataframe, metadata):dataframe.loc[(dataframe["rsi"] < 30) & (dataframe["volume"] > 0), "buy"] = 1return dataframe
Run
bash
freqtrade backtesting --strategy MyStrategy --timerange 20240101-20241231freqtrade trade --strategy MyStrategy --dry-run