40 lines
708 B
Python
40 lines
708 B
Python
|
|
def names(event, context):
|
|
"""
|
|
returns the names of all registered strategies, but public and private
|
|
:param event:
|
|
:param context:
|
|
:return:
|
|
"""
|
|
pass
|
|
|
|
|
|
def performance(event, context):
|
|
"""
|
|
returns the performance of the specified strategy
|
|
:param event:
|
|
:param context:
|
|
:return:
|
|
"""
|
|
pass
|
|
|
|
|
|
def code(event, context):
|
|
"""
|
|
returns the code of the requested strategy, if it's public
|
|
:param event:
|
|
:param context:
|
|
:return:
|
|
"""
|
|
pass
|
|
|
|
|
|
def submit(event, context):
|
|
"""
|
|
combiles the given strategy and stores it in the internal database
|
|
:param event:
|
|
:param context:
|
|
:return:
|
|
"""
|
|
pass
|