Chidiroglou Posted April 23 Report Share Posted April 23 Hallo Leute, hat jemand den WolfeWave Indicator ? roddizon1978 1 Quote Link to comment Share on other sites More sharing options...
alodante Posted April 23 Report Share Posted April 23 here you are for ThinkorSwin https://funwiththinkscript.com/indicators/wolfe-wave/ rp_WolfeWave_ScanSTUDY.ts rp_Wolfe_WaveSTUDY.ts ⭐ ralph kabota, Ninja_On_The_Roof, roddizon1978 and 1 other 3 1 Quote Link to comment Share on other sites More sharing options...
Chidiroglou Posted Wednesday at 09:50 PM Author Report Share Posted Wednesday at 09:50 PM Kann jemand das zum NT8 Optimieren? Quote Link to comment Share on other sites More sharing options...
Ninja_On_The_Roof Posted Wednesday at 11:05 PM Report Share Posted Wednesday at 11:05 PM 1 hour ago, Chidiroglou said: Kann jemand das zum NT8 Optimieren? Does this mean, "Do you have it for NinjaTrader 8?"🤔 Quote Link to comment Share on other sites More sharing options...
Chidiroglou Posted Wednesday at 11:17 PM Author Report Share Posted Wednesday at 11:17 PM Vor 11 Minuten sagte Ninja_On_The_Roof: Bedeutet das: „Haben Sie es für NinjaTrader 8?“🤔 Vor 11 Minuten sagte Ninja_On_The_Roof: Bedeutet das: „Haben Sie es für NinjaTrader 8?“🤔 Vor 11 Minuten sagte Ninja_On_The_Roof: Bedeutet das: „Haben Sie es für NinjaTrader 8?“🤔 Vor 11 Minuten sagte Ninja_On_The_Roof: Bedeutet das: „Haben Sie es für NinjaTrader 8?“🤔 Kann jemand das zum NT8 Optimieren? Nein leider nicht , nur eine NT7 DATEI Quote Link to comment Share on other sites More sharing options...
alodante Posted Wednesday at 11:35 PM Report Share Posted Wednesday at 11:35 PM no Quote Link to comment Share on other sites More sharing options...
roddizon1978 Posted Wednesday at 11:37 PM Report Share Posted Wednesday at 11:37 PM (edited) Thank You, good for TOS. Wolfe Wave is a good pattern recognition indicator. Now I need somebody to convert it to NT8, maybe I ask Nexus Fi people to convert it. Edited Wednesday at 11:39 PM by roddizon1978 hybrid76 and Chidiroglou 2 Quote Link to comment Share on other sites More sharing options...
tradevelopers Posted Thursday at 12:55 PM Report Share Posted Thursday at 12:55 PM show code and screens here i willtry Quote Link to comment Share on other sites More sharing options...
roddizon1978 Posted Friday at 09:54 PM Report Share Posted Friday at 09:54 PM Here it is, in TOS script, I copy it to a Word document rp_Wolve_Wave.docx ⭐ klhk 1 Quote Link to comment Share on other sites More sharing options...
tradevelopers Posted Saturday at 02:13 AM Report Share Posted Saturday at 02:13 AM (edited) 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; } } } } } } Edited Saturday at 02:19 AM by tradevelopers ⭐ nadjib and Ninja_On_The_Roof 1 1 Quote Link to comment Share on other sites More sharing options...
tradevelopers Posted Saturday at 02:20 AM Report Share Posted Saturday at 02:20 AM (edited) Edited Saturday at 02:20 AM by tradevelopers Ninja_On_The_Roof 1 Quote Link to comment Share on other sites More sharing options...
roddizon1978 Posted Saturday at 11:12 PM Report Share Posted Saturday at 11:12 PM (edited) 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 ? Edited Sunday at 12:01 AM by roddizon1978 adding Ninja_On_The_Roof 1 Quote Link to comment Share on other sites More sharing options...
roddizon1978 Posted Saturday at 11:49 PM Report Share Posted Saturday at 11:49 PM 21 hours ago, tradevelopers said: Can I have your script created version for the NT8, please, I will tried it on my end. Ninja_On_The_Roof 1 Quote Link to comment Share on other sites More sharing options...
tradevelopers Posted Sunday at 01:20 AM Report Share Posted Sunday at 01:20 AM YES I CAN Quote Link to comment Share on other sites More sharing options...
roddizon1978 Posted Sunday at 02:03 AM Report Share Posted Sunday at 02:03 AM 2 hours ago, roddizon1978 said: Can I have your script created version for the NT8, please, I will tried it on my end. Quote Link to comment Share on other sites More sharing options...
roddizon1978 Posted Sunday at 02:06 AM Report Share Posted Sunday at 02:06 AM (edited) 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 Edited Sunday at 02:07 AM by roddizon1978 kimsam and Chidiroglou 2 Quote Link to comment Share on other sites More sharing options...
Chidiroglou Posted yesterday at 06:00 PM Author Report Share Posted yesterday at 06:00 PM Haben wir keinen Programmierer unter uns, wo es für den NT8 umschreiben kann? Quote Link to comment Share on other sites More sharing options...
roddizon1978 Posted yesterday at 09:36 PM Report Share Posted yesterday at 09:36 PM 3 hours ago, Chidiroglou said: Haben wir keinen Programmierer unter uns, wo es für den NT8 umschreiben kann? Don't we have a programmer among us who can rewrite it for the NT8? Quote Link to comment Share on other sites More sharing options...
Chidiroglou Posted 22 hours ago Author Report Share Posted 22 hours ago I tried to create a new indicator according to the file with NinjaScript Editor but an error appears Quote Link to comment Share on other sites More sharing options...
⭐ nadjib Posted 4 hours ago Report Share Posted 4 hours ago (edited) if you have paid gemini or claude latest version he can build this without any error , claude is working, use mistral with deepseek thinking to solve error for free Edited 3 hours ago by nadjib Quote Link to comment Share on other sites More sharing options...
Chidiroglou Posted 1 hour ago Author Report Share Posted 1 hour ago Danke für deine info, ich habe es mit ChaGPT, mit DeepSeek versucht und beim komplimieren tauchen fehler auf. Quote Link to comment Share on other sites More sharing options...
⭐ nadjib Posted 57 minutes ago Report Share Posted 57 minutes ago deepseek and claude will get complet working code, chatgpt it completly dont understand complex code for ninjatrader all time failed , claude and deepseek it pure gold , also chinese qween 3.1 , use poe.com account will get free data each day for free 😍 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.