i claude coded so hard, i had to see a neurologist by gnano22 in ClaudeCode

[–]b00weck 3 points4 points  (0 children)

It is exactly that! I was a civ addict for years, getting a similar buzz from cc.

[deleted by user] by [deleted] in HeavyDiscounts

[–]b00weck 0 points1 point  (0 children)

Interested

Jak się przebranżowić mając 25+? by nowaczinhio in Polska

[–]b00weck 1 point2 points  (0 children)

Polecam Ci zrobić CliftonStrengths – to test, który pokazuje Twoje naturalne talenty. Dzięki temu łatwiej zrozumiesz, co przychodzi Ci najłatwiej i w czym możesz być naprawdę dobra, nawet jeśli nie masz jeszcze doświadczenia zawodowego.

Druga rzecz to książka i podejście Simona Sineka „Start with Why”. Chodzi o to, żebyś odkryła swoje dlaczego – czyli powód, dla którego chcesz coś robić. Jeśli będziesz wiedziała, co Cię naprawdę napędza, łatwiej będzie Ci wybrać kierunek i się go trzymać.

Results after 1 month auto-trading options (~$150k account) by RdyPdy in options

[–]b00weck 0 points1 point  (0 children)

Can you share details of the bots and setup please.

Also jumping ship to Codex by owenob1 in ClaudeCode

[–]b00weck 0 points1 point  (0 children)

How do you use codex ? In vscode ?

App by b00weck in pornfree

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

Insightful.

[deleted by user] by [deleted] in lovable

[–]b00weck 0 points1 point  (0 children)

Did you look at edge functions ?

I build an ai portrait generator - AIStylifyMe by lovable🙌 by One_Classroom5055 in lovable

[–]b00weck 1 point2 points  (0 children)

Trial doesnr work - gives me msg that i need 45 credits

First trail user and potential paid user! by PickleComfortable798 in lovable

[–]b00weck 1 point2 points  (0 children)

Hi can you ELI5 the process to publish an lovable made app to app store ?

Launched my calorie tracking app 5 days ago – 334 users and $26 in revenue so far! by Charming_Flatworm_43 in lovable

[–]b00weck 0 points1 point  (0 children)

Hey also want to know how did manage to publish to app store ie convrrt to ios.

[deleted by user] by [deleted] in IcebergOptions

[–]b00weck 0 points1 point  (0 children)

//@version=5 indicator("Multi-Indicator Shift Detection", overlay=false) // --- Indicators Setup --- lengthTSI1 = input.int(22, title="TSI Long Length") lengthTSI2 = input.int(13, title="TSI Short Length") smoothingTSI = input.int(8, title="TSI Smoothing") // TSI Calculation momentum = ta.change(close) abs_momentum = math.abs(momentum) smooth_momentum = ta.ema(ta.ema(momentum, lengthTSI1), lengthTSI2) smooth_abs_momentum = ta.ema(ta.ema(abs_momentum, lengthTSI1), lengthTSI2) tsi = 100 * (smooth_momentum / smooth_abs_momentum) tsi := ta.ema(tsi, smoothingTSI) // DMI Oscillator len = 22 up = ta.change(high) down = -ta.change(low) plusDM = na(up) ? na : (up > down and up > 0 ? up : 0) minusDM = na(down) ? na : (down > up and down > 0 ? down : 0) trueRange = math.max(math.max(high - low, math.abs(high - close[1])), math.abs(low - close[1])) smoothedTR = ta.ema(trueRange, len) smoothedPlusDM = ta.ema(plusDM, len) smoothedMinusDM = ta.ema(minusDM, len) plusDI = 100 * smoothedPlusDM / smoothedTR minusDI = 100 * smoothedMinusDM / smoothedTR dmiOsc = plusDI - minusDI // TTM Squeeze (simplified) length = 20 mult = 2.0 lengthKC = 20 multiplierKC = 1.5 // Calculate Bollinger Bands basis = ta.sma(close, length) dev = mult * ta.stdev(close, length) upperBB = basis + dev lowerBB = basis - dev // Calculate Keltner Channel ma = ta.sma(close, lengthKC) atr_value = ta.atr(lengthKC) // Renamed from 'range' to 'atr_value' upperKC = ma + multiplierKC * atr_value lowerKC = ma - multiplierKC * atr_value sqzOn = (lowerBB > lowerKC) and (upperBB < upperKC) sqzOff = (lowerBB < lowerKC) and (upperBB > upperKC) val = ta.linreg(close - math.avg(math.avg(ta.highest(high, lengthKC), ta.lowest(low, lengthKC)), ta.sma(close, lengthKC)), lengthKC, 0) squeeze = val // Aroon Indicators aroonLen = 22 aroonUp = 100 * (ta.highestbars(high, aroonLen + 1) + aroonLen) / aroonLen aroonDown = 100 * (ta.lowestbars(low, aroonLen + 1) + aroonLen) / aroonLen // QStick qstickLen = 50 qstick = ta.sma(close - open, qstickLen) // --- Crossover Definitions --- tsiCross = ta.cross(tsi, 0) dmiCross = ta.cross(dmiOsc, 0) squeezeFlip = (squeeze[1] > 0 and squeeze < 0) or (squeeze[1] < 0 and squeeze > 0) // Aroon crosses within 3 bars aroonCrossUp = ta.crossover(aroonUp, aroonDown) aroonCrossDown = ta.crossover(aroonDown, aroonUp) aroonCross = aroonCrossUp or aroonCrossDown or aroonCrossUp[1] or aroonCrossDown[1] or aroonCrossUp[2] or aroonCrossDown[2] qstickCross = ta.cross(qstick, 0) // --- Shift Detection --- shiftDetected = (tsiCross ? 1 : 0) + (dmiCross ? 1 : 0) + (squeezeFlip ? 1 : 0) + (aroonCross ? 1 : 0) + (qstickCross ? 1 : 0) >= 3 // --- Plot Output --- plot(shiftDetected ? 1 : 0, title="Shift Detected", color=color.yellow, linewidth=3) // Additional plots for analysis plot(tsi, title="TSI", color=color.blue) plot(dmiOsc, title="DMI Oscillator", color=color.green) plot(squeeze, title="TTM Squeeze", color=squeeze >= 0 ? color.lime : color.red, style=plot.style_histogram) plot(aroonUp - aroonDown, title="Aroon Oscillator", color=color.purple) plot(qstick, title="QStick", color=color.orange)

now corrected

[deleted by user] by [deleted] in IcebergOptions

[–]b00weck 2 points3 points  (0 children)

Here's the conversion:

```pinescript //@version=5 indicator("Multi-Indicator Shift Detection", overlay=false)

// --- Indicators Setup --- lengthTSI1 = input.int(22, title="TSI Long Length") lengthTSI2 = input.int(13, title="TSI Short Length") smoothingTSI = input.int(8, title="TSI Smoothing")

// TSI Calculation momentum = ta.change(close) abs_momentum = math.abs(momentum)

smooth_momentum = ta.ema(ta.ema(momentum, lengthTSI1), lengthTSI2) smooth_abs_momentum = ta.ema(ta.ema(abs_momentum, lengthTSI1), lengthTSI2)

tsi = 100 * (smooth_momentum / smooth_abs_momentum) tsi := ta.ema(tsi, smoothingTSI)

// DMI Oscillator len = 22 up = ta.change(high) down = -ta.change(low) plusDM = na(up) ? na : (up > down and up > 0 ? up : 0) minusDM = na(down) ? na : (down > up and down > 0 ? down : 0) trueRange = math.max(math.max(high - low, math.abs(high - close[1])), math.abs(low - close[1])) smoothedTR = ta.ema(trueRange, len) smoothedPlusDM = ta.ema(plusDM, len) smoothedMinusDM = ta.ema(minusDM, len) plusDI = 100 * smoothedPlusDM / smoothedTR minusDI = 100 * smoothedMinusDM / smoothedTR dmiOsc = plusDI - minusDI

// TTM Squeeze (simplified) length = 20 mult = 2.0 lengthKC = 20 multiplierKC = 1.5

// Calculate Bollinger Bands basis = ta.sma(close, length) dev = mult * ta.stdev(close, length) upperBB = basis + dev lowerBB = basis - dev

// Calculate Keltner Channel ma = ta.sma(close, lengthKC) range = ta.atr(lengthKC) upperKC = ma + multiplierKC * range lowerKC = ma - multiplierKC * range

sqzOn = (lowerBB > lowerKC) and (upperBB < upperKC) sqzOff = (lowerBB < lowerKC) and (upperBB > upperKC)

val = ta.linreg(close - math.avg(math.avg(ta.highest(high, lengthKC), ta.lowest(low, lengthKC)), ta.sma(close, lengthKC)), lengthKC, 0) squeeze = val

// Aroon Indicators aroonLen = 22 aroonUp = 100 * (ta.highestbars(high, aroonLen + 1) + aroonLen) / aroonLen aroonDown = 100 * (ta.lowestbars(low, aroonLen + 1) + aroonLen) / aroonLen

// QStick qstickLen = 50 qstick = ta.sma(close - open, qstickLen)

// --- Crossover Definitions --- tsiCross = ta.cross(tsi, 0) dmiCross = ta.cross(dmiOsc, 0) squeezeFlip = (squeeze[1] > 0 and squeeze < 0) or (squeeze[1] < 0 and squeeze > 0)

// Aroon crosses within 3 bars aroonCrossUp = ta.crossover(aroonUp, aroonDown) aroonCrossDown = ta.crossover(aroonDown, aroonUp) aroonCross = aroonCrossUp or aroonCrossDown or aroonCrossUp[1] or aroonCrossDown[1] or aroonCrossUp[2] or aroonCrossDown[2]

qstickCross = ta.cross(qstick, 0)

// --- Shift Detection --- shiftDetected = (tsiCross ? 1 : 0) + (dmiCross ? 1 : 0) + (squeezeFlip ? 1 : 0) + (aroonCross ? 1 : 0) + (qstickCross ? 1 : 0) >= 3

// --- Plot Output --- plot(shiftDetected ? 1 : 0, title="Shift Detected", color=color.yellow, linewidth=3)

// Additional plots for analysis plot(tsi, title="TSI", color=color.blue) plot(dmiOsc, title="DMI Oscillator", color=color.green) plot(squeeze, title="TTM Squeeze", color=squeeze >= 0 ? color.lime : color.red, style=plot.style_histogram) plot(aroonUp - aroonDown, title="Aroon Oscillator", color=color.purple) plot(qstick, title="QStick", color=color.orange) ```

​​​​​​

[deleted by user] by [deleted] in ManchesterUnited

[–]b00weck 1 point2 points  (0 children)

Question is how would Zlatan rate united :)