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

    • $CHWY Chewy stock breakdown watch, https://stockconsultant.com/?CHWY
    • $PYXS Pyxis Oncology stock low volume pullback to 4.32 support area, high trade quality, https://stockconsultant.com/?PYXS
    • $EVER EverQuote stock strong day, breakout, https://stockconsultant.com/?EVER
    • Date: 1st May 2024. Understanding the Implications of the FOMC Meeting. The FOMC will issue its post-meeting statement at 18:00 GMT tonight. “High-for-longer” is the expected outcome (but not higher) given more indications that progress on bringing inflation sustainably down to the 2% target has stalled out. With no new quarterly forecasts, it will be all about Chair Powell’s press conference when the Fed announces its policy stance tonight.   It is unlikely to be any more hawkish than what the markets are pricing in. Indeed, Chair Powell will have to acknowledge that the data are going the wrong way and he may even pre-empt the likely first question out of the box, “is a rate hike in the cards?” Meanwhile, Fed funds futures have not only fully priced out chances for a rate cut for this meeting and for June, but July as well. Risk for a reduction in September fell to below 50-50 on the initial spike in implied rates on the ECI news. The November contract reflects 20 bps in cuts, with a full quarter point easing now not seen until December. The FOMC is also expected to announce a slowing in Treasury runoff for June.   Economic Projections & Market Interpretation: The March update of the SEP revealed notable adjustments in key economic indicators. GDP forecasts for 2024 experienced a substantial upward revision, reflecting a more optimistic outlook with a growth rate of 2.1%, up from 1.4% in December. Similarly, projections for 2025 saw improvements, with the median jobless rate forecasts showing mixed trends but generally aligning with recent patterns. Expectations for headline and core PCE chain price indices also witnessed slight adjustments, indicating potential shifts in inflation dynamics. During the March meeting, the “dot plot” estimates hinted at a dovish stance by Fed members, with no indications of further rate hikes and median estimates suggesting potential rate cuts in 2024. This interpretation led markets to anticipate the initiation of quarterly rate cuts starting in June. As investors await the June SEP update, there is speculation about further adjustments in GDP estimates, PCE chain price indices, and the potential revision of rate cut expectations.   Analyzing the labor market reveals a complex picture of recovery and ongoing challenges. Payrolls have shown resilience in 2024, surpassing the previous year’s averages, albeit with variations across sectors. Despite improvements, the jobless rate remains a focal point, with fluctuations reflecting broader economic conditions. Additionally, metrics like the U-6 rate and wage growth provide insights into the labor market’s health and potential inflationary pressures.   Inflation Trends and Consumption Patterns: Inflation dynamics have been closely monitored, particularly amid recent fluctuations in commodity prices and supply chain disruptions. While recent CPI and PCE chain price measures suggest some moderation in inflationary pressures, concerns linger about the sustainability of these trends. The Fed’s attention to inflation remains paramount, shaping expectations for future policy actions. Consumer spending, a key driver of economic growth, has exhibited resilience despite ongoing uncertainties. Real personal consumption expenditures (PCE) have maintained positive growth rates, contributing to overall GDP expansion. However, shifts in consumption patterns and potential impacts on future economic performance warrant careful observation.   Market Expectations and Implications: As the FOMC meeting approaches, market participants are closely monitoring economic indicators and policy developments for insights into future market dynamics. The verbiage of the Fed statement and subsequent press briefing will be scrutinized for any hints regarding the timing of potential policy adjustments. Investors should remain vigilant and adaptable, considering the evolving economic landscape and its implications for investment strategies. The upcoming FOMC meeting holds significant implications for investors and economic stakeholders. Understanding recent economic developments, market expectations, and potential policy shifts is essential for navigating the dynamic financial environment. By staying informed and proactive, investors can position themselves to capitalize on emerging opportunities while managing risks effectively. 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. Andria Pichidi 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.
    • $MRO Marathon Oil stock moving higher off the 27.57 support area, https://stockconsultant.com/?MRO
×
×
  • Create New...

Important Information

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