| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #65 | ||
![]() | Re: Volume Splitter Would you mind posting the combined code? I can't get it to run. Much Thanks, | ||
| |
|
| The Following User Says Thank You to wlbw For This Useful Post: | ||
Laurel (05-27-2009) | ||
| | #66 | ||
![]() | Re: Volume Splitter The second code you posted looks like a function. It looks very similar to the function that is already in tradestation. I guess the problem I'm having and I believe wlnw is having is incorporating the function into the first code you posted. Thanks again for your input. Last edited by pimind; 05-06-2009 at 11:10 PM. | ||
| |
|
| | #67 | ||
![]() | Re: Volume Splitter In regards to the volume splitter, I had seen the EOT site about 6 weeks ago and finally needed to see it live. They have a free trial and show all the indicators live. I have been trading a long time and this was one of the best indicators I have seen. I am a firm believer in reading price action and this thing is good. With time and sales being the closest thing to a real time indicator, this splitter runs a close second. They know people are trying to copy it and joke around that it will not be duplicated. This forum has some very sharp people in it, I will put my money on TL. | ||
| |
|
| The Following 2 Users Say Thank You to cooper59 For This Useful Post: | ||
Laurel (05-27-2009) | ||
| | #68 | ||
![]() | Re: Volume Splitter Quote:
btw dont use [1] use if newvalue - oldvalue > block do something. oldvalue = newvalue | ||
| |
|
| The Following User Says Thank You to BlowFish For This Useful Post: | ||
Laurel (05-27-2009) | ||
| | #69 | ||
![]() | Re: Volume Splitter Quote:
Not true my friend. You can build anything you want with a 1 tick file. | ||
| |
|
| The Following User Says Thank You to bakrob99 For This Useful Post: | ||
Laurel (05-27-2009) | ||
| | #70 | ||
![]() | Re: Volume Splitter Quote:
Code: //Bob Fulks 8/07, Bob Perry 09/07, 12/07, 05/09 Inputs: MinLotSize(1), MaxLotSize(9999), TrixLen(9); Var: TRIXValue(0); Var: intrabarpersist LTicks(0); Var: intrabarpersist TSize(0); Var: intrabarpersist UpSum(0); Var: intrabarpersist DnSum(0); Var: intrabarpersist CumSum(0); if LastBarOnChart then begin TSize = Ticks - LTicks; If TSize >= MinLotSize and TSize <= MaxLotSize then Begin if Close = CurrentBid then DnSum = DnSum + TSize; if Close = CurrentAsk then UpSum = UpSum + TSize; End; LTicks = Ticks; if BarStatus(1) = 2 then begin CumSum = CumSum + UpSum - DnSum ; TRIXValue = TRIX( CumSum, TrixLen ) ; Plot1(TRIXValue, "CumSum"); Plot2(0,"zeroline"); LTicks = 0; UpSum = 0; DnSum = 0; end; End; | ||
|
| | #71 | ||
![]() | Re: Volume Splitter Quote:
if you take a screen shot of your live 1-tick chart, then close down the charting software, reboot the computer. When you re-start your computer and call up the same 1-tick chart again, the chart might look different than the screen shot you have taken earlier. :-( | ||
| |
|
| | #72 | ||
![]() | Re: Volume Splitter Quote:
The problem is not the trades (the tick stream) it's the order book changes. How do you know a tick is at the bid or the ask? You can not know though you can guess if its an uptick its at ask and a downtick is at bid. Best bid and best ask areavailable real time but not historically and there is the problem. | ||
| |
|
![]() |
| 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 |