Business & Investing
Sponsored by

Stock Markets

23,988,205 Views | 231573 Replies | Last: 1 hr ago by Swollen Thumb
Brian Earl Spilner
How long do you want to ignore this user?
AG
Anyone in BDTX?
$30,000 Millionaire
How long do you want to ignore this user?
AG
Quite the squeeze here.
$30,000 Millionaire
How long do you want to ignore this user?
AG
rally days end with what?
wanderer
How long do you want to ignore this user?
$30,000 Millionaire said:

rally days end with what?
Prog posting something jiggling??
Socialism Sucks
How long do you want to ignore this user?
AG
$30,000 Millionaire said:

rally days end with what?
One last push to resistance and then dump into close.
oldarmy1
How long do you want to ignore this user?
AG
FYI

$30,000 Millionaire
How long do you want to ignore this user?
AG
should have gone 10 points higher.
$30,000 Millionaire
How long do you want to ignore this user?
AG
trying to get XSP 437C for 0.70
$30,000 Millionaire
How long do you want to ignore this user?
AG
they gave me 1. LOL. $13
wanderer
How long do you want to ignore this user?
If I'm understanding the lingo correctly. MT on today's move is $50.11 and 7/21 $53c should be going for ~.90.



oldarmy1
How long do you want to ignore this user?
AG
Correct!
$30,000 Millionaire
How long do you want to ignore this user?
AG
a kid I work with that has figured out I trade stocks told me that he is trying to short AAPL. I asked him what the hell was wrong with him.
BaylorSpineGuy
How long do you want to ignore this user?
$30,000 Millionaire said:

a kid I work with that has figured out I trade stocks told me that he is trying to short AAPL. I asked him what the hell was wrong with him.


$3T AAPL might be the short signal but that's risky business!
Brian Earl Spilner
How long do you want to ignore this user?
AG
At this point I'm regretting taking a bit of my AAPL profits earlier this month.

Then again, I sold a similar amount of GOOGL and it's dropped like 4%, so it evens out.
Brian Earl Spilner
How long do you want to ignore this user?
AG
I grabbed some more UNG today.
E
How long do you want to ignore this user?
AG
NVDA with some bad news AH
FJ43
How long do you want to ignore this user?
I set an alert for $50.30. That's when I'll look. Also set the July calls to my watch list so I don't have to fumble through the phone app during meetings.
Wealth gained hastily will dwindle. but whoever gathers little by little will increase it.
Proverbs 13:11

techno-ag
How long do you want to ignore this user?
AG
BITX climbing a bit in after hours. This is the 2x leveraged Bitcoin ETF that debuted today not the BlackRock one awaiting approval.
cgh1999
How long do you want to ignore this user?
AG
Philip J Fry
How long do you want to ignore this user?
AG
Been playing around with my Pine Script:

Quote:


//@version=4
strategy("PPO Angle Strategy with Modified Sell Condition", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=100, process_orders_on_close=true)

startYear = input(2022, "Start Year")
startMonth = input(12, "Start Month")
startDay = input(1, "Start Day")
endYear = year(time)
endMonth = month(time)
endDay = dayofmonth(time)

// Date range condition
dateRangeCondition = time >= timestamp(startYear, startMonth, startDay, 0, 0) and time <= timestamp(endYear, endMonth, endDay, 23, 59)

// Input parameters for PPO
ppoFastLength = input(21, title="PPO Fast Length")
ppoSlowLength = input(52, title="PPO Slow Length")
ppoSignalLength = input(9, title="PPO Signal Length")
minPpoSignalDistance = input(0.1, title="Minimum Distance Between PPO and Signal Lines", type=input.float)
minAngleDifference = input(2, title="Minimum Angle Difference (Degrees)", type=input.integer)
stopLossPct = input(20, title="Stop Loss %", type=input.integer)
emainput = input(100, title="EMA XXX support line", type=input.integer)

// Inputs
ema1Period = input(title="EMA #1 Period", type=input.integer, defval=5)
ema2Period = input(title="EMA #2 Period", type=input.integer, defval=50)
ema3Period = input(title="EMA #3 Period", type=input.integer, defval=200)
//emaCrossOverBBPeriod = input(title="EMA Cross Over BB Period", type=input.integer, defval=10)

// Calculate EMAs
ema1 = ema(close, ema1Period)
ema2 = ema(close, ema2Period)
ema3 = ema(close, ema3Period)

// Plot EMAs
plot(ema1, color=color.blue, title="EMA 1")
plot(ema2, color=color.yellow, title="EMA 2")
plot(ema3, color=color.red, title="EMA 3")

// Calculate PPO
ppo = ema(close, ppoFastLength) - ema(close, ppoSlowLength)
ppoSignal = ema(ppo, ppoSignalLength)

// Calculate EMA 50
ema = ema(close, emainput)
emaSlope = ema - ema[1]
emaSlopePositive = emaSlope > 0
emaSlopeNegative = emaSlope < 0
priceBelowEma = close < ema
priceAboveEma = close > ema

// Calculate slopes and angle differences
ppoSlope = ppo - ppo[1]
ppoSignalSlope = ppoSignal - ppoSignal[1]
ppoAngle = atan(ppoSlope) * 180 / (math.pi)
ppoSignalAngle = atan(ppoSignalSlope) * 180 / (math.pi)
angleBetweenLines = acos((ppoSlope * ppoSignalSlope + ppoSlope[1] * ppoSignalSlope[1]) / (sqrt(pow(ppoSlope, 2) + pow(ppoSlope[1], 2)) * sqrt(pow(ppoSignalSlope, 2) + pow(ppoSignalSlope[1], 2)))) * 180 / math.pi

// Stop loss
stopLoss = strategy.position_avg_price * (1 - stopLossPct / 100)

// Calculate Bollinger Bands
length = 20
mult = 2.0
basis = sma(close, length)
dev = mult * stdev(close, length)
upperband = basis + dev
lowerband = basis - dev

// Define long entry and exit conditions
enterLong = dateRangeCondition and (priceAboveEma and crossover(ppo, ppoSignal) or (ppoSlope > 0 and ppoAngle > minAngleDifference and crossover(ppo, ppoSignal) and (ppo < 0 )))

// Define sell condition
exitLong = dateRangeCondition and ((ppo < (ppoSignal - minPpoSignalDistance) or close<stopLoss))

// Define buy and sell signals
buySignal = enterLong and bar_index > 0
sellSignal = exitLong

// Plot buy signal as a solid green square with a "BUY" label, and sell signal as a solid red square with a "SELL" label
buySignalLabel = buySignal and strategy.position_size == 0
sellSignalLabel = sellSignal and strategy.position_size > 0

plotshape(buySignalLabel, style=shape.labelup, location=location.belowbar, color=color.green, size=size.normal, text="Buy", textcolor=color.white, offset=0)
plotshape(sellSignalLabel, style=shape.labeldown, location=location.abovebar, color=color.red, size=size.normal, text="Sell", textcolor=color.white, offset=0)

if buySignal and strategy.position_size == 0
strategy.entry("Long Entry", strategy.long)

if sellSignal and strategy.position_size > 0
strategy.close("Long Entry")

plot(ema, color=color.blue, title="EMA Support")

// Plot the values of the variables in the data window
plotchar(priceAboveEma, "priceAboveEma", "", location.top, size=size.tiny)
plotchar(ppo, "PPO", "", location.top, size=size.tiny)
plotchar(ppoSignal, "PPO Signal", "", location.top, size=size.tiny)
plotchar(ppoSlope, "PPO Slope", "", location.top, size=size.tiny)
plotchar(ppoSignalAngle, "PPO Angle", "", location.top, size=size.tiny)
plotchar(ema, "EMA", "", location.top, size=size.tiny)
plotchar(emaSlope, "EMA Slope", "", location.top, size=size.tiny)
plotchar(close, "Close", "", location.top, size=size.tiny)
plotchar(stopLoss, "stoploss", "", location.top, size=size.tiny)
plotchar(strategy.position_size, "Position Size", "", location.top, size=size.tiny)
plotchar(strategy.position_avg_price, "Position Avg Price", "", location.top, size=size.tiny)





Set it to the 30 minute chart for this code and look at UPRO. 78% win rate and +42% profit since 12/1/2022.

This code uses PPO (similar to MACD, but it's been normalized so that you can compare PPO against other stocks) and the angle between the PPO an PPO Signal line as well as distance between the two. What we are trying to do here is filter out the noise. Sometimes the PPO would interweave with the signal line and create false buy/sell signals. With the angle setting, we are trying to capture strong moves. Same with the distance setting.

One thing I've learned about the MACD through all this is that your win rate is highly sensitive to your settings and that the standard settings aren't usually the most profitable. Also found that it works better on some stocks than others. For instance, it works well with UPRO, but horribly with DNN. Check it out and tell me what you think could be better.
agdaddy04
How long do you want to ignore this user?
AG
E said:

NVDA with some bad news AH

What is it?
BaylorSpineGuy
How long do you want to ignore this user?
agdaddy04 said:

E said:

NVDA with some bad news AH

What is it?


Looks like it's similar rehashing to what NVDA bottomed on in October if I recall, namely that Biden admin is discussing limiting chips to China or some such.
$30,000 Millionaire
How long do you want to ignore this user?
AG
Perfect set up for a trap day. I'm personally waiting to see what j Pow says.
permabull
How long do you want to ignore this user?
AG
$30,000 Millionaire said:

a kid I work with that has figured out I trade stocks told me that he is trying to short AAPL. I asked him what the hell was wrong with him.


I guess I am technically short AAPL. I don't like having over 10% of my net worth in a single company and YTD AAPL has gone from 7-8% to 12-13% and that doesn't even take into account how much I hold in my index funds.

So I have a covered call for next Friday at $192.5 and another for the week after that $195. Just going to keep selling calls above my price target till I get called out a few times and everything balances out.
$30,000 Millionaire
How long do you want to ignore this user?
AG
That's a lot different than "hey man I'm buying this weeks puts on Apple".
$30,000 Millionaire
How long do you want to ignore this user?
AG
I asked the dude to show me the setup to short it. Of course there isn't one.
pumpjack2
How long do you want to ignore this user?
AG
pumpjack2 said:

Took SQSP August calls looking for a bounce/retracement off of 20% beat down it's seen over the last several days.
Cha ching
ProgN
How long do you want to ignore this user?
Howdy family, if anyone in here has a chunk of cash sitting on the sidelines and might be interested in a almost 1.75% ONE DAY CDish return on your cash, then buy $XRX today.

XRX, isn't volatile and it goes ex-dividend tomorrow, so you'd capture that dividend just for holding the stock overnight.

Just an idea to pick up some walking around money on your sideline cash.

Bird Poo
How long do you want to ignore this user?
AG
ProgN said:

Howdy family, if anyone in here has a chunk of cash sitting on the sidelines and might be interested in a almost 1.75% ONE DAY CDish return on your cash, then buy $XRX today.

XRX, isn't volatile and it goes ex-dividend tomorrow, so you'd capture that dividend just for holding the stock overnight.

Just an idea to pick up some walking around money on your sideline cash.


So if I buy @ 14.20 today, what if it continues to go down tomorrow?
Chef Elko
How long do you want to ignore this user?
AG
Will Apple magnet to $200?
$30,000 Millionaire
How long do you want to ignore this user?
AG
you puxxies know what to do when this breaks, right?

$30,000 Millionaire
How long do you want to ignore this user?
AG
i would wait for like a 15 minute close above or below before you did anything.
$30,000 Millionaire
How long do you want to ignore this user?
AG
what you should see here is that the market is basing, but this is bullish basing. i think there are high odds this breaks to the upside.
Charismatic Megafauna
How long do you want to ignore this user?
AG
I was gonna say, i already bought downies so the answer is probably "buy uppies"
$30,000 Millionaire
How long do you want to ignore this user?
AG
the trade is right here for you guys, just have to see it and execute when the time comes.

I'm serious on waiting for a close above.
First Page Last Page
Page 6163 of 6617
 
×
subscribe Verify your student status
See Subscription Benefits
Trial only available to users who have never subscribed or participated in a previous trial.