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: 29th March 2024. GBPUSD Analysis: The Pound Trades Higher But For How Long? The global Stocks Markets are closed due to Easter Friday (Good Friday). The NASDAQ continued to follow the sideways trend while other indices again rose. The SNP500 reaches an all-time high, but the NASDAQ remains under pressure from Tesla, Meta and Apple. The Euro continues to trade lower against all major currencies including the US Dollar, Euro and Japanese Yen. The British Pound is the best performing currency during this morning’s Asian session. However, investors are largely fixing their attention on this afternoon’s Core PCE Price Index. GBPUSD – The Pound Trades Higher but For How Long? The GBPUSD is slightly higher than the day’s open and is primary due to the Pound’s strong performance. At the moment, the British Pound is increasing in value against all major currencies. However, the US Dollar Index is also trading 0.10% higher and for this reason there is a slight conflict here. If investors wish to avoid this conflict, the EURUSD is a better option. This is because, the Euro depreciating against the whole currency market avoiding the “tug-of-war” scenario. The GBPUSD is trading slightly lower than the 2-month’s average price and is trading at 49.10 on the RSI. For this reason, the price of the exchange is at a “neutral” level and is signalling neither a buy nor a sell. The day’s price action and future signals are possibly likely to be triggered by this afternoon’s Core PCE Price Index. Analysts expect the Core PCE Price Index to read 0.3% which is slightly lower than the previous month but will result in the annual figure remaining at 2.85%. The PCE rate is different to the inflation rate and the Fed aims for a rate between 1.5% to 2.00%. Therefore, even if the annual rate remains at 2.85%, as analysts expect, it would be too high for the Fed. If the rate increases, even if only slightly, the US Dollar can again renew bullish momentum and the stock market can come under pressure. This includes the SNP500. Investors are focused on the publication of data on the UK’s gross domestic product (GDP) for the last quarter of 2023: the quarterly figures decreased by 0.3%, and 0.2% over the past 12-months. This confirms the state of a shallow recession and the need for stimulation. The data, combined with a cooling labor market and a steady decline in inflation, increase the likelihood that the Bank of England will soon begin interest rate cuts. In the latest meeting the Bank of England representatives did not see any members vote for a hike. USA500 – The SNP500 Rises to New Highs, But Cannot Hold Onto Gains! The price of the SNP500 rises to an all-time high, before correcting 0.33% and ending the day slightly lower than the open price. Nonetheless, the index performs better than the NASDAQ which came under pressure from Tesla, Meta and Apple which hold a higher weight compared to the SNP500. For the SNP500, these 3 stocks hold a weight of 9.25%, whereas the 3 stocks make up 14.63% of the NASDAQ. The SNP500 is also supported by ExxonMobil’s gains due to higher energy prices. The market will remain closed on Friday due to Easter. However, the market will reopen on Monday for the US and investors can expect high volatility. Investors will also need to take into consideration how the PCE Price Index and the changed value of the US Dollar is likely to affect the stock market next week. 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.
    • MT4 is good and will be good until their parent company keep updating the software, later mt4 users will have to switch to mt5.
    • $SOUN SoundHound AI stock at 5.91 support area , see https://stockconsultant.com/?SOUN
    • $ELEV Elevation Oncology stock bull flag breakout watch , see https://stockconsultant.com/?ELEV
    • $AVDX AvidXchange stock narrow range breakout watch above 13.32 , see https://stockconsultant.com/?AVDX
×
×
  • Create New...

Important Information

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