Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

Recommended Posts

This is an interesting indicator created by Walterw. The Volume Delta plots the number up volume (green) and number of down volume (red) with the larger of the two always on top. This is a very useful visual tool to judge buyers vs sellers per bar.

 

All credits go out to Walterw for the TICK Delta. Also check out the oscillator version of this indicator.

 

Screenshots are attached.

tickdeltasnapshot.jpg.895562b328a0d8d52211c71fa1ef47af.jpg

VOLUME DELTA.ELD

Share this post


Link to post
Share on other sites
Yes there is check out the esignal central website. It's called BidAskVolume.efs or something. Produced by a member of the eSignal development team.

 

Thanks!

 

I just found it...it only works with live data yet it's an excellent indicator...

Share this post


Link to post
Share on other sites

I believe this is one of the most powerful indicators you can use as a trader.

 

I've always been interested in volume and tried to figure out an efficient way to use it but to no avail. Volume by itself only tells me how many participants and how much action there is at any given point.

 

With volume delta you can literally see who's winning the battle in the trenches at key pivot points. I think it's a great tool for timing entries and exits and it helps enormously to manage the trade properly.

 

Now I finally know what to make out of volume. :))

 

Since I am an eSignal user, this indicator is only available for live data. This totally sucks because if you switch timeframe in your charts, the volume delta must be re-plotted from scratch.

 

Is any other eSignal user aware of this problem and is there a solution to this?

 

Are you TS users allowed to reload your charts and still see the volume delta bars from the beginning of the trading sessions or even previous days?

 

IS

Share this post


Link to post
Share on other sites

in TS if you were to use Up/DN Volume... it would be only RT.... What Delta Indicator is doing is using UpTIcks/DownTicks instead to approximate volume. This change also allows historical back testing.. (data is always available, not only in RT)

Share this post


Link to post
Share on other sites
Guest cooter
What Delta Indicator is doing is using UpTIcks/DownTicks instead to approximate volume.

 

It is NOT approximating volume - it IS volume.

 

UpTicks + DownTicks = Ticks, which on a intraday, minute or tick chart in TS is the Total Volume per bar.

Share this post


Link to post
Share on other sites
not really... Tick = trade and each trade can be 1 or many contracts... Real volume would be measured in contracts, not the number of trades.

 

Hi nickm : we found out that the histogram of this indicator is exactly the same to volume... you can make a comparisson adding the volume indicator...

 

So we came to the conclussion that this was not a Tick Delta but a Volume Delta... cheers Walter.

Share this post


Link to post
Share on other sites
Guest cooter
not really... Tick = trade and each trade can be 1 or many contracts... Real volume would be measured in contracts, not the number of trades.

 

Walter is correct. You might also want to check your TS help guide - there is a section which explicitly defines and explains the relationship between Ticks, UpTicks, DownTicks and Volume (plus Open Interest) as it is used on the TS platform.

Share this post


Link to post
Share on other sites

we are both correct (imagine that! )... pending on how the chart is setup...

""""""""""""""""""""""""""""""""""""

The keyword "Ticks" with "Trade Vol" selected shows the number of contracts traded over all transactions during the bar.

The keyword "Ticks" with "Tick Count" selected shows the number of transactions occurring during the bar and ignores the number of contracts traded.

 

"""""""""""""""""""""""""""""""""""""""

and for detailed explanation see the following link

 

https://www.tradestation.com/wiki/display/EasyLanguage/Understanding%20Volume#UnderstandingVolume-bookmarka

Share this post


Link to post
Share on other sites

More thoughts on the Ticks Issue and an improvement suggested by a TS user

 

TS uses the following rules when assigning a tick to the reserved word UpTicks:An uptick is a tick whose price is higher than that of the previous tick of a different price. Thus, if tick 1 occurs at a given price, tick 2 occurs at a higher price, and tick 3 occurs at the same price as tick 2, both tick 2 and tick 3 are counted as upticks.

 

Here is an improvement that will only count an up tick if the tick > last tick and a down tick if a tick < last tick. If you find that the TS definitions for the reserved words Up/DownTicks is not to your liking you may want to try these functions in place of the reserved words.

 

Up_Ticks Function

// Up_Ticks Function

vars:
       IntraBarPersist Last_Tick        ( 0 ) ,
       IntraBarPersist MyCurrentBar    ( 0 ) ,
       IntraBarPersist Count                ( 0 ) ;


if GetAppInfo( aiRealTimeCalc ) = 1 then { real-time tick - not on bar in history }
begin
       if CurrentBar > MyCurrentBar then
               begin
                       Up_Ticks = 0 ;
                       Count = 0 ;
               end ;

       if Close > Last_Tick then
               Count = Count + UpTicks ;

Last_Tick = Close ;
MyCurrentBar = CurrentBar ;

end ;

Up_Ticks = Count ;




// Dn_Ticks Function

vars:
       IntraBarPersist Last_Tick        ( 0 ) ,
       IntraBarPersist MyCurrentBar    ( 0 ) ,
       IntraBarPersist Count                ( 0 ) ;


if GetAppInfo( aiRealTimeCalc ) = 1 then { real-time tick - not on bar in history }
begin
       if CurrentBar > MyCurrentBar then
               begin
                       Dn_Ticks = 0 ;
                       Count = 0 ;
               end ;

       if Close < Last_Tick then
               Count = Count + DownTicks ;

Last_Tick = Close ;
MyCurrentBar = CurrentBar ;

end ;

Dn_Ticks = Count ;

Share this post


Link to post
Share on other sites
Guest cooter
More thoughts on the Ticks Issue and an improvement suggested by a TS user

 

TS uses the following rules when assigning a tick to the reserved word UpTicks:An uptick is a tick whose price is higher than that of the previous tick of a different price. Thus, if tick 1 occurs at a given price, tick 2 occurs at a higher price, and tick 3 occurs at the same price as tick 2, both tick 2 and tick 3 are counted as upticks.

 

Here is an improvement that will only count an up tick if the tick > last tick and a down tick if a tick < last tick. If you find that the TS definitions for the reserved words Up/DownTicks is not to your liking you may want to try these functions in place of the reserved words.

 

Up_Ticks Function

// Up_Ticks Function

vars:
       IntraBarPersist Last_Tick        ( 0 ) ,
       IntraBarPersist MyCurrentBar    ( 0 ) ,
       IntraBarPersist Count                ( 0 ) ;


if GetAppInfo( aiRealTimeCalc ) = 1 then { real-time tick - not on bar in history }
begin
       if CurrentBar > MyCurrentBar then
               begin
                       Up_Ticks = 0 ;
                       Count = 0 ;
               end ;

       if Close > Last_Tick then
               Count = Count + UpTicks ;

Last_Tick = Close ;
MyCurrentBar = CurrentBar ;

end ;

Up_Ticks = Count ;




// Dn_Ticks Function

vars:
       IntraBarPersist Last_Tick        ( 0 ) ,
       IntraBarPersist MyCurrentBar    ( 0 ) ,
       IntraBarPersist Count                ( 0 ) ;


if GetAppInfo( aiRealTimeCalc ) = 1 then { real-time tick - not on bar in history }
begin
       if CurrentBar > MyCurrentBar then
               begin
                       Dn_Ticks = 0 ;
                       Count = 0 ;
               end ;

       if Close < Last_Tick then
               Count = Count + DownTicks ;

Last_Tick = Close ;
MyCurrentBar = CurrentBar ;

end ;

Dn_Ticks = Count ;

 

This is interesting. Could you illustrate the difference visually on a chart for us to see?

 

With this function it seems you'll then have the issue of so-called "Un_Changed Ticks", since your Up_Ticks + Dn_Ticks will not equal the Total Ticks, right?

 

So you'd probably want a function to count these "Un_Changed Ticks" as well, just for the sake of completeness.

Share this post


Link to post
Share on other sites

Here I try to convert the indicator from TS8 to TS2000i.....I try, but I don't know if it works because I don't use it since time.

 

{ WAV_Vol_3 Indicator WAV 8/20/05

 

intended for intra-day sessions only

 

plots histogram showing both upTicks and DownTicks for a bar in

real time - the larger of the 2 is always shown on top

 

plots volume average

 

plots mid-point of total average as a dot

 

}

inputs:

 

UpColor(green),

DnColor(red);

 

vars:

VolAvg(0), {//plotted vol avg}

Vol(0); {//intra-bar volume (ticks)}

 

{//only for intra-day}

if Datacompression < 2 then

begin

Vol = ticks; {//sum of upticks and downticks}

 

 

 

 

{//do not change order of following

//be sure both plot3 and plo4 are same width}

if UpTicks < DownTicks then

begin

plot3(UpTicks,"UpDn",UpColor);

plot4(vol,"Total",DnColor);

end else

begin

plot3(DownTicks,"UpDn",DnColor);

plot4(vol,"Total",UpColor);

end;

 

{//plot mid point of total ticks with a dot

//dot should fit within histogram}

 

 

end;{//if BarType}

Share this post


Link to post
Share on other sites
Guest forsearch
When I install this, the bar height is always the same as the tick count for the chart, e.g. 144, 233. What am I doing wrong?

 

Please post a pic of what you are seeing, and let us know which app you are trying to run this on.

Share this post


Link to post
Share on other sites

you need to adjust your tick chart to calculate trades using trade volume, not tick count.

 

Format Symbol > Settings Tab > For Volume, use: Trade Vol. (Dropdown).

 

Save settings and the chart should change.

 

Cheers!

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Similar Content

    • By FMIND5
      Hello traders,
      I am interested in order flow trading and I will post some trades and predictions, some articles and ideology of a bit different understanding how price moves and why. May be this forum will be the right place. So, for the start I have  couple of charts of recent trade on oil. Also I did some comparison of two different software. Would be great to meet some traders who use order flow too. Lets see. I have a lots ideas and strategies to share. I don't use any traditional indicators, because just numbers are important for me.
       
       
       


    • By trading4life
      Hello, My name is trading4life.
      I just joined this forum.
  • Topics

  • Posts

    • CVNA Carvana stock, nice top of range breakout at https://stockconsultant.com/?CVNA
    • GDRX GoodRx stock, good day, watch for a bottom range breakout at https://stockconsultant.com/?GDRX
    • Date: 14th February 2025.   Can The NASDAQ Maintain Momentum at Key Resistance Level?     The price of the NASDAQ throughout the week rose more than 3.00% to bring the price back up to the instrument’s resistance level. However, while taking into consideration higher inflation, tariffs and the resistance level, could the index maintain momentum?   US Inflation Rises For a 4th Consecutive Month The US Consumer Price Index, or inflation, rose for a 4th consecutive month taking the rate even further away from the Federal Reserve’s target. Analysts were expecting the US inflation rate to remain unchanged at 2.9%. However, consumer inflation rose to 3.00%, the highest since July 2024, while Producer inflation rose to 3.5%. Higher inflation traditionally triggers lower sentiment towards the stock market as investors' risk appetite falls and they prefer the US Dollar. However, on this occasion bullish volatility rose. For this reason, some traders may be considering if the price is overbought in the short term.   Addressing these statistics, US Federal Reserve Chair Jerome Powell acknowledged that the Fed has yet to achieve its goal of curbing inflation, adding further hawkish signals regarding the monetary policy. Other members of the FOMC also share this view. Today, Raphael Bostic, President of the Federal Reserve Bank of Atlanta, stated that the Fed is unlikely to implement interest rate cuts in the near future. This is due to ongoing economic uncertainty following the introduction of trade tariffs on imported goods and other policies from the Republican-led White House.   Most of the Federal Open Market Committee emphasizes additional time is needed to fully assess the situation. According to the Chicago Exchange FedWatch Tool, interest rate cuts may not start until September 2025.   What’s Driving The NASDAQ Higher? Earnings data this week has continued to support the NASDAQ. Early this morning Airbnb made public their quarterly earnings report whereby they beat both earnings per share and revenue expectations. The Earnings Per Share read 25% higher than expectations and Revenue was more than 2% higher. As a result, the stock rose more than 14%. Another company this week that made public positive earnings data is Cisco which rose by more than 2% on Thursday. Another positive factor continues to be the positive employment data. Even though the positive employment data can push back interest rate cuts, the stability in the short term continues to serve the interests of higher consumer demand. The US Unemployment Rate fell to 4.00% the lowest in 8 months. Lastly, investors are also increasing their exposure to the index due to sellers not being able to maintain control or momentum. Some economists also increase their confidence in economic growth if Trump can obtain a positive outcome from the Ukraine-Russia negotiations.   However, during Friday’s pre-US session trading, 80% of the most influential stocks are witnessing a decline. The NASDAQ itself is trading more or less unchanged. Therefore, the question again arises as to whether the NASDAQ can maintain momentum above this area.   NASDAQ - News and Technical analysis In terms of technical analysis, the NASDAQ is largely witnessing mainly bullish indications on the 2-hour chart. However, the main concern for traders is the resistance level at $21,960. On the 5-minute timeframe, the price is mainly experiencing bearish signals as the price moves below the 200-period simple moving average.   The VIX, which is largely used as a risk indicator, is currently trading 0.75% higher which indicates a lower risk appetite. In addition to this, bond yields trade 6 points higher. If both the VIX and Bond yields rise further, further pressure may be witnessed for index traders.   Always trade with strict risk management. Your capital is the single most important aspect of your trading business.   Please note that times displayed based on local time zone and are from time of writing this report.   Click HERE to access the full HFM Economic calendar.   Want to learn to trade and analyse the markets? Join our webinars and get analysis and trading ideas combined with better understanding of how markets work. Click HERE to register for FREE!   Click HERE to READ more Market news.   Michalis Efthymiou HFMarkets   Disclaimer: This material is provided as a general marketing communication for information purposes only and does not constitute an independent investment research. Nothing in this communication contains, or should be considered as containing, an investment advice or an investment recommendation or a solicitation for the purpose of buying or selling of any financial instrument. All information provided is gathered from reputable sources and any information containing an indication of past performance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in Leveraged Products is characterized by a certain degree of uncertainty and that any investment of this nature involves a high level of risk for which the users are solely responsible and liable. We assume no liability for any loss arising from any investment made based on the information provided in this communication. This communication must not be reproduced or further distributed without our prior written permission.
    • LUNR Intuitive Machines stock watch, attempting to move higher off 18.64 support, target 26 area at https://stockconsultant.com/?LUNR
    • CNXC Concentrix stock watch, pullback to 47.16 triple support area with bullish indicators at https://stockconsultant.com/?CNXC
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.