Business & Investing
Sponsored by

Stock Markets

23,999,600 Views | 231603 Replies | Last: 28 min ago by CC09LawAg
$30,000 Millionaire
How long do you want to ignore this user?
AG
my lottos are XSP 419C bidding 0.5 for them
You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
reducing size and trying 0.8
You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
won't work unless we pay up. moving to 420C
You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
in at 0.25

setting trim at 0.40
You don’t trade for money, you trade for freedom.
Boy Named Sue
How long do you want to ignore this user?
AG
$30,000 Millionaire said:

I think this area will now be hard to break to the upside.
Luckily I read that as "not" be hard to break and bought calls
$30,000 Millionaire
How long do you want to ignore this user?
AG
Probably not gonna work.
You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
Bulls don't have the power
You don’t trade for money, you trade for freedom.
EnronAg
How long do you want to ignore this user?
AG
can you please elaborate for us rookies?? or are you being sarcastic?? again, just trying to learn...
EngrAg14
How long do you want to ignore this user?
AG
EnronAg said:

can you please elaborate for us rookies?? or are you being sarcastic?? again, just trying to learn...
Believe he means pushing past 4200 SP level
Charismatic Megafauna
How long do you want to ignore this user?
AG
Then let's burn it down tomorrow! Today's silliness ate up my june vix calls
Saw .6 and took it on my cvna 12 put, then couldn't stand it and got back in a little while ago for .36
$30,000 Millionaire
How long do you want to ignore this user?
AG
EnronAg said:

can you please elaborate for us rookies?? or are you being sarcastic?? again, just trying to learn...


Sorry, what's your question?
You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
Green today but annoyed about the lotto. I chased thinking they'd go for 4218
You don’t trade for money, you trade for freedom.
Spoony Love
How long do you want to ignore this user?
AG
I got took today hard.

Sitting on 418c 0dte from the early run up. They were green then went red on that ugly first drop.

Missed the run over 417.50 during lunch hour to leave green. Finally cut my losses ar near the bottom of the start of the run.

Left serious green on the table today. Should have been patient as I was somewhat confident of the run up to end the day but not that much of a run. Made a decision to cut because any more red I felt would have been a complete loss. Tough day for me because I wasn't focused but distracted by work. Start again tomorrow.
$30,000 Millionaire
How long do you want to ignore this user?
AG
Try scaling and leaving runners.
You don’t trade for money, you trade for freedom.
EnronAg
How long do you want to ignore this user?
AG
about bulls not having the power...i guess you were referring to the final few minutes of the day...my bad
$30,000 Millionaire
How long do you want to ignore this user?
AG
EnronAg said:

about bulls not having the power...i guess you were referring to the final few minutes of the day...my bad
I thought they were going to go all the way to close the gap. they did not at the close.
You don’t trade for money, you trade for freedom.
Spoony Love
How long do you want to ignore this user?
AG
That would certainly have helped. I think I was acting too greedy.
Brian Earl Spilner
How long do you want to ignore this user?
AG
My $32 sell on TQQQ executed right before the close. Like a glove!
$30,000 Millionaire
How long do you want to ignore this user?
AG
Congrats on a great trade. I think well timed.
You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
My goal for tomorrow is going to be not to give back any gains for the week. This has been a big move.
You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
This is the latest source code for the indicator I've been working on. It's not bullet proof, but I'm liking it so far.

Would appreciate someone smarter than me giving their opinion on this:

//@version=5
indicator("Footprint Chart with Signals + OBV", overlay=true)

// Inputs
priceType = input.string("HL2", title="Price Source", options=["HL2", "Close", "Open", "High", "Low"])
volumeType = input.string("Volume", title="Volume Source", options=["Volume"])
numRows = input.int(10, title="Number of Rows", minval=1)
barWidth = input.int(2, title="Bar Width", minval=1)
atrLength = input.int(14, title="ATR Length", minval=1)

priceSource = priceType == "HL2" ? hl2 : priceType == "Close" ? close : priceType == "Open" ? open : priceType == "High" ? high : low
volumeSource = volumeType == "Volume" ? volume : volume

// Calculate footprint data
delta = volumeSource * (priceSource - open)
footprint = array.new_float(0)
volumeSum = 0.0
for i = 0 to 100
volumeSum := volumeSum + volumeSource[i * barWidth]
array.push(footprint, volumeSum)
array.reverse(footprint)

// Plot the chart
plot(delta, "Delta", color=color.blue, style=plot.style_histogram, linewidth=2)

// Add price action signals
ema5 = ta.ema(priceSource, 5)
maFast = ta.sma(priceSource, 5)
maSlow = ta.sma(priceSource, 20)

// On Balance Volume calculations
obv = ta.cum(close > close[1] ? volume : close < close[1] ? -volume : 0)


// TDI calculations
rsiPeriod = 13
bandLength = 34
emaLength = 2
rsi = ta.rsi(priceSource, rsiPeriod)
band = ta.sma(rsi, bandLength)
upper = ta.highest(band, bandLength)
lower = ta.lowest(band, bandLength)
emaUpper = ta.ema(upper, emaLength)
emaLower = ta.ema(lower, emaLength)

// MTF analysis
higherTFmaFast = request.security(syminfo.tickerid, "10", ta.sma(priceSource, 5))
highestTFmaFast = request.security(syminfo.tickerid, "15", ta.sma(priceSource, 5))

isUptrend = maFast > maSlow and close > ema5 and ta.crossover(rsi, emaUpper) and higherTFmaFast > highestTFmaFast
isDowntrend = maFast < maSlow and close < ema5 and ta.crossunder(rsi, emaLower) and higherTFmaFast < highestTFmaFast

var bool buySignal = false
var bool sellSignal = false
var bool negateSignal = false

buySignal := not buySignal[1] and isUptrend and not isDowntrend[1]
sellSignal := not sellSignal[1] and isDowntrend and not isUptrend[1]
negateSignal := (buySignal[1] and isDowntrend) or (sellSignal[1] and isUptrend)

plotshape(buySignal, style=shape.triangleup, location=location.belowbar, color=color.green, size=size.small, transp=0)
plotshape(sellSignal, style=shape.triangledown, location=location.abovebar, color=color.red, size=size.small, transp=0)
plotshape(negateSignal, style=shape.xcross, location=location.abovebar, color=color.orange, size=size.small, transp=0)

// Stop loss and take profit levels based on the day's range
atr = ta.atr(atrLength)
stopLossLevelLong = close - atr
stopLossLevelShort = close + atr
takeProfitLevelLong = close + atr
takeProfitLevelShort = close - atr

plot(buySignal ? stopLossLevelLong : na, color=color.red)
plot(sellSignal ? stopLossLevelShort : na, color=color.red)
plot(buySignal ? takeProfitLevelLong : na, color=color.green)
plot(sellSignal ? takeProfitLevelShort : na, color=color.green)

You don’t trade for money, you trade for freedom.
Mostly Foggy Recollection
How long do you want to ignore this user?
Where (what platform) are you executing this code?
$30,000 Millionaire
How long do you want to ignore this user?
AG
this is how it thought about today's action.

I don't think it's doing a good job of negating or setting stops in a way that makes sense.

It seems to work better on ES than NQ
You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
trading view
You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
this is gold. It seems pretty accurate.

I am sharing here with you all because some of you, I hope, are superior to me in mathematical and analytical skills and can potentially take this to the next level. I would like to ask that you do not share this outside this forum - I am trying to incorporate some of my personal edge into an indicator to help everyone on this board. There's nothing magic here and I still rely a lot on 'feel' for when to enter, but I think this can help with when to enter and when to de-risk.

You don’t trade for money, you trade for freedom.
Boy Named Sue
How long do you want to ignore this user?
AG
Doubled my options account since May 1, despite being really busy with work. Pam Anderson in her prime, baby
ProgN
How long do you want to ignore this user?
Boy Named Sue said:

Doubled my options account since May 1, despite being really busy with work. Pam Anderson in her prime, baby
$30,000 Millionaire
How long do you want to ignore this user?
AG
Boy Named Sue said:

Doubled my options account since May 1, despite being really busy with work. Pam Anderson in her prime, baby


Congrats but you are risking too much.
You don’t trade for money, you trade for freedom.
South Platte
How long do you want to ignore this user?
Boy Named Sue said:

Doubled my options account since May 1, despite being really busy with work. Pam Anderson in her prime, baby
Nice. You told Shane Spencer how it's gonna work.
$30,000 Millionaire
How long do you want to ignore this user?
AG
There is a lot of call premium built up. Be wary of that

You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
Approaching +2


You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
The squeeze can continue as long as shorts provide liquidity. Remember that some of these are long term shorts too.

I am saying this because I think R:R

Market may go up, but where is the real risk today?
You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
I think ES 2210 is my area to consider shorts.
You don’t trade for money, you trade for freedom.
Spoony Love
How long do you want to ignore this user?
AG
Not sure if this means anything but there is a gap back from Aug 22nd that hasn't filled. Obviously we are in that territory. Top of the gap is 421.22.
Talon2DSO
How long do you want to ignore this user?
AG
Spy is going to rip our faces off....and then Powell speaks at 11am.
First Page Last Page
Page 6125 of 6618
 
×
subscribe Verify your student status
See Subscription Benefits
Trial only available to users who have never subscribed or participated in a previous trial.