Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/27/25 in Posts

  1. Mangrad we got lucky I will post the vids its a large library. It will take some time. I might have to do it in spurts, https://workupload.com/file/CvTuMBCTVLB Thanks
    12 points
  2. apmoo

    riosquant.com

    https://workupload.com/file/rekAuctABEx Thanks
    11 points
  3. kimsam

    ezbot.me

    here you go https://workupload.com/file/YYQmDysG979
    7 points
  4. I'm looking for the Autotrader ANYONE? https://workupload.com/file/SPG8EAtp4Kb Thanks
    5 points
  5. i checked the igrid to my humble opinion is just a grid bs- they just added the I before to make it more important. it seems like a moving average with some other simple indicators he stole from other vendors. could not find any edge . please correct me if i am wrong. listen everyone- the fact that a vendor asks a fortune for their indicators does not mean that its any good. always- test a system on a choppy section of the market , then test it on a section with sharp moves, if it gets you in and out in time without losing too much then it passed the first test out of many. DO NOT and i repeat- DO NOT look at indicators or systems when there are big moves giving you big winners- normally the market goes sideways sucking back all you profits. What do i mean giving you an EDGE ? - it means using LEADING indicators. The ones that will tell you what is going on BEFORE everyone else knows it. Examples- Fibs, Price action, MBOX . If you think thA=at you can take all these indicators that APMOO- the amazing , educated for us and blindly run all of them live you are mistaken, if you think that there is a magical time frame with magic settings then again- you are mistaken. The market is alive and composed from millions of traders and bots you cannot tame it or predict where it goes. just my 5 cents lol Again- APMOO- thank you so much you are a legend. Traderbeauty-Jane
    4 points
  6. Send a folder of more https://workupload.com/file/AFkLajw4vwc Thanks
    4 points
  7. https://workupload.com/file/qdUDUBYDHzC roddizon1978 keep us posted Thanks
    3 points
  8. @apmoo Your effort reflects your dedication to community support without expectation. Wonderful human being.
    2 points
  9. Latest version. Locked. Need fix https://limewire.com/d/QUNkl#LaIGO3pPMb
    2 points
  10. at this point we have solved all the trading trouble we enter Long when the system show Short and vice versa 🙂🙂🙂
    2 points
  11. https://nexusfi.com/showthread.php?t=59967
    2 points
  12. Ninja_On_The_Roof

    Alive

    Many thanks to our great Apmoo and many other valuable contributors, this Forum has definitely come alive and more engaged more than forever. I just wanted to take this moment to send out many great thanks to those who have been providing their shares and those who have been tirelessly unlocking and educating the goods, without asking for anything back in return. Much appreciated.🙏
    2 points
  13. These still need to be unlocked. https://whop.com/kaizens-edge/ EkitaiPOC_v2.0_NT8.zip Seihai_v3.1_NT8.zip
    2 points
  14. This bot actually trades pretty well, I'm not sure it's worth anywhere near 25K though! I've been testing it on 1 min heiken ahsi candles. I'll screenshot the settings I've found to be best so far.
    2 points
  15. https://workupload.com/file/waJM3znEGLa Thanks
    2 points
  16. https://workupload.com/archive/msZcWpzbJw
    1 point
  17. apmoo

    Sniper Auto Trader

    Need the originals Not able
    1 point
  18. alodante

    ezbot.me

    need to be fix. https://u.pcloud.link/publink/show?code=kZyJOm5ZLN7WtWUKe8jpHojsgV1nW4GWtryV
    1 point
  19. roddizon1978

    WOLFE WAVE

    Here is a NT7 file of a Wolfe wave maybe you could make it good in NT8 so we could use it This is How it is done, I am not a programmer so I cannot fully understand it. WolfeWave.cs bt Jstout.txt
    1 point
  20. Hello, When I first started out trading years and years ago, this was on one of my wishlists. Of course, not knowing much of everything back then, this just looked awesome. Anyone here happens to have these for NT8, somewhere in their collections? Thanks. https://indicatorwarehouse.com/ninjatrader-indicator/eagle_power_pack/
    1 point
  21. Can I have your script created version for the NT8, please, I will tried it on my end.
    1 point
  22. Should look like this. Let me copy your files and compile' The chart is a classic Elliot waves Hey can you convert a Pine script to NT8 too ?
    1 point
  23. Not a quick fix but will get it done oneday soon Thanks
    1 point
  24. Hello, here is the first BETA release from Convert. Could you send me a screenshot of how it looks in ThinkorSwim? #region Using declarations using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Input; using System.Windows.Media; using System.Xml.Serialization; using NinjaTrader.Cbi; using NinjaTrader.Gui; using NinjaTrader.Gui.Chart; using NinjaTrader.Gui.SuperDom; using NinjaTrader.Gui.Tools; using NinjaTrader.Data; using NinjaTrader.NinjaScript; using NinjaTrader.Core.FloatingPoint; using NinjaTrader.NinjaScript.DrawingTools; using NinjaTrader.NinjaScript.Indicators; #endregion namespace NinjaTrader.NinjaScript.Indicators { public class WolfeWaveNT8_Opt : Indicator { [Range(2, 50), NinjaScriptProperty] public int WaveLength { get; set; } = 13; [NinjaScriptProperty] public bool LabelPoints { get; set; } = true; private struct Extremum { public int BarIndex; public double Price; } private List<Extremum> swingHighs = new List<Extremum>(); private List<Extremum> swingLows = new List<Extremum>(); private int lastBullPatternBar = -1; private int lastBearPatternBar = -1; protected override void OnStateChange() { if (State == State.SetDefaults) { Name = "WolfeWaveNT8_Opt"; IsOverlay = true; Description = "Wolfe Wave para NinjaTrader 8 - optimizado"; } } protected override void OnBarUpdate() { if (CurrentBar < WaveLength) return; // Detectar máximos y mínimos de swing una sola vez para esta barra if (High[WaveLength / 2] == MAX(High, WaveLength)[WaveLength / 2]) { int idx = CurrentBar - WaveLength / 2; double price = High[WaveLength / 2]; // Evita añadir dos veces el mismo punto (por ejemplo en el primer ciclo) if (swingHighs.Count == 0 || swingHighs[swingHighs.Count - 1].BarIndex != idx) swingHighs.Add(new Extremum() { BarIndex = idx, Price = price }); if (swingHighs.Count > 20) swingHighs.RemoveAt(0); } if (Low[WaveLength / 2] == MIN(Low, WaveLength)[WaveLength / 2]) { int idx = CurrentBar - WaveLength / 2; double price = Low[WaveLength / 2]; if (swingLows.Count == 0 || swingLows[swingLows.Count - 1].BarIndex != idx) swingLows.Add(new Extremum() { BarIndex = idx, Price = price }); if (swingLows.Count > 20) swingLows.RemoveAt(0); } // Wolfe Bullish if (swingLows.Count >= 5) { var pts = swingLows.GetRange(swingLows.Count - 5, 5); // Revisa si este patrón ya se dibujó (no lo repite) if (pts[4].BarIndex != lastBullPatternBar) { // Patrón Wolfe básico: puedes ampliar reglas aquí a gusto if (pts[0].Price < pts[2].Price&&pts[2].Price < pts[4].Price) { string tagBase = "BullWolfe_" + pts[0].BarIndex + "_" + pts[4].BarIndex; // Limpia tags antiguos de este patrón si existen for (int i = 0; i < 5; i++) RemoveDrawObject("BullP" + (i + 1) + "_" + tagBase); for (int i = 0; i < 4; i++) RemoveDrawObject("BullWolfe" + i + "_" + tagBase); RemoveDrawObject("BullTarget" + tagBase); RemoveDrawObject("BullArrow" + tagBase); // Dibuja líneas for (int i = 0; i < 4; i++) { Draw.Line( this, "BullWolfe" + i + "_" + tagBase, false, CurrentBar - pts[i].BarIndex, pts[i].Price, CurrentBar - pts[i + 1].BarIndex, pts[i + 1].Price, Brushes.Orange, DashStyleHelper.Solid, 2 ); } Draw.Line( this, "BullTarget" + tagBase, false, CurrentBar - pts[0].BarIndex, pts[0].Price, CurrentBar - pts[3].BarIndex, pts[3].Price, Brushes.Green, DashStyleHelper.Dash, 3 ); // Puntos y flecha solo si se solicita if (LabelPoints) { for (int i = 0; i < 5; i++) { int barsAgo = CurrentBar - pts[i].BarIndex; Draw.Text( this, "BullP" + (i + 1) + "_" + tagBase, false, (i + 1).ToString(), barsAgo, pts[i].Price - TickSize * 2, 0, Brushes.Orange, new SimpleFont("Arial", 13), TextAlignment.Center, Brushes.Transparent, Brushes.Transparent, 100 ); } // Flecha entrada en p5 Draw.ArrowUp(this, "BullArrow" + tagBase, false, 0, pts[4].Price - TickSize * 2, Brushes.Green); } lastBullPatternBar = pts[4].BarIndex; } } } // Wolfe Bearish if (swingHighs.Count >= 5) { var pts = swingHighs.GetRange(swingHighs.Count - 5, 5); if (pts[4].BarIndex != lastBearPatternBar) { if (pts[0].Price > pts[2].Price&&pts[2].Price > pts[4].Price) { string tagBase = "BearWolfe_" + pts[0].BarIndex + "_" + pts[4].BarIndex; for (int i = 0; i < 5; i++) RemoveDrawObject("BearP" + (i + 1) + "_" + tagBase); for (int i = 0; i < 4; i++) RemoveDrawObject("BearWolfe" + i + "_" + tagBase); RemoveDrawObject("BearTarget" + tagBase); RemoveDrawObject("BearArrow" + tagBase); for (int i = 0; i < 4; i++) { Draw.Line( this, "BearWolfe" + i + "_" + tagBase, false, CurrentBar - pts[i].BarIndex, pts[i].Price, CurrentBar - pts[i + 1].BarIndex, pts[i + 1].Price, Brushes.Pink, DashStyleHelper.Solid, 2 ); } Draw.Line( this, "BearTarget" + tagBase, false, CurrentBar - pts[0].BarIndex, pts[0].Price, CurrentBar - pts[3].BarIndex, pts[3].Price, Brushes.Red, DashStyleHelper.Dash, 3 ); if (LabelPoints) { for (int i = 0; i < 5; i++) { int barsAgo = CurrentBar - pts[i].BarIndex; Draw.Text( this, "BearP" + (i + 1) + "_" + tagBase, false, (i + 1).ToString(), barsAgo, pts[i].Price + TickSize * 2, 0, Brushes.Magenta, new SimpleFont("Arial", 13), TextAlignment.Center, Brushes.Transparent, Brushes.Transparent, 100 ); } Draw.ArrowDown(this, "BearArrow" + tagBase, false, 0, pts[4].Price + TickSize * 2, Brushes.Red); } lastBearPatternBar = pts[4].BarIndex; } } } } } }
    1 point
  25. here its the setting https://workupload.com/file/DSxHmRtCzVc
    1 point
  26. apmoo

    proedgetrading.com

    Check your folder and make sure you deleted the older dll. This fix should be straight
    1 point
  27. apmoo

    timekeepertrading.de

    https://workupload.com/file/9ERbPtxMsFc Thanks
    1 point
  28. https://workupload.com/file/WH7fbpMVKw5 Thanks
    1 point
  29. apmoo

    proedgetrading.com

    https://workupload.com/file/FfkNvACyMff Thanks
    1 point
  30. Thanks https://workupload.com/file/YvnVazZvzLZ
    1 point
  31. Hi, If anybody has the above-mentioned course kindly share. https://sepiagroup.com/product/rob-smiths-official-strat-course/
    1 point
×
×
  • Create New...