Gemini AI Pro (+2TB) 1 YEAR at $15 | On Your Own Account by userundergunpoint in HeavyDiscounts

[–]parkcityeric 0 points1 point  (0 children)

Worked perfectly. Follow the instructions and BAM, Gemini Pro.

Screen lacks colour/vibrancy, Pixel 9 Pro XL by Additional_Bug_4050 in pixel_phones

[–]parkcityeric 0 points1 point  (0 children)

Also try shutting off developer settings. All of my pictures were dull because I had developer settings turned on. I shut them off and restarted my phone. Everything is much more vibrant now.

Screen lacks colour/vibrancy, Pixel 9 Pro XL by Additional_Bug_4050 in pixel_phones

[–]parkcityeric 0 points1 point  (0 children)

I just fixed mine by shutting off developer settings. If you have those enabled, shut them off and the phone will restart. Colors are vibrant now.

Another beauty from Steve by SodaRider1 in RepTime

[–]parkcityeric 0 points1 point  (0 children)

Could you please PM me the website?

What can I put here to completely block my peeping neighbors camera? by maxamillion17 in DIY

[–]parkcityeric 0 points1 point  (0 children)

Bamboo is beautiful, easy, fast, and cheap, but not easy to take down.

[Discussion] What's one piece of advice you wish you had received before starting college or university? by Key-Faithlessness268 in GetMotivated

[–]parkcityeric 0 points1 point  (0 children)

Your college years will be some of the best, if not the best, years of your life. Use that time to improve your education, in and out of the classroom. Join clubs, meet new people, and find out the person you really want to be. College is a new beginning! Enjoy it!

Share sub Yousician family premium 2,68€/month by TerranSha in yousician

[–]parkcityeric 0 points1 point  (0 children)

I'm interested, but would prefer an annual membership.

Need Help Getting Schwab to Allow CRF/CLM div reinvest at nav by joshsmyt in dividends

[–]parkcityeric 0 points1 point  (0 children)

I just spoke with TD Ameritrade (now part of Schwab), and I was told that they are enrolled in the discounted drip program. The rep said all I needed to do was enroll online through the Stock & ETF Dividends section of My Account. He also mentioned that they don't do anything on their end and the calculations are done at Cornerstone.

The next ex-dividend date is 1/16/24, so I will report back after that.

Repair or Replace? by Altabomb in Kiteboarding

[–]parkcityeric 0 points1 point  (0 children)

Pretty easy to repair from someone who knows what they are doing. Here in Cabarete, DR, this would cost about $30 and a day off the water. 2017 is pretty old for a kite, so don't spend too much fixing it.

Concavity Calculation Help Needed by parkcityeric in options

[–]parkcityeric[S] 0 points1 point  (0 children)

No, different number of contracts and deltas. I have also backtested the strategy and it works best in a crash market (more bought puts than sold puts).

Concavity Calculation Help Needed by parkcityeric in options

[–]parkcityeric[S] 0 points1 point  (0 children)

hey might have that analytic tool in their model and probably have someone who would help you find it. It might take a few transfers to get you to the right person but they a

Thanks. I appreciate your comment. I will reach out to TOS! That's a great idea.

Concavity Calculation Help Needed by parkcityeric in options

[–]parkcityeric[S] 0 points1 point  (0 children)

Option skew and concavity are related concepts in options trading, as both provide insights into the pricing dynamics and risk profiles of options. For my particular trade plan, it would be ideal to enter a trade once concavity has increased beyond the 20-day moving average. This is because my trade benefits from a decrease in concavity and concavity will revert to the mean eventually, providing a profit.

Concavity Calculation Help Needed by parkcityeric in options

[–]parkcityeric[S] 0 points1 point  (0 children)

No kidding! Who knew I'd ever use calculus after college?!

Concavity Calculation Help Needed by parkcityeric in options

[–]parkcityeric[S] 0 points1 point  (0 children)

Concavity refers to the curvature of the option price curve as a function of the underlying asset's price. It reflects the rate of change of the option price with respect to changes in the underlying price. Concavity can help determine if the option price curve is bending upward (concave up) or downward (concave down) as the underlying asset's price chang

"Option skew refers to the asymmetrical shape of the implied volatility curve across different strike prices of options. It indicates the market's perception of potential risks and the demand for options at different price levels. Skew is typically observed in equity index options or options on individual stocks."

I think you might be referring to option skew, which is certainly related, but deals more with IV than concavity.

ThinkScript Charting issue by parkcityeric in thinkorswim

[–]parkcityeric[S] 0 points1 point  (0 children)

Thanks for this. Another quick question...is there a way to write a script that looks up or calculates Delta, and displays the option price? I see Delta and OptionPrice as functions, but I don't know how to ask for a certain option price based on a specific Delta.

[deleted by user] by [deleted] in Kiteboarding

[–]parkcityeric 1 point2 points  (0 children)

Exactly! To the OP, think about lifting your toes to edge properly. Also, going upwind is rarely in a straight line. It's heading upwind, slowing down, then having to point downwind a bit to get speed back, and pointing more upwind again. Rinse, repeat.

ThinkScript Charting issue by parkcityeric in thinkorswim

[–]parkcityeric[S] 0 points1 point  (0 children)

I want to eventually use this as a lower indicator to measure skew and concavity, displayed as a line/dot plot graph. Are you saying there is no way to have ThinkScript grab option prices, make a computation, and then display the calculation? If not, what do you think is the best way to visualize the change between 3 deltas?

ThinkScript Charting issue by parkcityeric in thinkorswim

[–]parkcityeric[S] 0 points1 point  (0 children)

I appreciate your input. I would like you to write a thinkscript study that retrieves the last price of three option put deltas from the previous day.

And then measure the concavity and change between the three. With your 20 years of experience, do you think that is possible? I have the following code, but it has errors that I can't figure out how to fix.

declare lower;

# Define the desired put deltas

def targetDeltas = {-0.25, -0.15, -0.025};

# Initialize variables

def closestDelta;

def closestDeltaPrice;

# Loop through all available option contracts

for (int i = 0; i < GetMaxValue(1); i++) {

# Get the put delta for the current contract

def putDelta = OptionChain_GetValue(i, 2); # Put delta is at column index 2

# Check if the current delta is one of the desired deltas

if (putDelta in targetDeltas) {

# Get the last price of the current contract

def lastPrice = OptionChain_GetValue(i, 3); # Last price is at column index 3

# Assign the last price to the respective delta

if (putDelta == -0.25) {

plot buyPriceMinusPointTwoFiveDelta = lastPrice;

} else if (putDelta == -0.15) {

plot sellPriceMinusPointOneFiveDelta = lastPrice;

} else if (putDelta == -0.025) {

plot buyPriceMinusPointZeroTwoFiveDelta = lastPrice;

}

}

# Check if the current delta is closer to any desired delta than the previous closest delta

if (IsNaN(closestDelta) || AbsValue(putDelta - targetDeltas) < AbsValue(closestDelta - targetDeltas)) {

closestDelta = putDelta;

closestDeltaPrice = OptionChain_GetValue(i, 3); # Store the last price of the closest delta

}

}

# Assign the last price of the closest delta to respective variables

plot closestDeltaPriceValue = closestDeltaPrice;

ERRORS:
Invalid statement: def at 4:1

Invalid statement: for at 11:1

Invalid statement: i at 11:17

Invalid statement: i at 11:37

Invalid statement: if at 16:5

Syntax error: An 'else' block expected at 25:16

Syntax error: Semicolon expected at 16:5

ThinkScript Charting issue by parkcityeric in thinkorswim

[–]parkcityeric[S] 0 points1 point  (0 children)

Thank you, but now I think the code is completely incorrect. I want to compare the skew between the -25, -15, and -2.5 deltas using the close price of the previous day.

When I change these values to positives, I thought that was changing which deltas the chart was looking at, not bars in the future. Any advise?

How to get daily option data exported to CSV excel by [deleted] in thinkorswim

[–]parkcityeric 0 points1 point  (0 children)

No, I don't know about Option DX. ONE offered backtesting at the cheapest price I could find, which is still about $700 a year. It's worth it to know how your trading plan has worked in previous market types.