The "InformativeSample" strategy is an example strategy that uses informative pairs to compare a stake currency with USDT. It is not a high-performing strategy but serves as a demonstration of how to use a referential pair against USDT. Key Features:
Minimal ROI: The strategy defines a minimal ROI (Return on Investment) for different time periods.
Stoploss: The strategy sets an optimal stop loss value.
Timeframe: The strategy operates on 5-minute candlesticks.
Trailing Stoploss: The strategy includes a trailing stop loss feature. TA Indicators: The strategy uses several technical analysis (TA) indicators, including exponential moving averages (EMA) with different time periods. Informative Pairs: The strategy retrieves OHLCV (Open, High, Low, Close, Volume) data for an informative pair (BTC/USDT) at a 15-minute interval and calculates the simple moving average (SMA) on the informative pair. Buy Signal: The strategy generates a buy signal when the 20-period EMA crosses above the 50-period EMA and the stake/USDT price is above the 20-period SMA of the informative pair. Sell Signal: The strategy generates a sell signal when the 20-period EMA crosses below the 50-period EMA and the stake/USDT price is below the 20-period SMA of the informative pair. The strategy can be executed by running the command "python3 freqtrade -s InformativeSample" in the terminal. Note: The strategy includes additional configuration options and experimental settings that can be customized or overridden in the configuration file.