Jump to content

Leaderboard

Popular Content

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

  1. apmoo

    riosquant.com

    https://workupload.com/file/rekAuctABEx Thanks
    12 points
  2. 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
  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. Send a folder of more https://workupload.com/file/AFkLajw4vwc Thanks
    4 points
  6. https://workupload.com/file/qdUDUBYDHzC roddizon1978 keep us posted Thanks
    3 points
  7. These still need to be unlocked. https://whop.com/kaizens-edge/ EkitaiPOC_v2.0_NT8.zip Seihai_v3.1_NT8.zip
    2 points
  8. If the fix takes more than 5 mins I'm really not interested. My brain cells can't handle it. 😄 You have to go to the BIG DAWGS. $$$$$ Thanks
    2 points
  9. @apmoo Your effort reflects your dedication to community support without expectation. Wonderful human being.
    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. 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
  13. https://workupload.com/file/waJM3znEGLa Thanks
    2 points
  14. Thanks https://workupload.com/file/YvnVazZvzLZ
    1 point
  15. alodante

    ezbot.me

    need to be fix. https://u.pcloud.link/publink/show?code=kZyJOm5ZLN7WtWUKe8jpHojsgV1nW4GWtryV
    1 point
  16. https://workupload.com/archive/msZcWpzbJw
    1 point
  17. Need the originals Not able
    1 point
  18. 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
  19. Can I have your script created version for the NT8, please, I will tried it on my end.
    1 point
  20. 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
  21. Not a quick fix but will get it done oneday soon Thanks
    1 point
  22. tradevelopers

    WOLFE WAVE

    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
  23. here its the setting https://workupload.com/file/DSxHmRtCzVc
    1 point
  24. apmoo

    proedgetrading.com

    Check your folder and make sure you deleted the older dll. This fix should be straight
    1 point
  25. Welcome to Indo-Investasi.com. Please feel free to browse around and get to know the others. If you have any questions please don't hesitate to ask.
    1 point
  26. https://workupload.com/file/9ERbPtxMsFc Thanks
    1 point
  27. https://workupload.com/file/WH7fbpMVKw5 Thanks
    1 point
  28. apmoo

    proedgetrading.com

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