Welcome to the Traders Laboratory Forums.
Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
Old 01-02-2011, 10:20 PM   #617

Join Date: Dec 2010
Posts: 103
Ignore this user

Thanks: 3
Thanked 7 Times in 7 Posts

Re: Volume Splitter

I don't undestand why tha marco modification are not good..it is better works on ticks..
bomberone1 is offline  
Reply With Quote
Old 07-28-2011, 10:28 AM   #619

Join Date: Jun 2011
Posts: 1
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Volume Splitter

Hello !
I have been trying to download Volume Splitter Indicator for Ninjatrader 7 but it doesn't work.
Please, could you upload it again please?
I spent days but nothing.

And, anybody know an alternative indicator (for Ninjatrader 7) that Show the "Short" and "Long" positions? I'm not talking about ask and bid side... I would like to know the shorts and the longs of a frame of time.

Thanks a lot!

D
drota is offline  
Reply With Quote
Old 10-19-2011, 06:18 AM   #620

Join Date: Dec 2010
Posts: 103
Ignore this user

Thanks: 3
Thanked 7 Times in 7 Posts

Re: Volume Splitter

Folks I read all threat.
Could someone get in a post the last version of the indicators please?
bomberone1 is offline  
Reply With Quote
Old 10-20-2011, 02:16 PM   #621

BlowFish's Avatar

Join Date: Mar 2007
Location: In Da House
Posts: 3,292
Ignore this user

Thanks: 129
Thanked 1,054 Times in 702 Posts

Re: Volume Splitter

Here you go...be aware of the issues with insidebid insideask (they are discussed earlier in the thread

Code:
 
inputs: 
	UpColor(darkgreen), 
	DownColor(red), 
	DeltaBar(1), 
	MaxBlock(9999),
	MinBlock(0),
	ResetDeltaEachBar(0); 
	 	 
variables: 
	MyVol(0), 
	Block(0),
	color(yellow), 
	intrabarpersist MyCurrentBar(0), 
	intrabarpersist VolumeAtBid(0), 
	intrabarpersist VolumeAtAsk(0), 
	intrabarpersist BAVolRatio(0), 
	intrabarpersist VolTmp(0), 
	intrabarpersist Delta (0), 
	intrabarpersist DeltaH (0), 
	intrabarpersist DeltaL (0), 
	intrabarpersist DeltaO (0); 
 
if LastBarOnChart then begin 
   	MyVol = Iff(BarType < 2, Ticks, Volume); 
	if CurrentBar > MyCurrentBar then begin 
		VolumeAtBid = 0; 
		VolumeAtAsk = 0; 
		BAVolRatio = 0; 
		VolTmp = 0; 
		MyCurrentBar = CurrentBar; 
		if ResetDeltaEachbar = 1 then Delta =0;
		DeltaO = Delta; 
		DeltaH = Delta; 
		DeltaL = Delta; 
	end; 
	Block = Myvol - VolTmp;
	if (Block >= MinBlock) and (Block <= MaxBlock) then
		if Close <= InsideBid then
			Delta  = Delta - MyVol + VolTmp
		else if Close >= InsideAsk then 
			Delta = Delta + MyVol - VolTmp ;  
		VolTmp = MyVol ;
	end; 

 
DeltaH = maxlist(DeltaH, Delta); 
DeltaL = minlist(DeltaL, Delta); 
 
 
 if Delta <= 0 then color = DownColor else color = UpColor; 
 
	plot1(DeltaO, "DO"); 
	Plot2(DeltaH, "DH"); 
	Plot3(DeltaL, "DL"); 
	plot4(Delta, "DC");
BlowFish is offline  
Reply With Quote
The Following 2 Users Say Thank You to BlowFish For This Useful Post:
cunparis (10-21-2011), jswanson (10-26-2011)
Old 10-21-2011, 06:43 AM   #622

Join Date: Dec 2010
Posts: 103
Ignore this user

Thanks: 3
Thanked 7 Times in 7 Posts

Re: Volume Splitter

Quote:
Originally Posted by BlowFish »
Here you go...be aware of the issues with insidebid insideask (they are discussed earlier in the thread
Thanks BlowFIsh. I think that when there are nre improvmente or find a solution the new cersion will be posted.

What are in tour opinion other indicators to help analisys by volume?
bomberone1 is offline  
Reply With Quote

Reply

Tags
eot, volume splitter

Thread Tools
Display Modes Help Others By Rating This Thread
Help Others By Rating This Thread:


Similar Threads
Thread Thread Starter Forum Replies Last Post
Retest on Lower Volume with Volume Gradient walterw Technical Analysis 3 04-16-2009 12:10 AM
NYSE Up Volume($UVOL)/Down Volume ($DVOL) Comparison MC Market Internals 23 02-09-2009 09:18 AM

All times are GMT -4. The time now is 12:58 PM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.