Generating new strategy file

To get started, go the menu, and click on the "New Strategy" button:

new-strategy-menu-button

Then, give it a name. For example:

new-strategy-form

This will generate AwesomeStrategy class located at jesse/strategies/AwesomeStrategy/__init__.py including all the methods that are required to run the strategy:

from jesse.strategies import Strategy
from jesse import utils
import jesse.indicators as ta


class AwesomeStrategy(Strategy):
    def should_long(self):
        return False

    def should_short(self):
        return False

    def should_cancel_entry(self):
        return False

    def go_long(self):
        pass

    def go_short(self):
        pass