NexusFi: Find Your Edge


Home Menu

 





Smart money volume - a great example


Discussion in Traders Hideout

Updated
      Top Posters
    1. looks_one cunparis with 9 posts (0 thanks)
    2. looks_two David with 7 posts (3 thanks)
    3. looks_3 RJay with 6 posts (0 thanks)
    4. looks_4 cory with 4 posts (0 thanks)
    1. trending_up 23,268 views
    2. thumb_up 6 thanks given
    3. group 8 followers
    1. forum 36 posts
    2. attach_file 8 attachments




 
Search this Thread

Smart money volume - a great example

  #31 (permalink)
 David 
UK
 
Experience: Intermediate
Platform: NinjaTrader
Trading: Futures
Posts: 88 since Jun 2009
Thanks Given: 35
Thanks Received: 84

In the variables section, modify this line:

int[] binThresh = new int[4] { 5, 50, 100, 10000 };


David

Started this thread Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
Better Renko Gaps
The Elite Circle
ZombieSqueeze
Platforms and Indicators
Trade idea based off three indicators.
Traders Hideout
REcommedations for programming help
Sierra Chart
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
 
  #32 (permalink)
 
RJay's Avatar
 RJay 
Hartford, CT. USA
 
Experience: Intermediate
Platform: NinjaTrader
Broker: AMP/CQG, Kinetick
Trading: RTY
Posts: 683 since Jun 2009
Thanks Given: 758
Thanks Received: 787


cunparis View Post
I did a bit of googling on him. Seems he has created new websites several times, each time abandoning the old one and its customers. In the past he had a book or dvd for sale for $100-$200. They say the DVD isn't bad but it's 29 minutes long. A short DVD is a bit disappointing when that's not stated clearly upfront (he makes it look like a 4 hour trading course). He uses some kind of hi-low technique where you keep a buy stop above the last high in a declining market. The idea is to get it on a trend reversal. They said that wouldn't work by itself but he has additional filters/indicators. This new bid/ask pressure thing seems to be a new thing and so he creates a new site. Only this time it's $2000! "to reserve your seat". Yes it is humorous.

Everytime I see something for $1000+ it turns out to be uninteresting. Once bitten twice shy..

My opinion now is his example was cherry picked, but I think it's worth investigating it to see if there's anything there. I'll look at it this weekend.

Cunparis,

Thanks for doing the background check. It pays to know what your dealing with.

My research into what he is selling will continue.

Sometimes I'm stunned by how close some developers get to something great, but fail to see it becouse of the way they view the indicator.

Then again, alot of my research goes out with the trash.

RJay

Reply With Quote
  #33 (permalink)
 David 
UK
 
Experience: Intermediate
Platform: NinjaTrader
Trading: Futures
Posts: 88 since Jun 2009
Thanks Given: 35
Thanks Received: 84


He posted this thread in the NT forums.

orders filled outside of market - [AUTOLINK]NinjaTrader[/AUTOLINK] Support Forum

Presumably his automated strategy, which he is giving away when you enrol on one of his courses, is based around his post.

David

Started this thread Reply With Quote
  #34 (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

Here is my first attempt at his bid pressure indicator. I coded up something and had no idea if it'd work. Since this only works real time one has to let it run for a while before trying another setting. So i'd like to get feedback and then I can make some changes and post them. Again this is just a starting point, I only spent a few minutes on it and then let it run.

top: price with better volume show me to highlight low volume bars
2nd: volume (free better volume indicator from emini watch)
3rd: buy sell pressure (this uses volume at bid & ask):

 
Code
Variables:    Length(5);
Value1 = 100*(BidSize - AskSize) / (BidSize + AskSize);
Value2 = Average(Value1, Length);

Plot1(Value2,"BS Pressure",Cyan);
Plot2(0,"Zero",White);
4th: Tradestation bid/ask volume ratio (this is built-in, I found it while searching the help for bid/ask information)

5th: buy sell pressure 2 - this uses the actual trades:

 
Code
Variables:    Length(5);
Value1 = 100*(UpTicks - Downticks) / (Upticks + Downticks);
Value2 = Average(Value1, Length);

Plot1(Value2,"BS Pressure",Cyan);
Plot2(0,"Zero",White);
Let me know if you have other ideas for the algorithm and I'll try them. I'm relatively new to this bid/ask stuff.

Attached Thumbnails
Click image for larger version

Name:	malcom bid pressure.jpg
Views:	387
Size:	125.3 KB
ID:	1207  
Follow me on Twitter Reply With Quote
  #35 (permalink)
 
RJay's Avatar
 RJay 
Hartford, CT. USA
 
Experience: Intermediate
Platform: NinjaTrader
Broker: AMP/CQG, Kinetick
Trading: RTY
Posts: 683 since Jun 2009
Thanks Given: 758
Thanks Received: 787

I ended up playing with RealStats_SharkyPkg all day.

Renamed it and made a bunch of changes to increase visual comprehension.

The yellow numbers are where the good info is.

The two inner yellow numbers on the right side of chart are change in total bid and ask volume change for that bar, I think.

Top and bottom numbers may be ticks totals above and below the bar open point.

Large multicolor band - volume increase/ decrease/ even for bar totals.

Small band by current bar - level 0 bid and ask.

Yea, I'm a slow learner. I'll figure it out.

Some info is probably wrong. I forgot to take notes.

I have the total bid /ask levels here displayed. I just need to convert them.

Tomorrow is another day.

Attached Thumbnails
Click image for larger version

Name:	Project.jpg
Views:	365
Size:	321.2 KB
ID:	1209  
Reply With Quote
  #36 (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

Ran my volume splitter on Friday and posted the chart here with some observations. I'm still not convinced there is an edge but I did find some interesting things on the chart:


Follow me on Twitter Reply With Quote
  #37 (permalink)
 Emanuele67 
Lumezzane Italy
 
Experience: Beginner
Platform: NinjaTrader
Trading: Index Futures
Posts: 54 since Jul 2011
Thanks Given: 58
Thanks Received: 10


Big Mike View Post
Downloads courtesy sam028


Mike

Hi Big Mike
Do you still have the link to the men tioned indicator? When I try to open your link, I receive an error message. See the attached image
Emanuele67

Attached Thumbnails
Click image for larger version

Name:	Erro link.jpg
Views:	163
Size:	265.8 KB
ID:	139623  
Reply With Quote




Last Updated on March 7, 2014


© 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