I wouldn't call this a course. My goal is zero fluff. I will jump right into my current watchlist, tell you the ThinkorSwim indicator that I'm using, and past trade setups to help you understand my swing trading strategy.
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Current week unless it's on a Friday then you can do the following week due to theta. It's a scalp/day trade so you don't want to go too far out on the date@Hypoluxa
Hi all. New member here and just started looking at the wealth of information on this site. Thank you Hypoluxa for your efforts. Been reviewing this thread and all those that have contributed. I'm in the early watching and learning stages. The indicators for this strategy seem pretty consistent. A nice trader's edge if you will. Quick question and my apologies if I missed it, but how far out are you placing the option trades? Current week or following? I get the .35 delta, but was wondering the length of time out. Thanks again!
since SPX has 3 expirations per week...I rarely select a current day expiration....the market makers screw with it so bad.@Hypoluxa
Hi all. New member here and just started looking at the wealth of information on this site. Thank you Hypoluxa for your efforts. Been reviewing this thread and all those that have contributed. I'm in the early watching and learning stages. The indicators for this strategy seem pretty consistent. A nice trader's edge if you will. Quick question and my apologies if I missed it, but how far out are you placing the option trades? Current week or following? I get the .35 delta, but was wondering the length of time out. Thanks again!
@king_louie @rad14733 Outstanding guidance, and yes Hypoluxa, all makes perfect sense. This certainly helps me for option trade planning! Thanks again to all!since SPX has 3 expirations per week...I rarely select a current day expiration....the market makers screw with it so bad.
Example:
Expirations are every Mon, Wed and Friday
On Mondays and Tuesdays, I use Wednesday. On Wednesday and Thursdays I choose Friday and on Fridays I use the next Monday.
I hope this makes sense.
Spot on! This goes with any stock when buying options!To add to what @king_louie stated, if you are new to scalping options be aware that the closer you get to expiration with weekly options, the greater the volatility and spread... For some symbols I won't trade Friday expiration weeklies past Wednesday, and Thursday at the very latest... By Friday there has usually been too much decay to get enough movement to be worthwhile, and even by Thursday for others... SPX options are a whole different beast due to multiple expirations, as @Hypoluxa pointed out...
@tom23824 Thanks for posting the screenshots. If you don't mind me asking, were you able to officially take the 3890 call trade? If so, what were your entry and exit points? Thanks again!
==I got no trade here==
==green==
@rfb@tom23824 Thanks for posting the screenshots. If you don't mind me asking, were you able to officially take the 3890 call trade? If so, what were your entry and exit points? Thanks again!
This setup isn't a "copy and paste" for any other stock....you can use the indicators to try and tweak it to a stock...but never trust it as it is.Does this strategy works for NDX?
FROM POST #1:Timeframe 5 mins works or it needs to be 10 mins, please advice?
Awesome strategy! Seems to require alot of screen time. I know there was brief discussion earlier about setting alerts. Has anyone been able to figure out how to set alerts in TOS once criteria is met? Thanks
# SPX Strategy
# Strategy designed by Hypoluxa
# barbaros - 2021/02/25
declare upper;
input price = close;
input SMAFastLength = 3;
input SMASlowLength = 9;
input BBlength = 30;
input BBNum_Dev = 0.8;
input BBCrossInBars = 3;
input BBCrossDistance = 1;
input MACDfastLength = 8;
input MACDslowLength = 16;
input MACDLength = 36;
input ERGODICLongLength = 2;
input ERGODICShortLength = 10;
input ERGODICSignalLength = 36;
input ERGODICAverageType = {"SIMPLE", default "EXPONENTIAL", "WEIGHTED", "WILDERS", "HULL"};
# Check for 10min chart
Assert(GetAggregationPeriod() == AggregationPeriod.TEN_MIN, "Incorrect Chart Time, use 10m");
# MACD
def MACD_Data = MACD(fastLength = MACDfastLength, slowLength = MACDslowLength, MACDLength = MACDLength);
def MACD_Direction = if MACD_Data > MACD_Data[1] then 1 else -1;
# Ergodic
def Ergodic_Data = ErgodicOsc("long length" = ERGODICLongLength, "short length" = ERGODICShortLength, "signal length" = ERGODICSignalLength, "average type" = ERGODICAverageType).ErgodicOsc;
# SMAs
def SMA_Fast = SimpleMovingAvg(price, SMAFastLength);
def SMA_Slow = SimpleMovingAvg(price, SMASlowLength);
# Signals
def buySignal = SMA_Fast > SMA_Slow and Ergodic_Data > 0 and MACD_Direction == 1 and MACD_Data >= BBCrossDistance and MACD_Data crosses above 0 within BBCrossInBars bars;
def sellSignal = SMA_Fast < SMA_Slow and Ergodic_Data < 0 and MACD_Direction == -1 and MACD_Data <= -BBCrossDistance and MACD_Data crosses below 0 within BBCrossInBars bars;
# Plots
plot buy = buySignal and !buySignal[1];
buy.setPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
buy.setDefaultColor(Color.GREEN);
buy.setLineWeight(3);
plot sell = sellSignal and !sellSignal[1];
sell.setPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
sell.setDefaultColor(Color.RED);
sell.setLineWeight(3);
# Alerts
Alert(buy, "Buy", Alert.BAR, Sound.Ring);
Alert(sell, "Sell", Alert.BAR, Sound.Ring);
Check out our Buy the Dip indicator and see how it can help you find profitable swing trading ideas. Scanner, watchlist columns, and add-ons are included.
Start a new thread and receive assistance from our community.
useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.
We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.
If you are new, or just looking for guidance, here are some helpful links to get you started.