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 TheWizard with 4 posts (0 thanks)
    1. trending_up 23,247 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

  #11 (permalink)
 
tellytub's Avatar
 tellytub 
london uk
 
Experience: Beginner
Platform: NinjaTrader
Broker: Zen-Fire
Trading: Stocks
Posts: 410 since Jun 2009
Thanks Given: 333
Thanks Received: 121

TheWizard

EoTpros version of this (vol splitter) had the same problem, they sorted it out back in March, it now works with old data i.e. it dosnt have to be in real time.

from move the market

"A lot of people have been wanting to practice their eotpro trading in ninjatrader’s replay mode. Unfortunately, a few of our tick-by-tick indicators haven’t worked for replay, though. Well, I’ve finally had time to investigate, and with the help of one of our clients, I’ve made the adjustments needed for everything to work correctly.
Here’s a screenshot of Bill’s arrows, and the chopometer, etc, on replayed data:"

Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
Trade idea based off three indicators.
Traders Hideout
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Increase in trading performance by 75%
The Elite Circle
ZombieSqueeze
Platforms and Indicators
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
34 thanks
Tao te Trade: way of the WLD
24 thanks
GFIs1 1 DAX trade per day journal
16 thanks
My NQ Trading Journal
14 thanks
Vinny E-Mini & Algobox Review TRADE ROOM
13 thanks
  #12 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090


tellytub View Post
TheWizard

",,, I’ve made the adjustments needed for everything to work correctly.
Here’s a screenshot of Bill’s arrows, and the chopometer, etc, on replayed data:"

we need to get our hands on that 'adjustments'. Ninja programming skill is so lacking, too many users are able to do what they continue to reply as 'that feature is not available'.

Reply With Quote
  #13 (permalink)
 
TheWizard's Avatar
 TheWizard 
Houston, TX
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Optimus Futures, AMP, CQG
Trading: 6E
Posts: 1,731 since Jun 2009
Thanks Given: 517
Thanks Received: 4,224



tellytub View Post
TheWizard

EoTpros version of this (vol splitter) had the same problem, they sorted it out back in March, it now works with old data i.e. it dosnt have to be in real time.

from move the market

"A lot of people have been wanting to practice their eotpro trading in ninjatrader’s replay mode. Unfortunately, a few of our tick-by-tick indicators haven’t worked for replay, though. Well, I’ve finally had time to investigate, and with the help of one of our clients, I’ve made the adjustments needed for everything to work correctly.
Here’s a screenshot of Bill’s arrows, and the chopometer, etc, on replayed data:"

Here’s a screenshot of Bill’s arrows, and the chopometer, etc, on replayed data:"

No screenshot. Please re-post. Thanks.

After all, it's what you learn AFTER you know it all, that counts!
Reply With Quote
  #14 (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


David View Post
This is a great example of large contract orders driving the ES today.

The firebrick colour shows 1000+ contract trades. The chart times are UK times.

David

Did you modify the code? The default is 10000 trades. I changed mine to 1000. The 4 inputs don't seem to be connected to anything. It'd be nice if one could configure the thresholds with the inputs.

I've written a simulator volume splitter for tradestation. in the end I didn't find an edge there. Often the 1 lot traders would get the right direction and other times the larger traders would lead. It didn't seem reliable.

I'm looking forward to seeing what others can do with it.

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

Hi Cunparis

I have also changed the default to 1000 contracts in my version of the indicator, though I can't remember if this is what I used for the image at the top of this thread.

I've also added smoothing via an SMA to each of the plots. It helps a bit with the interpretation of the chart.

I added this code to the OnBarUpdate section (plus the smooth variable and the new plots in the Initialize section):

 
Code
                            
            SmoothBin1.Set(SMA(Bin1Math.Min(smoothCurrentBar))[0]);
            
SmoothBin2.Set(SMA(Bin2Math.Min(smoothCurrentBar))[0]);
            
SmoothBin3.Set(SMA(Bin3Math.Min(smoothCurrentBar))[0]);;
            
SmoothBin4.Set(SMA(Bin4Math.Min(smoothCurrentBar))[0]); 
David

Started this thread Reply With Quote
  #16 (permalink)
 
TheWizard's Avatar
 TheWizard 
Houston, TX
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Optimus Futures, AMP, CQG
Trading: 6E
Posts: 1,731 since Jun 2009
Thanks Given: 517
Thanks Received: 4,224


David View Post
Hi Cunparis

I have also changed the default to 1000 contracts in my version of the indicator, though I can't remember if this is what I used for the image at the top of this thread.

I've also added smoothing via an SMA to each of the plots. It helps a bit with the interpretation of the chart.

I added this code to the OnBarUpdate section (plus the smooth variable and the new plots in the Initialize section):

 
Code
                            
            SmoothBin1.Set(SMA(Bin1Math.Min(smoothCurrentBar))[0]);
            
SmoothBin2.Set(SMA(Bin2Math.Min(smoothCurrentBar))[0]);
            
SmoothBin3.Set(SMA(Bin3Math.Min(smoothCurrentBar))[0]);;
            
SmoothBin4.Set(SMA(Bin4Math.Min(smoothCurrentBar))[0]); 
David

Could you export & post the entire indicator, please? Thanks!

After all, it's what you learn AFTER you know it all, that counts!
Reply With Quote
  #17 (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


David View Post
This is a great example of large contract orders driving the ES today.

The firebrick colour shows 1000+ contract trades. The chart times are UK times.

David


If you have more examples could you please post them? I'd like to see if the chart you posted was a very good day for this indicator or if it was typical.

How long have you been using it?

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


Quoting 
How long have you been using it?



I'm not using for trading at the moment - just running it on different charts to see if it has any real value.

I've just taken this image of it running on a 1 range chart of the ES today. It's the standard indicator with the firebrick plot set to 10,000.

You can see that it did give a brief forward signal to the change in trend that I've marked with the blue line, but that was only one bar advantage on a 1 range chart.


Quoting 
Could you export & post the entire indicator, please? Thanks!

I've messed my version of the indicator around a lot to try and add it into an ATS, but I'll revert it into a form suitable for uploading tomorrow.

Attached Thumbnails
Click image for larger version

Name:	ES 09-09  10_8_09 (1 Range).jpg
Views:	365
Size:	99.2 KB
ID:	1128  
Started this thread Reply With Quote
  #19 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090

1r is just too thin try 4r instead.

Reply With Quote
  #20 (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


the 1000 lot traders must be on vacation. It didn't seem very useful today.

Attached Thumbnails
Click image for larger version

Name:	vol bin.jpg
Views:	306
Size:	56.6 KB
ID:	1145  
Follow me on Twitter 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