› Forums › Indicator discussion › vol zone and clear combo
This topic has been reported for inappropriate content
Tagged: clear method volume zone
- This topic has 8 replies, 6 voices, and was last updated 10 years, 4 months ago by
e3.
- AuthorPosts
- December 23, 2015 at 10:34 am #10798
hack of vol zone and clear method
edit: rewrite
i rewrote uber and made (ClearVolumeZone_Lowphat_a) which places vol zone on top of clear histo
todo: add adx
-
This topic was modified 10 years, 4 months ago by
Lowphat. Reason: rewrite for more compact visulation -
This topic was modified 6 years, 4 months ago by
lohnere.
Attachments:
You must be logged in to view attached files.“I believe the very best money is made at the market turns. Everyone says you get killed trying to pick tops and bottoms and you make all
your money by playing the trend in the middle. Well for twelve years I have been missing the meat in the middle but I have made a lot of
money at tops and bottoms.”
– Paul Tudor JonesDecember 23, 2015 at 11:02 am #10804This reply has been reported for inappropriate content.
Thanks for creating this thread Lowphat …
I just think this has some thing to do with “clear” method, and “volume”. Can you explain a little about your indicator ?December 23, 2015 at 11:57 am #10806This reply has been reported for inappropriate content.
Hey, nice exercise!

But I think it would be better for practical use to have oscillator and histogram in two separate indies … easier to scale independently.
And there’s a bug in the higher timeframe section: your loop is
for (i = limit; i >= 0; i--) {and a few lines after that you have
if (!Interpolate || y == iBarShift(NULL, TimeFrame, Time)) {So for i = 0 the indicator will try to calculate Time[-1]. This can’t be correct at bar zero. Hence it will generate a runtime error if you add
#property strictcompiler directive. Some other minor changes are necessary, though, to make it run in strict mode.s.
P.S.: You’re sure this is tagged correctly?
A good trader is a realist who wants to grab a chunk from the body of a trend, leaving top- and bottom-fishing to people on an ego trip. (Dr. Alexander Elder)
December 23, 2015 at 2:00 pm #10809This reply has been reported for inappropriate content.
Thanks for creating this thread Lowphat …
I just think this has some thing to do with “clear” method, and “volume”. Can you explain a little about your indicator ?yes it’s a hack of clear method histogram with volume zone oscillator and one of the things i was looking at is how they both interacted with price. originally i wanted to use clear method as the trend and volume Osc. going below or above average (yellow) to detect small pullbacks for scalps.
Hey, nice exercise!
But I think it would be better for practical use to have oscillator and histogram in two separate indies … easier to scale independently. And there’s a bug in the higher timeframe section: your loop is for (i = limit; i >= 0; i--) {and a few lines after that you haveif (!Interpolate || y == iBarShift(NULL, TimeFrame, Time)) {So for i = 0 the indicator will try to calculate Time[-1]. This can’t be correct at bar zero. Hence it will generate a runtime error if you add#property strictcompiler directive. Some other minor changes are necessary, though, to make it run in strict mode. s. P.S.: You’re sure this is tagged correctly?its easier for me to forward test them when they are as close to each other as possible eventually i may make a version than combines signals and just draws one arrow on the chart_window.
ah strict mode is a great idea i always forget about that.
thanks for the heads up :)
it also needs a SetIndexDrawBegin so the MA wont draw before it has enough bars to calculate
hah the tag. i better fix that. the things i do sometimes to keep myself amused
“I believe the very best money is made at the market turns. Everyone says you get killed trying to pick tops and bottoms and you make all
your money by playing the trend in the middle. Well for twelve years I have been missing the meat in the middle but I have made a lot of
money at tops and bottoms.”
– Paul Tudor JonesDecember 23, 2015 at 2:59 pm #10813This reply has been reported for inappropriate content.
if anyone knows a way to make trading station show past trades on chart i can post examples of live trades i made with this indy(only a few so far) and try to go through the process of what i was thinking.
“I believe the very best money is made at the market turns. Everyone says you get killed trying to pick tops and bottoms and you make all
your money by playing the trend in the middle. Well for twelve years I have been missing the meat in the middle but I have made a lot of
money at tops and bottoms.”
– Paul Tudor JonesDecember 23, 2015 at 6:42 pm #10817This reply has been reported for inappropriate content.
if anyone knows a way to make trading station show past trades on chart i can post examples of live trades i made with this indy(only a few so far) and try to go through the process of what i was thinking.
My method:
Run an empty EA on forward real account, that writes every tick into history file (hst).
Run BT on that history.
G.
December 27, 2015 at 6:35 pm #10855This reply has been reported for inappropriate content.
i found a volume zone oscillator article
Attachments:
You must be logged in to view attached files.“I believe the very best money is made at the market turns. Everyone says you get killed trying to pick tops and bottoms and you make all
your money by playing the trend in the middle. Well for twelve years I have been missing the meat in the middle but I have made a lot of
money at tops and bottoms.”
– Paul Tudor JonesDecember 27, 2015 at 7:02 pm #10857This reply has been reported for inappropriate content.
THANKS…..
December 27, 2015 at 8:52 pm #10858This reply has been reported for inappropriate content.
i found a volume zone oscillator article
Here is one as well
Attachments:
You must be logged in to view attached files. -
This topic was modified 10 years, 4 months ago by
- AuthorPosts
- You must be logged in to reply to this topic.