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

Guidance about built a ChartStyle + OnMarketData

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

    Guidance about built a ChartStyle + OnMarketData

    HiLow Ninjas

    I need to develop a new ChartStyle, I woul like to know how can i access the onMarketData method inside of the ChartStyle code??
    I asked this because a need to reproduce inside the ChartStyle's code a MiniBook.
    If is not possible, how can I accses the bid and ask value and volume like a code below:

    protected override void OnMarketData(MarketDataEventArgs e)
    {

    if (e.MarketDataType == MarketDataType.Ask)
    {
    // do something
    }
    if (e.MarketDataType == MarketDataType.Bid)
    {
    // do something
    }
    if (e.MarketDataType == MarketDataType.Last)
    {
    // do something
    }
    }
    Thanks

    #2
    Hello MarceloF,

    Welcome to the forums!

    You will not be able to use OnMarketData() in a ChartStyle. However, I would advise to use GetBid() and GetAsk() to get the bid/ask from a ChartStyle. Volume can be retrieved with GetVolume().

    I have provided links to our openly available documentation on these items.

    GetBid() - https://ninjatrader.com/support/help...-us/getbid.htm

    GetAsk() - https://ninjatrader.com/support/help...-us/getask.htm

    GetVolume() - https://ninjatrader.com/support/help.../getvolume.htm

    If there is anything else I can do to be of further assistance, please let me know.
    JimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CortexZenUSA, Today, 12:53 AM
    0 responses
    1 view
    0 likes
    Last Post CortexZenUSA  
    Started by CortexZenUSA, Today, 12:46 AM
    0 responses
    1 view
    0 likes
    Last Post CortexZenUSA  
    Started by usazencortex, Today, 12:43 AM
    0 responses
    5 views
    0 likes
    Last Post usazencortex  
    Started by sidlercom80, 10-28-2023, 08:49 AM
    168 responses
    2,266 views
    0 likes
    Last Post sidlercom80  
    Started by Barry Milan, Yesterday, 10:35 PM
    3 responses
    13 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Working...
    X