Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

All Activity

This stream auto-updates

  1. Today
  2. click on the top right user icon. There should be something like "ultra". Does everything work in Atas ? Heatmap ?
  3. Will try at NY session and see what improvements they have added.
  4. How to confirm if I have Ultimate version? I dont see a license tab as explained in their online help. I have put 20 indicators on my chart: https://ibb.co/YT1PT6vN
  5. @Minigems Latest update if anyone is interested, needs EDU. https://workupload.com/file/3HngPQmDuK5
  6. Yesterday
  7. @kimsam who can edu this https://www.sendspace.com/file/4fempa
  8. is the same...there are the usual ambiguous signals after 6PM .....HH candles do not improve the issue
  9. your chart is m5.... doesn`t look good, because the system is supposed to be used on M1 and M30 NQ. Es also less reliable. M1 is very promissing.
  10. Honestly, this looks great. Looking forward to the finished product. Thanks @kimsam
  11. https://t.me/Software_Indicator has a promo active for a few days
  12. Hi does any have fixed StrategyQuant X . I do appreciate it thx
  13. Thanks for the suggestion, but I have found that the more things I add, the more confirmations I need, and the more confused the AI gets. Currently, I have only tried using pattern matching with past data. Let’s see how it goes. I will update you on the outcome in a month or so.
  14. Right, I will stop posting.
  15. @Ninja_On_The_Roof, can you please send me the link.
  16. @trader88 The group is for traders to help other traders. If you want to share then share BUT if you dont want to share, then why post?
  17. Last week
  18. You can get a free trial by the looks of it..
  19. Works with the unlocker. not sure I see the value in this one but I haven’t really looked at it.
  20. I dont recall specifically which one. I just recall seeing some of them got dropped off my long list of working Ninza stuff. By that I meant, their names would become greyed out or just disappeared. Hence, they would stop function. So again, depending on which of them you had installed on your PC, they might survive or they might just get killed off.
  21. PLEASE
  22. sorry , ifogrot to mention, its HA candles the strategy
  23. it doesn't satisfy me
  24. https://clubbingbuy.exchange/threads/tholvit-mbo-heatmap.4458/ To everyone interested
  25. HA candles btw
  26. attached is the settings. someone with TDview premium can test and let us know please. dont have premium tdview. 6nN5aaRypR
  27. this is a strategy based on the close and every tick: //@version=6 strategy("GAMABOOM Reversal - Hermes v169 (ADX FIXED)", overlay=true, pyramiding=0, initial_capital=10000) //============================================================================= // TICK SETTINGS //============================================================================= stopTicks = input.int(20, "Stop Loss (Ticks)", minval=1) targetTicks = input.int(40, "Take Profit (Ticks)", minval=1) tickSize = syminfo.mintick sl = stopTicks * tickSize tp = targetTicks * tickSize //============================================================================= // TIME FILTER //============================================================================= useTimeFilter = input.bool(true, "Enable Session Filter") startHour = input.int(9, "Start Hour", minval=0, maxval=23) startMinute = input.int(30, "Start Minute", minval=0, maxval=59) endHour = input.int(16, "End Hour", minval=0, maxval=23) endMinute = input.int(0, "End Minute", minval=0, maxval=59) currentMinutes = hour * 60 + minute startMinutes = startHour * 60 + startMinute endMinutes = endHour * 60 + endMinute inSession = not useTimeFilter or (currentMinutes >= startMinutes and currentMinutes <= endMinutes) //============================================================================= // CORE SIGNALS //============================================================================= src = close pchange = ta.change(src, 1) / src * 100 avpchange = ta.alma(pchange, 28, 0.85, 7) rsi = ta.rsi(close, 10) rsiL = rsi > rsi[1] rsiS = rsi < rsi[1] // Chande Momentum length11 = 17 momm = ta.change(close) f1(m) => m >= 0.0 ? m : 0.0 f2(m) => m >= 0.0 ? 0.0 : -m sm1 = math.sum(f1(momm), length11) sm2 = math.sum(f2(momm), length11) percent(nom, div) => 100 * nom / div chandeMO = percent(sm1 - sm2, sm1 + sm2) cL = chandeMO > chandeMO[1] cS = chandeMO < chandeMO[1] // GMA length_gama = 19 sigma_gama = ta.stdev(close, 20) gma = 0.0 sumW = 0.0 for i = 0 to length_gama - 1 w = math.exp(-math.pow(((i - (length_gama - 1)) / (2 * sigma_gama)), 2) / 2) v = ta.highest(avpchange, i + 1) + ta.lowest(avpchange, i + 1) gma += v * w sumW += w gma := (gma / sumW) / 2 gma := ta.ema(gma, 7) //============================================================================= // FLOOR PRESSURE FILTER //============================================================================= threshold = input.int(45, "Floor Pressure Threshold") tr1 = high - low tr2 = math.abs(high - nz(close[1])) tr3 = math.abs(low - nz(close[1])) r7c = math.max(tr1, math.max(tr2, tr3)) p5y = high - nz(high[1]) > nz(low[1]) - low ? math.max(high - nz(high[1]), 0) : 0 d4h = nz(low[1]) - low > high - nz(high[1]) ? math.max(nz(low[1]) - low, 0) : 0 var float v5g = 0.0 v5g := nz(v5g[1]) - (nz(v5g[1]) / 1) + r7c var float p1b = 0.0 p1b := nz(p1b[1]) - (nz(p1b[1]) / 1) + p5y var float b6t = 0.0 b6t := nz(b6t[1]) - (nz(b6t[1]) / 1) + d4h bullPressure = v5g != 0 ? p1b / v5g * 100 : 0 bearPressure = v5g != 0 ? b6t / v5g * 100 : 0 bullFloor = math.floor(bullPressure) bearFloor = math.floor(bearPressure) bullFloorOK = bullFloor > bearFloor and bullFloor >= threshold bearFloorOK = bearFloor > bullFloor and bearFloor >= threshold //============================================================================= // ADX FILTER (FIXED USING DMI) //============================================================================= adxLen = input.int(14, "ADX Length") adxMin = input.float(18, "ADX Min Threshold") [dmiPlus, dmiMinus, adx] = ta.dmi(adxLen, adxLen) adxOk = adx > adxMin //============================================================================= // SIGNALS //============================================================================= asgma_buy = ta.crossover(avpchange, gma) and rsiL and cL asgma_sell = ta.crossunder(avpchange, gma) and rsiS and cS bom_buy = ta.crossover(avpchange, gma) bom_sell = ta.crossunder(avpchange, gma) bomVolSma = ta.sma(volume, 14) bomVolumeOk = volume > bomVolSma * 0.5 confirmed_buy = asgma_buy and bom_buy and bomVolumeOk and inSession confirmed_sell = asgma_sell and bom_sell and bomVolumeOk and inSession //============================================================================= // FINAL ENTRY FILTER (FLOOR + ADX) //============================================================================= longCondition = confirmed_buy and bullFloorOK and adxOk shortCondition = confirmed_sell and bearFloorOK and adxOk if longCondition strategy.entry("LONG", strategy.long) if shortCondition strategy.entry("SHORT", strategy.short) //============================================================================= // EXITS //============================================================================= strategy.exit("LONG EXIT", from_entry="LONG", stop=close - sl, limit=close + tp) strategy.exit("SHORT EXIT", from_entry="SHORT", stop=close + sl, limit=close - tp) //============================================================================= // VISUALS //============================================================================= plotshape(longCondition, title="LONG", style=shape.labelup, location=location.belowbar, color=color.green, text="BUY") plotshape(shortCondition, title="SHORT", style=shape.labeldown, location=location.abovebar, color=color.red, text="SELL")
  1. Load more activity

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...