refactor static methods to superclass
This commit is contained in:
parent
f9743b834c
commit
0122e9ed54
|
|
@ -8,11 +8,3 @@ class Abc(Strategy):
|
||||||
stop: float
|
stop: float
|
||||||
tp: float
|
tp: float
|
||||||
risk: float
|
risk: float
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def get_table_name():
|
|
||||||
return "Abc"
|
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def get_route_prefix():
|
|
||||||
return "/strategies/abc"
|
|
||||||
|
|
@ -5,4 +5,12 @@ class Strategy():
|
||||||
id: str
|
id: str
|
||||||
enabled: bool
|
enabled: bool
|
||||||
fulfilled: bool
|
fulfilled: bool
|
||||||
created: str
|
created: str
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def get_table_name(cls):
|
||||||
|
return cls.__name__
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def get_route_prefix(cls):
|
||||||
|
return "/strategies/" + cls.__name__.lower()
|
||||||
Loading…
Reference in New Issue