Announcement

Collapse
No announcement yet.

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:

    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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        599 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        345 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        103 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        558 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        558 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X