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 trilliantrader, 04-18-2024, 08:16 AM
        4 responses
        18 views
        0 likes
        Last Post trilliantrader  
        Started by mgco4you, Today, 09:46 PM
        1 response
        7 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by wzgy0920, Today, 09:53 PM
        0 responses
        9 views
        0 likes
        Last Post wzgy0920  
        Started by Rapine Heihei, Today, 08:19 PM
        1 response
        10 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by Rapine Heihei, Today, 08:25 PM
        0 responses
        10 views
        0 likes
        Last Post Rapine Heihei  
        Working...
        X