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 CarlTrading, 03-31-2026, 09:41 PM
        1 response
        78 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        40 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        63 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        63 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        54 views
        0 likes
        Last Post CarlTrading  
        Working...
        X