Leaderboard
Popular Content
Showing content with the highest reputation on 04/27/25 in all areas
-
https://workupload.com/file/rekAuctABEx Thanks12 points
-
grayboxtrading.com
⭐ goldeneagle1 and 11 others reacted to ⭐ apmoo for a topic
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 Thanks12 points -
ezbot.me
⭐ goldeneagle1 and 6 others reacted to kimsam for a topic
here you go https://workupload.com/file/YYQmDysG9797 points -
grayboxtrading.com
⭐ goldeneagle1 and 4 others reacted to ⭐ apmoo for a topic
I'm looking for the Autotrader ANYONE? https://workupload.com/file/SPG8EAtp4Kb Thanks5 points -
Ekitai & Seihai Need Unlocking
fxzero.dark and 3 others reacted to ⭐ apmoo for a topic
Send a folder of more https://workupload.com/file/AFkLajw4vwc Thanks4 points -
eminifuturesdaytrader.com
⭐ goldeneagle1 and 2 others reacted to ⭐ apmoo for a topic
https://workupload.com/file/qdUDUBYDHzC roddizon1978 keep us posted Thanks3 points -
Ekitai & Seihai Need Unlocking
⭐ goldeneagle1 and one other reacted to TickHunter for a topic
These still need to be unlocked. https://whop.com/kaizens-edge/ EkitaiPOC_v2.0_NT8.zip Seihai_v3.1_NT8.zip2 points -
files need to fix @apmoo
⭐ goldeneagle1 and one other reacted to ⭐ apmoo for a topic
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. $$$$$ Thanks2 points -
grayboxtrading.com
⭐ rcarlos1947 and one other reacted to ⭐ mangrad for a topic
@apmoo Your effort reflects your dedication to community support without expectation. Wonderful human being.2 points -
https://www.hawk-trading.com/
⭐ mangrad and one other reacted to ⭐ laser1000it for a topic
at this point we have solved all the trading trouble we enter Long when the system show Short and vice versa 🙂🙂🙂2 points -
grayboxtrading.com
raj1301 and one other reacted to Ninja_On_The_Roof for a topic
https://nexusfi.com/showthread.php?t=599672 points -
eminifuturesdaytrader.com
fdeuf and one other reacted to TickHunter for a topic
2 points -
harmonytradingsystem.com [Request]
⭐ goldeneagle1 and one other reacted to ⭐ apmoo for a topic
https://workupload.com/file/waJM3znEGLa Thanks2 points -
ai.thealgotrader.live
Flashtrader reacted to ⭐ apmoo for a topic
Thanks https://workupload.com/file/YvnVazZvzLZ1 point -
ezbot.me
⭐ goldeneagle1 reacted to alodante for a topic
need to be fix. https://u.pcloud.link/publink/show?code=kZyJOm5ZLN7WtWUKe8jpHojsgV1nW4GWtryV1 point -
files need to fix @apmoo
⭐ goldeneagle1 reacted to TRADER for a topic
https://workupload.com/archive/msZcWpzbJw1 point -
1 point
-
WOLFE WAVE
Chidiroglou reacted to roddizon1978 for a topic
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.txt1 point -
WOLFE WAVE
Ninja_On_The_Roof reacted to roddizon1978 for a topic
Can I have your script created version for the NT8, please, I will tried it on my end.1 point -
WOLFE WAVE
Ninja_On_The_Roof reacted to roddizon1978 for a topic
1 point -
Quick Trade Ninja Latest Version Needs Unlocking
⭐ goldeneagle1 reacted to ⭐ apmoo for a topic
Not a quick fix but will get it done oneday soon Thanks1 point -
1 point
-
WOLFE WAVE
⭐ nadjib reacted to tradevelopers for a topic
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 -
harmonytradingsystem.com [Request]
⭐ goldeneagle1 reacted to alodante for a topic
here its the setting https://workupload.com/file/DSxHmRtCzVc1 point -
Check your folder and make sure you deleted the older dll. This fix should be straight1 point
-
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
-
timekeepertrading.de
⭐ aniketp007 reacted to ⭐ apmoo for a topic
https://workupload.com/file/9ERbPtxMsFc Thanks1 point -
aep-international.net
⭐ goldeneagle1 reacted to ⭐ apmoo for a topic
https://workupload.com/file/WH7fbpMVKw5 Thanks1 point -
https://workupload.com/file/FfkNvACyMff Thanks1 point
-
[Req]- Rob Smith The Strat Course
⭐ sapperindi reacted to ⭐ sherbaaz for a topic
Hi, If anybody has the above-mentioned course kindly share. https://sepiagroup.com/product/rob-smiths-official-strat-course/1 point