Jump to content

⤴️-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

  1. Coming soon... "KimSam Ai trading system on ninjatrader " https://ibb.co/0yv6s97K
    20 points
  2. If u mean about cost .. its working on few cost .. 1 -3 $ max a month..
    4 points
  3. 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#k83IR7948G
    4 points
  4. Yes .. many ai agents + ML
    3 points
  5. kimsam

    KimSam NT8 GEX Calc

    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
  6. 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
  7. kimsam

    KimSam NT8 GEX Calc

    Haha limited edition 😄Every detail counts .. Name is just part of the user experience 😌
    2 points
  8. 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
  9. Chidiroglou

    Sky's MTF Panel

    Sky_MTF-Panel.zip
    1 point
  10. https://limewire.com/d/TfsDk#oC14QBFBzu
    1 point
  11. Let me finish it first..
    1 point
  12. Cheers. https://workupload.com/file/rSnaTjnWqdk
    1 point
  13. jetstrade

    House Of Live Trades

    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
  14. 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
  15. It is so great having an indicator named after you huh Kimsam?🥰
    1 point
  16. @Ninja_On_The_Roof Thank You so Much. Genuine Help. You are ultimate Bro..
    1 point
  17. Ninja_On_The_Roof

    WiSE Indicator

    https://limewire.com/d/bMZ6q#bL7BAs7TCa
    1 point
  18. kimsam

    KimSam NT8 GEX Calc

    Running on nq https://ibb.co/d45HrQ6n
    1 point
  19. kimsam

    KimSam NT8 GEX Calc

    check thi ud https://workupload.com/archive/7DmRZN8usS
    1 point
  20. kimsam

    KimSam NT8 GEX Calc

    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
  21. 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
  22. kimsam

    KimSam NT8 GEX Calc

    new update soon .. https://ibb.co/Q3rwSRVs
    1 point
  23. kimsam

    TWST Analyzer Templates

    Not stable yet .. got many updates ..
    1 point
  24. I think it is from the White House, that Press Secretary lady named Leavitt.🤪
    1 point
  25. Here you go. AdvancedVolumeProfile.zip
    1 point
  26. 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

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...