add info text

This commit is contained in:
MuslemRahimi 2025-03-26 02:39:35 +01:00
parent eeb72f0fdc
commit acc3832318
2 changed files with 11 additions and 1 deletions

View File

@ -633,6 +633,16 @@ data = {
"pcRatio": { "pcRatio": {
"text": "The Put/Call Ratio (P/C Ratio) measures the volume of put options traded relative to call options. A higher ratio suggests more bearish sentiment, while a lower ratio indicates more bullish sentiment, helping traders gauge market outlook and investor sentiment." "text": "The Put/Call Ratio (P/C Ratio) measures the volume of put options traded relative to call options. A higher ratio suggests more bearish sentiment, while a lower ratio indicates more bullish sentiment, helping traders gauge market outlook and investor sentiment."
}, },
"dateExpiration": {
"text": "The expiration represents the expiration date of an options contract, indicating the last day the option can be exercised. Options lose value as they approach expiration, making this a crucial factor for traders assessing time decay and contract viability."
},
"optionType": {
"text": "The option type specifies whether an options contract is a Call or a Put. A Call option gives the holder the right to buy the underlying asset at a set price before expiration, while a Put option grants the right to sell, helping traders hedge risk or speculate on price movements."
},
"strikePrice": {
"text": "The strike price is the predetermined price at which the holder of an options contract can buy (Call) or sell (Put) the underlying asset. It plays a key role in determining an option's intrinsic value and profitability relative to the market price."
},
} }

View File

@ -101,7 +101,7 @@ if __name__ == "__main__":
res["Call"] = dict(sorted(res["Call"].items())) res["Call"] = dict(sorted(res["Call"].items()))
res["Put"] = dict(sorted(res["Put"].items())) res["Put"] = dict(sorted(res["Put"].items()))
if res: if res and res != {"Call": {}, "Put": {}}:
save_json(res, symbol) save_json(res, symbol)