luisotorres
commited on
Commit
•
b39e82b
1
Parent(s):
475212a
Update app.py
Browse files
app.py
CHANGED
@@ -194,7 +194,7 @@ st.write(f"""**• Strike Price (Put):** Strike price for the put option.""")
|
|
194 |
st.write(f"""**• Premium (Call):** Premium paid for the call option.""")
|
195 |
st.write(f"""**• Premium (Put):** Premium paid for the put option.""")
|
196 |
|
197 |
-
ticker = st.text_input("Ticker", placeholder="Enter the symbol for the
|
198 |
strike_call = st.number_input("Strike Price (Call)", min_value=0.0, format="%f")
|
199 |
strike_put = st.number_input("Strike Price (Put)", min_value=0.0, format="%f")
|
200 |
premium_call = st.number_input("Premium (Call)", min_value=0.0, format="%f")
|
|
|
194 |
st.write(f"""**• Premium (Call):** Premium paid for the call option.""")
|
195 |
st.write(f"""**• Premium (Put):** Premium paid for the put option.""")
|
196 |
|
197 |
+
ticker = st.text_input("Ticker", placeholder="Enter the symbol for the underlying asset.")
|
198 |
strike_call = st.number_input("Strike Price (Call)", min_value=0.0, format="%f")
|
199 |
strike_put = st.number_input("Strike Price (Put)", min_value=0.0, format="%f")
|
200 |
premium_call = st.number_input("Premium (Call)", min_value=0.0, format="%f")
|