Add short signal to base strategy template

This commit is contained in:
Guillermo Rodríguez 2022-02-22 19:33:52 +01:00
parent c3c815e794
commit 95b63ea496

View File

@ -129,6 +129,13 @@ class {{ strategy }}(IStrategy):
(dataframe['volume'] > 0) # Make sure Volume is not 0
),
'enter_long'] = 1
# Uncomment to use shorts (remember to set margin in trading mode in configuration)
'''dataframe.loc[
(
{{ sell_trend | indent(16) }}
(dataframe['volume'] > 0) # Make sure Volume is not 0
),
'enter_short'] = 1'''
return dataframe
@ -145,5 +152,12 @@ class {{ strategy }}(IStrategy):
(dataframe['volume'] > 0) # Make sure Volume is not 0
),
'exit_long'] = 1
# Uncomment to use shorts (remember to set margin in trading mode in configuration)
'''dataframe.loc[
(
{{ buy_trend | indent(16) }}
(dataframe['volume'] > 0) # Make sure Volume is not 0
),
'exit_short'] = 1'''
return dataframe
{{ additional_methods | indent(4) }}