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 define Values output of an indicator without plotting it

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

    How to define Values output of an indicator without plotting it

    How to define Values output of an indicator without plotting it?
    I need it since the Values output could be used as input to another indicator.
    Many thanks, Igal.

    #2
    HI igalml,

    Thanks for your post.

    You can do this with a custom data series that is made public.

    There is a sample that has something like that in our official reference samples, but doesn't quite make an example of this. So I've made a quick indicator as an example for you. This sample creates a public data series of high minus low.

    To call this data series from another indicator use:
    CustomPublicDataSeriesExample().MyData[0]

    For example to Print the value:
    Print(CustomPublicDataSeriesExample().MyData[0].ToString());
    Attached Files
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Thanks a lot.
      How I can plot such data series in the chart from strategy?
      Seems the ADD method can't do it?

      Comment


        #4
        Correct, the Add() method could only add in full indicators and not add a single customized plot. One workaround would be looking into the technique shown in this example here - http://www.ninjatrader.com/support/f...ead.php?t=6651
        BertrandNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by algospoke, 04-17-2024, 06:40 PM
        6 responses
        49 views
        0 likes
        Last Post algospoke  
        Started by arvidvanstaey, Today, 02:19 PM
        4 responses
        11 views
        0 likes
        Last Post arvidvanstaey  
        Started by samish18, 04-17-2024, 08:57 AM
        16 responses
        61 views
        0 likes
        Last Post samish18  
        Started by jordanq2, Today, 03:10 PM
        2 responses
        9 views
        0 likes
        Last Post jordanq2  
        Started by traderqz, Today, 12:06 AM
        10 responses
        21 views
        0 likes
        Last Post traderqz  
        Working...
        X