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 cre8able, Yesterday, 04:16 PM
        1 response
        14 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by cre8able, Yesterday, 04:22 PM
        1 response
        13 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by stafe, 04-15-2024, 08:34 PM
        5 responses
        28 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by StrongLikeBull, Yesterday, 04:05 PM
        1 response
        12 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by Mestor, 03-10-2023, 01:50 AM
        14 responses
        375 views
        0 likes
        Last Post z.franck  
        Working...
        X