fix: Correct trade type display in trading journal
This commit is contained in:
parent
9642d78942
commit
3f0b10ed41
@ -314,6 +314,6 @@ def trading_journal_page():
|
||||
st.text(f"Strategy: {trade['strategy']}")
|
||||
if trade.get('notes'):
|
||||
st.text(f"Notes: {trade['notes']}")
|
||||
st.text(f"Type: {'Sell Order' if is_sell else 'Buy/Exit'}")
|
||||
st.text(f"Type: {'Sell Order' if is_sell else 'Buy'}")
|
||||
else:
|
||||
st.info("No trade history found")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user