I'm late to the party, but this what NextSignal Doc had on his twitter that I came across while browsing his blog. Not sure why the page is dead now:
7 days agoTo identify the high
GEX strike for the strategy, you can simply add a custom
column to the options chain. Here's the code I use. If you don't know how to add a custom
column in Thinkorswim ... Google is your friend. (I'm not teaching or supporting on this.) No advice. 12:16 PM · Sep 10, 2022·Twitter Web App, Retweets, MattGTheJeweler,
Code:
# Gamma Exposure at each strike is calculated by the formula option gamma * open interestRate * 100 (calls, x-100 for puts)
plot data = if IsPut() then ceil(gamma() * -100 * open_interest ()) else ceil(gamma() * 100 * open_interest());
I added to my columns and I have nice fat positive and negative numbers (on the put side). I guess this is how you use it:
I also grabbed his Gaming Gamma code - will post if anyone wants it:
Still trying to figure out how to include it in my strategy: Looks that pic in the above tweet the volume studies may be custom? Couldn't find any defaults. Here's what I have with his Adaptive Moving Avg study as well: