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

What method to use instead of GetDayBar to get the current bar from within an AddOn?

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

    What method to use instead of GetDayBar to get the current bar from within an AddOn?

    Hello,

    I am using the AddOn Framework sample code as basis for my add on.

    I am using the DoGetBars function to fetch a dozen of bars of historical data (daily bars). I then use GetDayBar on the bars object to access the data.
    However, the documentation says GetDayBar should only be used for getting historical bars and not the current bar.

    Is there another method I can use in an addon to get reliable OHL information of the current bar, similar e.g. to what CurrentDayOHL() does in the Indicator realm?

    Any help or information would be much appreciated; Also, if possible, it would be useful to understand why the use of GetDayBar() works for historical but not current bars.

    Many thanks,

    Libor
    Last edited by liborc; 06-15-2017, 04:48 PM.

    #2
    Hi Libor,

    at the AddOnFramework sample have a look at DoBarsRequest(). For the loaded instrument DoBarsRequest() sets realtime quotes to true. Now the current bars OHLC can be found at OnBarUpdate() for the loaded instrument:
    Code:
    e.BarsSeries.GetOpen(i),
    e.BarsSeries.GetHigh(i),
    e.BarsSeries.GetLow(i),
    e.BarsSeries.GetClose(i),

    Comment


      #3
      Hello liborc,

      The AddonFrameWork GoSpvC is referring to can be found here,

      A way to get the high of the day would be in OnMarketData, you could use something like the following,
      Code:
      	if (e.MarketDataType == MarketDataType.DailyHigh)
      	{
      	    NinjaTrader.Code.Output.Process(e.Price.ToString(), PrintTo.OutputTab1);	
      	}
      Which would print the daily high to the output window.

      You could see MarketData section of our helpguide,


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

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by trilliantrader, 04-18-2024, 08:16 AM
      6 responses
      26 views
      0 likes
      Last Post trilliantrader  
      Started by arvidvanstaey, Yesterday, 02:19 PM
      5 responses
      14 views
      0 likes
      Last Post NinjaTrader_Zachary  
      Started by Rapine Heihei, Yesterday, 08:25 PM
      1 response
      12 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by Mongo, Yesterday, 11:05 AM
      6 responses
      27 views
      0 likes
      Last Post Mongo
      by Mongo
       
      Started by ct, 05-07-2023, 12:31 PM
      7 responses
      207 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Working...
      X