Editing
Derivatives
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'Option Payoff' (Call vs. Put):''' <syntaxhighlight lang="python"> def calculate_option_profit(strike_price, final_price, premium, option_type): """ Shows how much you make (or lose) on an option. """ if option_type == "Call": # Profit = Max(0, Price - Strike) - Cost raw_payoff = max(0, final_price - strike_price) else: # Put # Profit = Max(0, Strike - Price) - Cost raw_payoff = max(0, strike_price - final_price) return raw_payoff - premium # Scenario: Buy a Call on Apple at $150. Pay $5 premium. # Stock goes to $170. print(f"Profit if Stock=$170: ${calculate_option_profit(150, 170, 5, 'Call')}") # Stock goes to $140. print(f"Profit if Stock=$140: ${calculate_option_profit(150, 140, 5, 'Call')}") # Note: You only lose the premium ($5), not the whole stock price. </syntaxhighlight> ; Derivative Landmarks : '''The Tulip Mania (1630s)''' β The first recorded use of "Future" contracts for tulip bulbs, which led to a famous economic bubble. : '''Long-Term Capital Management (1998)''' β A hedge fund that nearly collapsed the global economy because its derivative models failed to predict a Russian debt crisis. : '''Credit Default Swaps (CDS)''' β Derivatives that acted as "Insurance on Bonds." During the 2008 crisis, these became "toxic" when the companies that sold the insurance (like AIG) couldn't pay. : '''VIX (The Fear Index)''' β A derivative that tracks the "Volatility" of the market; when investors are scared, the VIX goes up. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information