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

VolumetricData Indicator (to: Tasker-182)

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

    VolumetricData Indicator (to: Tasker-182)

    Hello,
    I found this thread and saw that Tasker-182 created an amazing indicator called "VolumetricData"

    Link:
    https://ninjatrader.com/support/foru...18#post1213118

    I would like to find out how to set up an alert for "If the final delta of the bar (=delta value when the bar closes) is 700 or more, create an alert" using this indicator.

    Could you please share a screenshot?

    Thank you
    Last edited by cstone1004; 01-31-2023, 09:35 PM.

    #2
    Hello, thanks for writing in. You can try an alert like this on this indicator:
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      Since this was the only post I saw regarding Tasker-182's "VolumetricData" indicator, I thought it would be appropriate to query here.
      Since "DeltaSh" Delta Since High & "DeltaSl" Delta Since Low were added after the indicator, I've been trying to modify the script to give me access to the values.
      As I am not a regular script writer and getting very frustrated trying to get it to work, I'm asking for help.
      I thought adding AddPlot(Brushes.Transparent, "DeltaSh"); and AddPlot(Brushes.Transparent, "DeltaSl");​ under the other AddPlots along with
      DeltaSh[0] = barsType.Volumes[CurrentBar].DeltaSh; and DeltaSl[0] = barsType.Volumes[CurrentBar].DeltaSl;​ in the OnBarUpdate() section and lastly
      Print("Delta Since High (bar): " + barsType.Volumes[CurrentBar].DeltaSh); and Print("Delta Since Low (bar): " + barsType.Volumes[CurrentBar].DeltaSl);​
      in the print section might workbut alas, it was not meant to be.
      I tried several changes to make the lines like similar ones but cannot seem to find the right combination.
      Any help would be appreciated so "Thank you in advance"...

      Comment


        #4
        Just replying to my post for others that may be interested.
        Was able to access "Delta Sh" & "Delta Sl" after adding the lines from my previous post, along with:

        [Browsable(false)]
        [XmlIgnore]
        public Series<double> DeltaSh
        {
        get { return Values[21]; }
        }

        [Browsable(false)]
        [XmlIgnore]
        public Series<double> DeltaSl
        {
        get { return Values[22]; }
        }​

        in the "#region Properties" section...
        Happy Trading !

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by usazencort, Today, 01:16 AM
        0 responses
        1 view
        0 likes
        Last Post usazencort  
        Started by kaywai, 09-01-2023, 08:44 PM
        5 responses
        603 views
        0 likes
        Last Post NinjaTrader_Jason  
        Started by xiinteractive, 04-09-2024, 08:08 AM
        6 responses
        22 views
        0 likes
        Last Post xiinteractive  
        Started by Pattontje, Yesterday, 02:10 PM
        2 responses
        21 views
        0 likes
        Last Post Pattontje  
        Started by flybuzz, 04-21-2024, 04:07 PM
        17 responses
        230 views
        0 likes
        Last Post TradingLoss  
        Working...
        X