⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥
Leaderboard
Popular Content
Showing content with the highest reputation on 03/28/2026 in Posts
-
Coming soon... "KimSam Ai trading system on ninjatrader " https://ibb.co/0yv6s97K20 points
-
KimSam Ai trading system on ninjatrader
bryandarktuni and 3 others reacted to kimsam for a topic
If u mean about cost .. its working on few cost .. 1 -3 $ max a month..4 points -
House Of Live Trades
pygmalion5000 and 3 others reacted to Ninja_On_The_Roof for a topic
Over time, your Ninjatrader becomes heavy and filled with junkies day in and day out after using it. I have found this tool to clean up the mess. I think it is very useful. Kinda make your Ninjatrader all fresh and clean again. It also comes with the "auto log-in" function. It is kinda annoying that I would have to punch in my password everytime I log in. Yes, I know. It is for security protection but hey, if you wanna skip this step. Then use it. https://limewire.com/d/datun#k83IR7948G4 points -
Yes .. many ai agents + ML3 points
-
im sharing my own script please .. you need some basic Payton edit logic .. dont ask stupid questions .. ask gpt for help .. https://workupload.com/file/CJ7ZDjxyxt2 i will add more info soon ...2 points
-
AutoFibIndicator: Could someone please get this indicator working?
techfo and one other reacted to swiattrader for a topic
Find below the Revised AutoFibIndicator Script. Attached is a screen shot showing the compiled script (NT8 version: 8.1.6.3 64-bit). Enjoy! #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.Data; using NinjaTrader.NinjaScript; using NinjaTrader.Core.FloatingPoint; using NinjaTrader.NinjaScript.DrawingTools; #endregion namespace NinjaTrader.NinjaScript.Indicators { public class AutoFibIndicator : Indicator { private MAX maxIndicator; private MIN minIndicator; [NinjaScriptProperty] [Range(1, int.MaxValue)] [Display(Name="Lookback", Order=1, GroupName="Parameters")] public int Lookback { get; set; } #region Color Properties [XmlIgnore] [Display(Name="Fib 38.2 Color", Order=2, GroupName="Colors")] public Brush Fib382Color { get; set; } [Browsable(false)] public string Fib382ColorSerializable { get { return Serialize.BrushToString(Fib382Color); } set { Fib382Color = Serialize.StringToBrush(value); } } [XmlIgnore] [Display(Name="Fib 50.0 Color", Order=3, GroupName="Colors")] public Brush Fib50Color { get; set; } [Browsable(false)] public string Fib50ColorSerializable { get { return Serialize.BrushToString(Fib50Color); } set { Fib50Color = Serialize.StringToBrush(value); } } [XmlIgnore] [Display(Name="Fib 61.8 Color", Order=4, GroupName="Colors")] public Brush Fib618Color { get; set; } [Browsable(false)] public string Fib618ColorSerializable { get { return Serialize.BrushToString(Fib618Color); } set { Fib618Color = Serialize.StringToBrush(value); } } [XmlIgnore] [Display(Name="Long Signal Color", Order=5, GroupName="Colors")] public Brush LongColor { get; set; } [Browsable(false)] public string LongColorSerializable { get { return Serialize.BrushToString(LongColor); } set { LongColor = Serialize.StringToBrush(value); } } [XmlIgnore] [Display(Name="Short Signal Color", Order=6, GroupName="Colors")] public Brush ShortColor { get; set; } [Browsable(false)] public string ShortColorSerializable { get { return Serialize.BrushToString(ShortColor); } set { ShortColor = Serialize.StringToBrush(value); } } #endregion protected override void OnStateChange() { if (State == State.SetDefaults) { Description = @"Automatically plots Fibonacci levels based on a lookback period."; Name = "AutoFibIndicator"; Calculate = Calculate.OnBarClose; IsOverlay = true; DisplayInDataBox = true; DrawOnPricePanel = true; IsSuspendedWhileInactive = true; Lookback = 20; Fib382Color = Brushes.DodgerBlue; Fib50Color = Brushes.Gray; Fib618Color = Brushes.Gold; LongColor = Brushes.Lime; ShortColor = Brushes.Red; } else if (State == State.DataLoaded) { maxIndicator = MAX(High, Lookback); minIndicator = MIN(Low, Lookback); } } protected override void OnBarUpdate() { if (CurrentBar < Lookback) return; double swingHigh = maxIndicator[0]; double swingLow = minIndicator[0]; double range = swingHigh - swingLow; if (range <= 0) return; double fib382 = swingHigh - (range * 0.382); double fib50 = swingHigh - (range * 0.5); double fib618 = swingHigh - (range * 0.618); // Using static tags for lines ensures they "move" with the lookback rather than creating new ones Draw.Line(this, "Fib382", false, Lookback, fib382, 0, fib382, Fib382Color, DashStyleHelper.Solid, 2); Draw.Line(this, "Fib50", false, Lookback, fib50, 0, fib50, Fib50Color, DashStyleHelper.Dash, 2); Draw.Line(this, "Fib618", false, Lookback, fib618, 0, fib618, Fib618Color, DashStyleHelper.Solid, 3); // Signal Logic // Long: Close crosses above 61.8% if (CrossAbove(Close, fib618, 1)) { Draw.ArrowUp(this, "Long" + CurrentBar, true, 0, Low[0] - (5 * TickSize), LongColor); } // Short: Close crosses below 61.8% if (CrossBelow(Close, fib618, 1)) { Draw.ArrowDown(this, "Short" + CurrentBar, true, 0, High[0] + (5 * TickSize), ShortColor); } } } }2 points -
Haha limited edition 😄Every detail counts .. Name is just part of the user experience 😌2 points
-
Fixed ... QPilotPro_1_0_1_0
lastpago and one other reacted to Ninja_On_The_Roof for a topic
I think you could automate this one. I dont see any issues automating it with PredatorX or other known software. On a side note, I do actually like this QPilot Pro. It is light, easy on the eyes and most importantly, it produces good signals. I also like the panel, works great combined with posted Maverick Radar and Sky's MTF Panel. The only thing I did was to uncheck the Target and Volume Peak. They are just cluttering and clouding the chart. Since I have my own targets set in mind and with other indicators to guide me with the potential targets, I just dont need to have QPilot's targets and Volume Exhaustion. This, cleans up the chart a little bit. But this is just me. Nothing wrong keeping them if you feel like you actually need them there. Just my humble 5 cents worth.🤩2 points -
1 point
-
LUX ALGO
⭐ RichardGere reacted to Ninja_On_The_Roof for a topic
https://limewire.com/d/TfsDk#oC14QBFBzu1 point -
Let me finish it first..1 point
-
Cheers. https://workupload.com/file/rSnaTjnWqdk1 point
-
The problem I found, and I only trade ES so I cannot help you with NQ. I have had to change my settings this week due to the market changes. I seem to go back every 2 weeks to change my settings in order to tweak per market. I find that one week the signals are to aggressive and I get chopped to hell and the next week they are not aggressive enough and I miss the move. The good is I have now just keep these templates so depending on how the first 15 - 20 minutes looks then I choose what to use. I guess where my point is not one setting is going to work in this crazy market.1 point
-
RObos specialist in MGC, needs to educate
Ze_Pequeno reacted to trader88 for a topic
I get errors when trying to add those strategies to the chart: Error on calling "OnStateChange" methid: Object reference not set to an instance of object. Are those original files?1 point -
KimSam NT8 GEX Calc
kimsam reacted to Ninja_On_The_Roof for a topic
It is so great having an indicator named after you huh Kimsam?🥰1 point -
House Of Live Trades
Ninja_On_The_Roof reacted to KJs for a topic
@Ninja_On_The_Roof Thank You so Much. Genuine Help. You are ultimate Bro..1 point -
WiSE Indicator
amruta reacted to Ninja_On_The_Roof for a topic
https://limewire.com/d/bMZ6q#bL7BAs7TCa1 point -
1 point
-
check thi ud https://workupload.com/archive/7DmRZN8usS1 point
-
ok .. got it ... lets test it .. https://workupload.com/file/R5cN4Y8DAVY its as new indicator and py connector .. u can keep the old running ..1 point
-
I just passed yesterday my first prop full auto with axios, and did only winning the whole week and for just 1 trade a day, using one of the last template posted here, and slightly edited with 2 trades and breakeven but just did a quick test on this one for the last month and is not profitable. What time zone is setup with 10.30?1 point
-
1 point
-
1 point
-
Leavitt Autotrader -
ttthjjh reacted to Ninja_On_The_Roof for a topic
I think it is from the White House, that Press Secretary lady named Leavitt.🤪1 point -
Does anyone have the Anchored Volume Profile indicator?
techfo reacted to fxtrader99 for a topic
Here you go. AdvancedVolumeProfile.zip1 point -
WiSE Indicator
Ninja_On_The_Roof reacted to MaxNguni for a topic
With educated software, especially stuff that need dll's, expect there to be complaints from the antivirus. Whether you decide to allow the files is up to you.1 point