def load_ipython_extension(ipython): """call by ipython""" from rqalpha.mod.utils import inject_mod_commands inject_mod_commands() ipython.register_magic_function(run_ipython_cell, 'line_cell', 'rqalpha')
def entry_point(): from rqalpha.mod.utils import inject_mod_commands inject_mod_commands() from rqalpha.cmds import cli cli(obj={})