Skip to content

Commit

Permalink
Fix cloud backtest url
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin-Molinero committed Jul 12, 2022
1 parent a9ad935 commit 2794cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lean/models/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def get_url(self) -> str:
:return: a url which when visited opens an Algorithm Lab tab containing the backtest's results
"""
return f"https://www.quantconnect.com/terminal/#open/{self.projectId}/{self.backtestId}"
return f"https://www.quantconnect.com/project/{self.projectId}/{self.backtestId}"

def get_statistics_table(self) -> Table:
"""Converts the statistics into a pretty table.
Expand Down

0 comments on commit 2794cbb

Please sign in to comment.