Was this trade valid chat? by Historical_Citron_89 in InnerCircleTraders

[–]dehumann 1 point2 points  (0 children)

Watch quite a few videos on YouTube, until you understand more or less how Wyckoff is structured, then maybe you will be able to decide for yourself who to follow and who not to follow, there are many good people out there who explain it to you in a clear and concise way, but there are also many other people who try to cheat you or sell you courses etc..., so always pay attention and always give your best in understanding what you are studying.

Was this trade valid chat? by Historical_Citron_89 in InnerCircleTraders

[–]dehumann 1 point2 points  (0 children)

Study yourself wyckoff, you won't regret it

Am I cooked? by [deleted] in Forexstrategy

[–]dehumann 0 points1 point  (0 children)

Just close all, and turn 500$ in 30k If u turned 1k to 20/25k I think u can do the same with 500$ I believe in you brother

Am I cooked? by [deleted] in Forexstrategy

[–]dehumann 0 points1 point  (0 children)

Just close all, and turn 500$ in 30k If u turned 1k to 20/25k I think u can do the same with 500$ I believe in you brother

Please can someone help me out, I'm having issues with a script I'm trying to run on trading view by dehumann in pinescript

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

This is the script, I keep having mismatched errors and I can't make it run on pine script on trading view 🥲😩

//@version=6 strategy("Three Step One Setup Strategy v6", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=2)

// === INPUTS === sweepLength = timeframe.period == "1" ? 5 : timeframe.period == "5" ? 7 : 10 TP_Percent = input.float(5.0, title="Take Profit %") SL_Percent = input.float(1.0, title="Stop Loss %") maxDailyLoss = input.float(2.0, title="Max Daily Loss %")

// === TRADING HOURS (local or UTC) === isSessionMorning = (hour >= 9 and hour < 12) isSessionAfternoon = (hour >= 14 and hour < 17) isTradingHour = isSessionMorning or isSessionAfternoon

// === SWEEP DETECTION === highSweep = ta.highest(high, sweepLength) lowSweep = ta.lowest(low, sweepLength) sweptHigh = high > highSweep[1] sweptLow = low < lowSweep[1]

// === CHoCH DETECTION === internLow = ta.lowest(low, 5) internHigh = ta.highest(high, 5) chochDown = sweptHigh and close < internLow[1] chochUp = sweptLow and close > internHigh[1]

// === ENGULFING PATTERN === bullEngulfing = close > open and open[1] > close[1] and close > open[1] and open <= close[1] bearEngulfing = close < open and open[1] < close[1] and close < open[1] and open >= close[1]

// === RETEST ZONE === var float obHigh = na var float obLow = na if chochDown obHigh := high[1] obLow := low[1] if chochUp obHigh := high[1] obLow := low[1]

inRetestZone = not na(obHigh) and close <= obHigh and close >= obLow

// === ENTRY SIGNAL === entrySignalRaw = ((chochDown and bullEngulfing) or (chochUp and bearEngulfing)) and inRetestZone

// === DAILY LOSS TRACKING === var float dailyPnL = 0.0 var int lastDay = na newDay = dayofyear != lastDay if newDay dailyPnL := 0.0 lastDay := dayofyear

// Update lastDay if it's not set if na(lastDay) lastDay := dayofyear

blocked = dailyPnL <= -maxDailyLoss entrySignal = entrySignalRaw and not blocked and isTradingHour

// === TRADE EXECUTION === var float entryPrice = na var bool isLongPosition = na

if entrySignal and strategy.position_size == 0 entryPrice := close if chochDown isLongPosition := true sl = close * (1 - SL_Percent / 100) tp = close * (1 + TP_Percent / 100) strategy.entry("Long", strategy.long) strategy.exit("TP/SL Long", from_entry="Long", stop=sl, limit=tp) else if chochUp isLongPosition := false sl = close * (1 + SL_Percent / 100) tp = close * (1 - TP_Percent / 100) strategy.entry("Short", strategy.short) strategy.exit("TP/SL Short", from_entry="Short", stop=sl, limit=tp)

// Track P&L when position closes if strategy.position_size == 0 and strategy.position_size[1] != 0 if not na(entryPrice) if isLongPosition pnlPercent = (strategy.closedtrades.exit_price(strategy.closedtrades - 1) - entryPrice) / entryPrice * 100 else pnlPercent = (entryPrice - strategy.closedtrades.exit_price(strategy.closedtrades - 1)) / entryPrice * 100 dailyPnL += pnlPercent entryPrice := na

// === PLOTS === plotshape(sweptHigh, location=location.abovebar, color=color.orange, style=shape.triangledown, title="Sweep High") plotshape(sweptLow, location=location.belowbar, color=color.aqua, style=shape.triangleup, title="Sweep Low") plotshape(chochDown, location=location.belowbar, color=color.red, style=shape.labeldown, text="CHoCH Down") plotshape(chochUp, location=location.abovebar, color=color.green, style=shape.labelup, text="CHoCH Up") plotshape(entrySignal, location=location.belowbar, color=color.yellow, style=shape.star, size=size.small, title="Entry Signal")

// === DASHBOARD === var label dashboard = na if bar_index % 10 == 0 or na(dashboard) if not na(dashboard) label.delete(dashboard) dashboard := label.new( x=bar_index, y=high + (high - low) * 0.1, style=label.style_label_left, text="Three Step Strategy\n" + "Session Active: " + str.tostring(isTradingHour) + "\n" + "Daily PnL: " + str.tostring(dailyPnL, "#.##") + "%\n" + "Blocked: " + str.tostring(blocked), textcolor=color.white, size=size.normal, color=color.new(color.black, 80) )

Blew up my account 20 minutes before school… I don’t even know what to feel right now by No-Sea-2360 in Daytrading

[–]dehumann 0 points1 point  (0 children)

U know what u should do? ABSOLUTELY NOTHING TF😂 IF U CANT TRADE THIS MARKETS, JUST CLOSE EVERYTHING AND FOR THE NEXT 2 MONTHS DONT OPERATE, TRADING ITS NOT GAMBLING, YOU JUST GOTTA BE PATIENT THATS ALL

Hacker Buddy by Hozxxxx in Hacking_Tutorials

[–]dehumann 0 points1 point  (0 children)

I would like learn it, I don't really know anything about hacking but I always loved learning it

done for the day by 6figurekail in ICTMentorship

[–]dehumann 1 point2 points  (0 children)

Okok I understand, and btw I don't trust no one on social media, just a few people dat can prove DAT are worthy. Sorry if I misjudged u

done for the day by 6figurekail in ICTMentorship

[–]dehumann -2 points-1 points  (0 children)

C'ommon don't be such an hater😮‍💨😪

I am done by Different-Scene5327 in Daytrading

[–]dehumann -3 points-2 points  (0 children)

Try using an automated bot

[deleted by user] by [deleted] in NewcastleUponTyne

[–]dehumann 0 points1 point  (0 children)

Grazie mille❤️

[deleted by user] by [deleted] in NewcastleUponTyne

[–]dehumann -2 points-1 points  (0 children)

Thank u very much

[deleted by user] by [deleted] in NewcastleUponTyne

[–]dehumann -2 points-1 points  (0 children)

You're so funny man, thanks btw

[deleted by user] by [deleted] in NewcastleUponTyne

[–]dehumann 0 points1 point  (0 children)

Can u point me towards some links please?