Improve comments in the SampleStrategy; set use_sell_signal = True

This commit is contained in:
hroff-1902 2019-10-08 01:07:22 +03:00
parent e78e42339d
commit 4d062d41cb

View File

@ -27,12 +27,12 @@ class SampleStrategy(IStrategy):
- the prototype for the methods: minimal_roi, stoploss, populate_indicators, populate_buy_trend, - the prototype for the methods: minimal_roi, stoploss, populate_indicators, populate_buy_trend,
populate_sell_trend, hyperopt_space, buy_strategy_generator populate_sell_trend, hyperopt_space, buy_strategy_generator
""" """
# Strategy intervace version - allow new iterations of the strategy interface. # Strategy interface version - allow new iterations of the strategy interface.
# Check the documentation or the Sample strategy to get the latest version. # Check the documentation or the Sample strategy to get the latest version.
INTERFACE_VERSION = 2 INTERFACE_VERSION = 2
# Minimal ROI designed for the strategy. # Minimal ROI designed for the strategy.
# This attribute will be overridden if the config file contains "minimal_roi" # This attribute will be overridden if the config file contains "minimal_roi".
minimal_roi = { minimal_roi = {
"40": 0.0, "40": 0.0,
"30": 0.01, "30": 0.01,
@ -40,27 +40,27 @@ class SampleStrategy(IStrategy):
"0": 0.04 "0": 0.04
} }
# Optimal stoploss designed for the strategy # Optimal stoploss designed for the strategy.
# This attribute will be overridden if the config file contains "stoploss" # This attribute will be overridden if the config file contains "stoploss".
stoploss = -0.10 stoploss = -0.10
# trailing stoploss # Trailing stoploss
trailing_stop = False trailing_stop = False
# trailing_stop_positive = 0.01 # trailing_stop_positive = 0.01
# trailing_stop_positive_offset = 0.0 # Disabled / not configured # trailing_stop_positive_offset = 0.0 # Disabled / not configured
# Optimal ticker interval for the strategy # Optimal ticker interval for the strategy.
ticker_interval = '5m' ticker_interval = '5m'
# run "populate_indicators" only for new candle # Run "populate_indicators()" only for new candle.
process_only_new_candles = False process_only_new_candles = False
# Experimental settings (configuration will overide these if set) # These values can be overridden in the "ask_strategy" section in the config.
use_sell_signal = False use_sell_signal = True
sell_profit_only = False sell_profit_only = False
ignore_roi_if_buy_signal = False ignore_roi_if_buy_signal = False
# Optional order type mapping # Optional order type mapping.
order_types = { order_types = {
'buy': 'limit', 'buy': 'limit',
'sell': 'limit', 'sell': 'limit',
@ -68,7 +68,7 @@ class SampleStrategy(IStrategy):
'stoploss_on_exchange': False 'stoploss_on_exchange': False
} }
# Optional order time in force # Optional order time in force.
order_time_in_force = { order_time_in_force = {
'buy': 'gtc', 'buy': 'gtc',
'sell': 'gtc' 'sell': 'gtc'