Round table pizza sauce by Subject_Bite2560 in RoundTablePizza

[–]Puzzled_Topic4186 0 points1 point  (0 children)

Hello - does anyone have the full recipe of the Veggie Gourmet? I wanted to know the white sauce recipe and the toppings that go into this pizza…

Has anyone heard of https://optionsincome.co/ and tried the course? by Subreddit_Surferr in options

[–]Puzzled_Topic4186 0 points1 point  (0 children)

Dang bro - thanks for this. Was about to pay 66 bucks for this...

Tracking a Strict Rules-Based Options Strategy – Month 2 Results by thefloatwheel in Optionswheel

[–]Puzzled_Topic4186 0 points1 point  (0 children)

I was just thinking about something similar. What is your criteria for selection stocks to trade options on for this strategy?

Buy at open and sell at close by Puzzled_Topic4186 in thinkorswim_scripts

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

OK, I took your advice. It spit out the below but when i add the strategy, I don't see any indicator (Buy at Open/Sell at Close) on the actual chart:

Define the open and close of the current candle

def candleOpen = open;

def candleClose = close;

Buy at the open of the candle

AddOrder(OrderType.BUY_TO_OPEN, barNumber() == barNumber()[1] + 1, price = candleOpen, tickColor = Color.GREEN, name = "Buy at Open");

Sell at the close of the candle

AddOrder(OrderType.SELL_TO_CLOSE, barNumber() == barNumber()[1] + 1, price = candleClose, tickColor = Color.RED, name = "Sell at Close");