Update API to provide new values.
This commit is contained in:
parent
9ba11f7bcc
commit
3a06337601
@ -120,6 +120,8 @@ class Stats(BaseModel):
|
|||||||
class DailyRecord(BaseModel):
|
class DailyRecord(BaseModel):
|
||||||
date: date
|
date: date
|
||||||
abs_profit: float
|
abs_profit: float
|
||||||
|
rel_profit: float
|
||||||
|
starting_balance: float
|
||||||
fiat_value: float
|
fiat_value: float
|
||||||
trade_count: int
|
trade_count: int
|
||||||
|
|
||||||
|
@ -36,7 +36,8 @@ logger = logging.getLogger(__name__)
|
|||||||
# versions 2.xx -> futures/short branch
|
# versions 2.xx -> futures/short branch
|
||||||
# 2.14: Add entry/exit orders to trade response
|
# 2.14: Add entry/exit orders to trade response
|
||||||
# 2.15: Add backtest history endpoints
|
# 2.15: Add backtest history endpoints
|
||||||
API_VERSION = 2.15
|
# 2.16: Additional daily metrics
|
||||||
|
API_VERSION = 2.16
|
||||||
|
|
||||||
# Public API, requires no auth.
|
# Public API, requires no auth.
|
||||||
router_public = APIRouter()
|
router_public = APIRouter()
|
||||||
|
Loading…
Reference in New Issue
Block a user