Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/amor71/LiuAlgoTrader
Browse files Browse the repository at this point in the history
  • Loading branch information
Amichay Oren committed Jan 10, 2023
2 parents 39d1380 + 11b1210 commit 3df7006
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Security Policy

## Supported Versions

Lastest version always updated with latest security patched

## Reporting a Vulnerability

email me at amor71 AT sgeltd.com to report and security issues.
6 changes: 3 additions & 3 deletions analysis/backtester_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from liualgotrader.common.data_loader import DataLoader # type: ignore

loop.run_until_complete(database.create_db_connection())
st.title(f"LiuAlgoTrading Framework")
st.title("LiuAlgoTrading Framework")
st.markdown("## **Visual Analysis tools**")

app = st.sidebar.selectbox("select app", ["analyzer"])
Expand Down Expand Up @@ -132,9 +132,9 @@
stop_price = []
daily_change = []
precent_vwap = []
resistance = None
support = None
for index, row in symbol_df.iterrows():
resistance = None
support = None
delta = (
row["price"]
* row["qty"]
Expand Down

0 comments on commit 3df7006

Please sign in to comment.