NexusFi: Find Your Edge


Home Menu

 





How to use volume in your trading


Discussion in Traders Hideout

Updated
      Top Posters
    1. looks_one cunparis with 187 posts (146 thanks)
    2. looks_two josh with 38 posts (49 thanks)
    3. looks_3 RJay with 34 posts (15 thanks)
    4. looks_4 Silvester17 with 29 posts (24 thanks)
      Best Posters
    1. looks_one Fat Tails with 1.5 thanks per post
    2. looks_two josh with 1.3 thanks per post
    3. looks_3 cunparis with 0.8 thanks per post
    4. looks_4 Silvester17 with 0.8 thanks per post
    1. trending_up 406,285 views
    2. thumb_up 485 thanks given
    3. group 157 followers
    1. forum 677 posts
    2. attach_file 202 attachments




 
Search this Thread

How to use volume in your trading

  #161 (permalink)
 
cunparis's Avatar
 cunparis 
Paris, France
 
Experience: Advanced
Platform: Market Delta & Ninjatrader
Trading: ES
Posts: 2,565 since Jun 2009
Thanks Given: 1,162
Thanks Received: 2,093

One more.

I went long ES on a breakout of the trading range. The breakout bar turned into HVC (we don't know it's HVC until the bar closes). I should have exited on a break of the HVC low but I didn't. wanted to give it room. bullshit. give it room = hope. bad.

I reversed on a breakdown and went short.

The HVC at the end of the day (and the beginning) are not really HVC, it's just the high volume of the open and the close. So keep that in mind..

I'm going to stop posting charts until others post. I don't want to feel like I'm showing off. I think I've given enough examples to show that HVC is very useful. It's up to you guys now. If you want to put in the time to practice and learn to use it I'm here to help.

PS: 3.5 pts on my short and I'm still waiting to cover. Too bad time is running out..


Follow me on Twitter Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
How to apply profiles
Traders Hideout
ZombieSqueeze
Platforms and Indicators
Increase in trading performance by 75%
The Elite Circle
Trade idea based off three indicators.
Traders Hideout
PowerLanguage & EasyLanguage. How to get the platfor …
EasyLanguage Programming
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
30 thanks
Spoo-nalysis ES e-mini futures S&P 500
28 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
20 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #162 (permalink)
 
cunparis's Avatar
 cunparis 
Paris, France
 
Experience: Advanced
Platform: Market Delta & Ninjatrader
Trading: ES
Posts: 2,565 since Jun 2009
Thanks Given: 1,162
Thanks Received: 2,093

Hey guys I used that last chart for an example on another post about trading off a horizontal line. You may find it interesting:

Actually two posts:

trading the line:



The chart above as an example of trading the line:



I welcome your comments.

Follow me on Twitter Started this thread Reply With Quote
  #163 (permalink)
 
cunparis's Avatar
 cunparis 
Paris, France
 
Experience: Advanced
Platform: Market Delta & Ninjatrader
Trading: ES
Posts: 2,565 since Jun 2009
Thanks Given: 1,162
Thanks Received: 2,093


I posted this chart in my perfect trading thread so if you're interested in all the annotations you may want to see this post.

I'm posting it here because there are two good volume patterns.

There are:

- LV PB - this was a clue that the breakout would be false. Normally I'd take this breakout however in this case I should have been long from the HVC reversal. Before taking a long or short I ask myself I should already be long or short, because if I should already be long then it's risky to take a 2nd setup on the long.

- HVC Reversal - This is when the HVC because a reversal bar. YOu can see there is a hammer and then the HVC bar is an engulfing bar. Those together make this a reversal pattern regardless of volume. But when there is HVC it gives the pattern even more credibility. This is a new pattern for me that I just discovered and I'll be following it closely.


Follow me on Twitter Started this thread Reply With Quote
  #164 (permalink)
 
cunparis's Avatar
 cunparis 
Paris, France
 
Experience: Advanced
Platform: Market Delta & Ninjatrader
Trading: ES
Posts: 2,565 since Jun 2009
Thanks Given: 1,162
Thanks Received: 2,093

Interesting volume pattern from 9/16 Wednesday, look at the area in the rectangle. Let me know if you have questions. See if you can find a similar example in the markets & timeframes you trade.


Follow me on Twitter Started this thread Reply With Quote
  #165 (permalink)
 
cunparis's Avatar
 cunparis 
Paris, France
 
Experience: Advanced
Platform: Market Delta & Ninjatrader
Trading: ES
Posts: 2,565 since Jun 2009
Thanks Given: 1,162
Thanks Received: 2,093

RJay - I think I see a problem in the volume indicator, sorry I didn't catch this earlier I had been focusing on the calculations and overlooked this:

 
Code
            if(Close[0] > lastClose) {
                upTicks++;
            } else if(Close[0] < lastClose) {
                downTicks++;
            } else {
                evenTicks++;
            }
This is counting the number of upticks & downticks. What we want is the volume of those ticks!

Please try this change and let me know if it works better:

 
Code
            if(FirstTickOfBar) {
                upTicks = 0;
                downTicks = 0;
                evenTicks = 0;
                lastVolume = 0;
            }
                
            if(Close[0] > lastClose) {
                upTicks += ((long)Volume[0] - lastVolume);
            } else if(Close[0] < lastClose) {
                downTicks += ((long)Volume[0] - lastVolume);
            }
            lastClose = Close[0];
            lastVolume = (long)Volume[0];
One more thing.. Do you think we should change the name of the indicator? The "Better" brand belongs to Barry and I don't want to infringe on that, especially since he sells his BetterVolume for Ninjatrader.

Thanks for all your help.

Follow me on Twitter Started this thread Reply With Quote
  #166 (permalink)
 
cunparis's Avatar
 cunparis 
Paris, France
 
Experience: Advanced
Platform: Market Delta & Ninjatrader
Trading: ES
Posts: 2,565 since Jun 2009
Thanks Given: 1,162
Thanks Received: 2,093

HVC example on the daily chart. We'll see what unfolds on Monday. I wrote about a good trade setup in my weekly S&P thread.



Remember on daily charts I use all the better volume indicator settings (I'm using the original Better Volume for Tradestation). Since I have HVC Climax turned on the bar is purple instead of blue. This is even more bearish than a simple HVC since it's a climax down.

Looking at the chart, there are 5 HVC patterns. 4/5 resulting in a turn, 1/5 was profit taking. HVC on higher timeframes can provide low-risk setups especially when supported by other setups.

Follow me on Twitter Started this thread Reply With Quote
Thanked by:
  #167 (permalink)
mroalan
s. wales
 
Posts: 10 since Sep 2009
Thanks Given: 0
Thanks Received: 0

has anyone thought of candlevolume charts?

Reply With Quote
  #168 (permalink)
 Peter2150 
Washington DC
 
Experience: Intermediate
Platform: NinjaTrader
Posts: 210 since Jun 2009
Thanks Given: 110
Thanks Received: 117

Question, and if I missed it in the thread apologies.

Do you guys thing volume has any real meaning on a range bar chart?

Pete

Reply With Quote
  #169 (permalink)
 
cunparis's Avatar
 cunparis 
Paris, France
 
Experience: Advanced
Platform: Market Delta & Ninjatrader
Trading: ES
Posts: 2,565 since Jun 2009
Thanks Given: 1,162
Thanks Received: 2,093


Peter2150 View Post
Question, and if I missed it in the thread apologies.

Do you guys thing volume has any real meaning on a range bar chart?

Pete

I never used range charts until recently, due to their popularlity on this site. I tried it for a while and went back to tick charts and then more recently went to 5min charts. So I can't really say much about volume on range charts but you can give it a try.

What I don't like about range charts is that you're missing important information with the relationship of the open & close. I especially look for doji bars and trend bars. Doji = indecision / trading range. Trend = one side is in control. I don't see that as clearly in range bars. Now some can say this relationship is somewhat artificial because it's determined by # of ticks or time. I agree with that. But for me it's ok.

So be my guest to try it out and post some charts. Try comparing a 5 min with a range chart. Could be interesting.

Follow me on Twitter Started this thread Reply With Quote
  #170 (permalink)
 
cunparis's Avatar
 cunparis 
Paris, France
 
Experience: Advanced
Platform: Market Delta & Ninjatrader
Trading: ES
Posts: 2,565 since Jun 2009
Thanks Given: 1,162
Thanks Received: 2,093



mroalan View Post
has anyone thought of candlevolume charts?

I had to google it, I never heard of that.

Looks pretty interesting. HVC would appear as a fat small candle and low volume bar would appear as a really thin candle. For the moment I'll stick with OHLC and/or candles but I encourage you to play with it.

Follow me on Twitter Started this thread Reply With Quote




Last Updated on April 21, 2016


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts