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

ask/bid volume difference bars

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

    ask/bid volume difference bars

    Good Afternoon to All,

    I need to know how to include this indicator in NT8, or how to custom build it myself for this platform. Thks

    Ask/Bid Volume Difference Bars

    This study displays candlestick bars which represent the difference between Ask Volume and Bid Volume for each of the main price bars in the chart. The High of a candlestick bar indicates the maximum difference between Ask Volume and Bid Volume that occurred during the formation of the main price graph bar. The Low of a candlestick bar indicates the minimum difference between the Ask Volume and Bid Volume during the formation of the main price graph bar.
    Last edited by Amedhs; 07-25-2018, 12:43 PM.

    #2
    Hello Amedhs,

    Thank you for your note.

    How do you define ask volume and bid volume?

    I look forward to your reply.
    Alan P.NinjaTrader Customer Service

    Comment


      #3
      Hello Amedhs,

      I received your PM. Going forward we typically prefer to handle communication via the forum or email.

      To do this you would need to pull into the indicator/strategy a tick series and a bid and ask series.

      The following would be an example of the syntax for the tick series,
      Code:
      AddDataSeries(BarsPeriodType.Tick, 1);
      The following would be the syntax you would need to use to pull in the Bid and Ask Series,
      Code:
      AddDataSeries(string instrumentName, BarsPeriodType periodType, int period, MarketDataType marketDataType)
      I suggest reading about both at the following section of our helpguide,


      You should see the following link on using historical bid/ask series,


      Then you would need to write the logic to compare whether the tick occurred at the bid/ask series. I would suggest looking at the VolumeProfile indicator preloaded with Ninjatrader for an example of how you might set this up.

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

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      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
      5 views
      0 likes
      Last Post cls71
      by cls71
       
      Started by mjairg, 07-20-2023, 11:57 PM
      3 responses
      214 views
      1 like
      Last Post PaulMohn  
      Started by TheWhiteDragon, 01-21-2019, 12:44 PM
      4 responses
      547 views
      0 likes
      Last Post PaulMohn  
      Working...
      X