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

    • Date: 25th April 2024. Investors Monitor a Potential Japanese Intervention, and upcoming Tech Earnings. Meta stocks top earnings expectations, but revenue guidance for the next 6 months triggers significant selloff. Meta stocks decline 15.00% and the Magnificent Seven also trade lower. Japanese Authorities are on watch and most market experts predict the Japanese Federal Government will intervene once again. The Japanese Yen is the day’s worst performing currency while the Australian Dollar continues to top the charts. The US Dollar trades 0.10% lower, but this afternoon’s performance is likely to be dependent on the US GDP. USA100 – Meta Stocks Fall 15% On the Next 6-Months Guidance The NASDAQ has declined 1.51% over the past 24 hours, unable to maintain momentum from Monday and Tuesday. Technical analysts advise the decline is partially simply a break in the bullish momentum and the asset continues to follow a bullish correction pattern. However, if the decline continues throughout the day, the retracement scenario becomes a lesser possibility. In terms of indications and technical analysis, most oscillators, and momentum-based signals point to a downward price movement. The USA100 trades below the 75-Bar EMA, below the VWAP and the RSI hovers above 40.00. All these factors point towards a bearish trend. The bearish signals are also likely to strengthen if the price declines below $17,295.11. The stock which is experiencing considerably large volatility is Meta which has fallen more than 15.00%. The past quarter’s earnings beat expectations and according to economists, remain stable and strong. Earnings Per Share beat expectations by 8.10% and revenue was as expected. However, company expenses significantly rose in the past quarter and the guidance for the second half of the year is lower than previous expectations. These two factors have caused investors to consider selling their shares and cashing in their profits. Meta’s decline is one of the main causes for the USA100’s bearish trend. CFRA Senior Analyst, Angelo Zino, advises the selloff may be a slight over reaction based on earnings data. If Meta stocks rise again, investors can start to evaluate a possible upward correction. However, a concern for investors is that more and more companies are indicating caution for the second half of the year. The price movements will largely now depend on Microsoft and Alphabet earnings tonight after market close. Microsoft is the most influential stock for the NASDAQ and Alphabet is the third. The two make up 14.25% of the overall index. If the two companies also witness their stocks decline after the earnings reports, the USA100 may struggle to gain upward momentum. EURJPY – Will Japan Intervene Again? In the currency market, the Japanese Yen remains within the spotlight as investors believe the Japanese Federal Government is likely to again intervene. The Federal Government has previously intervened in the past 12 months which caused a sharp rise in the Yen before again declining. The government opted for this option in an attempt to hinder a further decline. Volatility within the Japanese Yen will also depend on today’s US GDP reading and tomorrow’s Core PCE Price Index. However, investors will more importantly pay close attention to the Bank of Japan’s monetary policy. Investors will be keen to see if the central bank believes it is appropriate to again hike in 2024 as well as comment regarding inflation and the economy. In terms of technical analysis, breakout levels can be considered as areas where the exchange rate may retrace or correct. Breakout levels can be seen at 166.656 and 166.333. However, the only indicators pointing to a decline are the RSI and similar oscillators which advise the price is at risk of being “overbought”. 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 on how markets work. Click HERE to register for FREE! Click HERE to READ more Market news. Michalis Efthymiou Market Analyst 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 FX and CFDs 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.
    • $ALVR AlloVir stock bottom breakout watch, huge upside gap, https://stockconsultant.com/?ALVR
    • $DIS Disney stock attempting to move higher off the 112.79 triple support area, https://stockconsultant.com/?DIS
    • $ADCT Adc Therapeutics stock flat top breakout watch above 5.31, https://stockconsultant.com/?ADCT
    • $CXAI CXApp stock local support and resistance areas at 2.78, 3.52 and 5.19, https://stockconsultant.com/?CXAI
×
×
  • Create New...

Important Information

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