| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #33 | ||
![]() | Re: Volume Splitter I failed to do even that with my attempt. | ||
| |
|
| | #34 | ||
![]() | Re: Volume Splitter Quote:
I'm having some success as seen in the screen shots above. I still have some ideas I want to test to make it look more like the EOT indicator. | ||
| |
|
| | #35 | ||
![]() | Re: Volume Splitter Quote:
i pretty much have it the way i want it to be but i still need to filter the contracts somehow btw. second film dumb money part2 somewere in the midle the guy says something like " i turned on the pc at 9am because the indicator only plots live " you can also see there that in the beginning of the chart the indicator didnt plot so it definitly does NOT use historical data Last edited by flyingdutchmen; 05-04-2009 at 12:29 PM. | ||
| |
|
| | #36 | ||
![]() | Re: Volume Splitter Quote:
Values coming off of TradeVolume look something like this: 1,2,2,3,1,1,2,1,20,3,4,2, 1,1,30,1,1,2,3... From there you can process these values as you see fit.Oh yes, TradeVolume only works on live data - not historical data. I will be posting the indicator. I just want it to look a little better before I do. | ||
| |
|
| | #37 | ||
![]() | Re: Volume Splitter | ||
| |
|
| | #38 | ||
![]() | Re: Volume Splitter Code: inputs:
BlockSize( 5 ) ;
vars:
IntrabarPersist TSstore( 0 ) ,
IntrabarPersist TradeSize( 0 ) ,
IntrabarPersist TickHist( 0 ),
IntrabarPersist BStatus( 0 ) ;
if BStatus = 2 then begin
TSstore = 0 ;
TickHist = 0 ;
end; // f BStatus = 2
if BarStatus( 1 ) <> 2 then begin
TradeSize = Ticks - TickHist ;
TickHist = Ticks ;
if TradeSize >= BlockSize then
...
end ; // if BarStatus( 1 ) <> 2
...
...
BStatus = BarStatus( 1 ) ; https://www.tradestation.com/Discuss...greater%20than etc hth | ||
| |
|
| | #39 | ||
![]() | Re: Volume Splitter Quote:
| ||
| |
|
| | #40 | ||
![]() | Re: Volume Splitter Now we just have to make it look like your histogram swan... and since it was recording all orders on both the bid and the ask I guess we have to modify it to take just bids greater than the block size and seperate them from the ask's greater than the block size right? | ||
| |
|
| The Following 2 Users Say Thank You to daedalus For This Useful Post: | ||
Laurel (05-27-2009), sunilrohira (06-10-2009) | ||
![]() |
| Tags |
| eot, volume splitter |
| Thread Tools | |
| Display Modes | 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 |