Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Custom Indicator (freelance coding)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Custom Indicator (freelance coding)

    Hey guys, I hope I'm not breaking the rules here as I'm simply seeking information.

    I'm looking to get 2 indicators done based on the time and sales.
    One indicator will alert when there are no orders filled so nothing new on time and sales for x second(s).
    The other will count contracts/shares in a single second and group them together to alert for blocks for example if I had the setting set to 20, if 20 or more sells happened in a single second I would get the alert. I'm looking to pay someone to do this for me but I can't seem to find a website that lets me find someone for freelance coding with ninjatrader 8 so if someone here can do this (if this is allowed) or if someone can point me in the direction of a place where this can be done, I would very much appreciate it.

    #2
    Hello imjustkaze,

    Welcome to the NinjaTrader forums!

    Have you already started developing these scripts and have gotten stuck?

    At what point are you stuck?


    This section of the forum is for development. Is this something you are developing or something you want to purchase?
    (The Platform Technical Support is the section of the forums for questions that are not related to development)

    The NinjaTrader Ecosystem is where you can search for vendors if you are wanting something to create this for you, or if you are looking to purchase this. Contact info [at] ninjatraderecosystem [dot] com for further information.



    Below is a link to an example of the logic that populates the Time & Sales window.
    http://ninjatrader.com/support/forum...265#post503265

    You can add or subtract minutes or seconds from a DateTime or TimeSpan object for comparisons.

    For example:

    private DateTime lastUpdateTime;

    if (lastUpdateTime.AddSeconds(1) < marketDataUpdate.Time)
    {
    // new update is at least 1 second past the previous update, trigger action
    }

    lastUpdateTime = marketDataUpdate.Time;


    An integer can be used for a counter.
    https://ninjatrader.com/support/foru...260#post812260

    An alert can be triggered with Alert().
    https://ninjatrader.com/support/help...​​
    Last edited by NinjaTrader_ChelseaB; 03-14-2021, 04:30 PM.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by imjustkaze View Post
      I'm looking to pay someone to do this for me...
      Goto:
      Search trading indicators, apps and services to personalize your NinjaTrader software. Explore custom trading indicators, automated strategies, free trading apps & more!


      Under the search box, you'll see "Quick Search" links.
      Click on "Programmers".

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by maybeimnotrader, Yesterday, 05:46 PM
      2 responses
      20 views
      0 likes
      Last Post maybeimnotrader  
      Started by adeelshahzad, Today, 03:54 AM
      5 responses
      32 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by stafe, 04-15-2024, 08:34 PM
      7 responses
      32 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by merzo, 06-25-2023, 02:19 AM
      10 responses
      823 views
      1 like
      Last Post NinjaTrader_ChristopherJ  
      Started by frankthearm, Today, 09:08 AM
      5 responses
      22 views
      0 likes
      Last Post NinjaTrader_Clayton  
      Working...
      X