Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

How to code a scanner by using last minute volume spike?

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

    How to code a scanner by using last minute volume spike?

    I am coding a scanner that must scan the market in order to select the stocks that are breaking up on volume and have had last three minutes volume spike and last minute volume spike.

    I am using Level I Real Time Data Feed from Nasdaq.


    I would like to know your inputs and your technical support about which of the following criterion must be applied?:


    a. Relative volume: Last minute volume compare to same minute "n" weeks ago. What should be the value of "n"?


    b. Compare the volume over the last minute to the volume expected in a 1 minute period? How the volume expected in a 1 minute period should be calculated?


    c. Compare the volume over the last three minutes to the volume expected in a 3 minutes period? How the volume expected in a 3 minute period should be calculated?


    Looking forward to receiving your inputs.


    Regards

    #2
    Hello Merv2021,

    Thank you for your note.

    If wanted to get the volume of a bar some weeks ago, you could use a for loop. For example under OnBarUpdate you could use,

    Code:
    if(CurrentBar<200) return;
    
    DateTime DateAndTimeUISelect = new DateTime(2018, 8, 1, 9, 0, 0);
    
    for(int i=0; i<200; i++)
    {
    if(Time[i].Date == DateAndTimeUISelect.Date)
    {
    Print(Close[i].ToString());
    break;
    }
    }
    Regarding the rest of your logic, it would be out of the scope of our support desk to provide the logic for how you could do this. If you’d like I can have someone reach out with a list of third parties who could assist you in the design.

    Please let us know if you need further assistance.
    Alan P.NinjaTrader Customer Service

    Comment


      #3
      Thanks Alan,

      Yes, please i need to get the list with the third parties who can assist me on this aspect.

      Kind regards,

      Comment


        #4
        Hello Merv2021,

        This is Jared from the NinjaTrader Business Development team responding on behalf of my colleague Alan.

        You can search our extensive library of NinjaScript consultants through the link below. Simply enter a consultant name or search by using our filter categories. Once you have identified your consultants of choice, please visit each consultant's site for more information or contact them directly to learn more:

        Search trading indicators, apps and services to personalize your NinjaTrader software. Explore custom trading indicators, automated strategies, free trading apps & more!


        You can locate the contact information for the consultants on their direct websites for any additional questions you may have. Since these consultants are third-party services for NinjaTrader, all pricing and support information will need to be obtained through the consultant.

        Let me know if I may be of further assistance

        This NinjaTrader Ecosystem website is for educational and informational purposes only and should not be considered a solicitation to buy or sell a futures contract or make any other type of investment decision. The companies and services listed on this website are not to be considered a recommendation and it is the reader's responsibility to evaluate any product, service, or company. NinjaTrader Ecosystem, LLC is not responsible for the accuracy or content of any product, service or company linked to on this website.
        Jared M.NinjaTrader Customer Service

        Comment


          #5
          Hi Jared thank you for your soon reply.

          Jared which of these three consultants will suit best for my need?

          - tradingsystems.ca

          - microtrends.co

          - Custom Programming Services - by Stuart Okorofsky

          I need a real Quant who can transform my trading idea into a successful quantitative strategy and then develop my fully automated trading system.

          Pleas I will deeply appreciate your expert advised because i have been struggling a lot with fake quants and inexperienced algo developers.

          Thanks Jared.

          Best regards
          Last edited by Merv2021; 09-15-2018, 11:31 AM.

          Comment


            #6
            Hello Merv2021,

            We are not able to provide recommendations or endorsements for specific vendors. I encourage you to reach out directly to the vendors you are considering to learn more information on which may be the right fit for you.
            Jared M.NinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Aviram Y, Today, 05:29 AM
            0 responses
            1 view
            0 likes
            Last Post Aviram Y  
            Started by quantismo, 04-17-2024, 05:13 PM
            3 responses
            25 views
            0 likes
            Last Post NinjaTrader_Gaby  
            Started by ScottWalsh, 04-16-2024, 04:29 PM
            7 responses
            34 views
            0 likes
            Last Post NinjaTrader_Gaby  
            Started by cls71, Today, 04:45 AM
            0 responses
            6 views
            0 likes
            Last Post cls71
            by cls71
             
            Started by mjairg, 07-20-2023, 11:57 PM
            3 responses
            216 views
            1 like
            Last Post PaulMohn  
            Working...
            X