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

indicator plot

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

  • koganam
    replied
    Originally posted by fiddy View Post
    thanks Koganam for advice. i did try this but then when i created another indicator and refered back to the dataseries i got msg when i tried to compile

    "is inaccessible due to its protection level"
    You must have its access level as public if you want to access it from outside. Let us see your sample code.

    Leave a comment:


  • fiddy
    replied
    thanks Koganam for advice. i did try this but then when i created another indicator and refered back to the dataseries i got msg when i tried to compile

    "is inaccessible due to its protection level"

    Leave a comment:


  • koganam
    replied
    Originally posted by fiddy View Post
    how can u make a dataset within an indicator accessible to other indicators without plotting them.

    below is what i currently have.
    i can make StDevi accessible to other indicators by plotting them in the origin indicator. i would like to make it accessible but not have to plot Stdev in the original indicator. (i am plotting other datasets in the origin indicator which use StDevi set as part of the calculations)

    protected override void Initialize()
    Add(new Plot(Color.FromKnownColor(KnownColor.Red), PlotStyle.Line, "StdDevi"))

    protected override void OnBarUpdate()
    StdDevi .Set(StdDev(trueRange, LookBack)[0]);

    #region Properties
    public DataSeries StdDevi
    {
    get { return Values[0]; }
    }
    You set it up as a DataSeries, not as a Plot.

    ref: http://ninjatrader.com/support/helpG...ries_class.htm

    Leave a comment:


  • fiddy
    replied
    how can u make a dataset within an indicator accessible to other indicators without plotting them.

    below is what i currently have.
    i can make StDevi accessible to other indicators by plotting them in the origin indicator. i would like to make it accessible but not have to plot Stdev in the original indicator. (i am plotting other datasets in the origin indicator which use StDevi set as part of the calculations)

    protected override void Initialize()
    Add(new Plot(Color.FromKnownColor(KnownColor.Red), PlotStyle.Line, "StdDevi"))

    protected override void OnBarUpdate()
    StdDevi .Set(StdDev(trueRange, LookBack)[0]);

    #region Properties
    public DataSeries StdDevi
    {
    get { return Values[0]; }
    }

    Leave a comment:


  • koganam
    replied
    Originally posted by BigRo View Post
    shouldnt it be technically still be doable in a single indicator? ofc you would still have to apply the indicator 2 times to the chart. one time for each panel. so its basicly the same has having too diffrent indicators. but at least you could contain all the code in that one indicator file if you so wish to.
    You can certainly do the latter. Pretty much that is what the first response said that you should do.

    Leave a comment:


  • BigRo
    replied
    shouldnt it be technically still be doable in a single indicator? ofc you would still have to apply the indicator 2 times to the chart. one time for each panel. so its basicly the same has having too diffrent indicators. but at least you could contain all the code in that one indicator file if you so wish to.
    Last edited by BigRo; 12-22-2015, 02:46 PM.

    Leave a comment:


  • NinjaTrader_ShawnB
    replied
    Hello fiddy,


    This can't be done from a single indicator. You would have to create two seperate indicators to accomplish plotting two values, where one is in the Price Panel and one is in the Indicator Panel.


    Here is the DrawOnPricePanel Help Guide to assist you further.

    Leave a comment:


  • fiddy
    started a topic indicator plot

    indicator plot

    how do u get one set of values in an indicator to plot on the chart panel 1 and another set of values to plot as oscillator on panel 2

Latest Posts

Collapse

Topics Statistics Last Post
Started by judysamnt7, 03-13-2023, 09:11 AM
4 responses
59 views
0 likes
Last Post DynamicTest  
Started by ScottWalsh, Today, 06:52 PM
4 responses
36 views
0 likes
Last Post ScottWalsh  
Started by olisav57, Today, 07:39 PM
0 responses
7 views
0 likes
Last Post olisav57  
Started by trilliantrader, Today, 03:01 PM
2 responses
21 views
0 likes
Last Post helpwanted  
Started by cre8able, Today, 07:24 PM
0 responses
10 views
0 likes
Last Post cre8able  
Working...
X