Cherry - yellow is the color I choose to represent the +- range which can be set to what you chose. I have this set to 0 as I am using the OBV_TMAtrueslope to highlight the shift in angle of slope of the TMA - I am not concerned with the slope value just whether the slope angle is heading up or down compared with the previous candles so this is why the bars on my chart are either red (heading down) or blue (heading up).
Pipstubborn - yes same as you, using next higher timeframe as a filter only trading in that direction.
I've attached my H1 template along with TMA bands and OBV_TMAtrueslope indicators - the rest I've taken from those posted on this thread. If trading a different timeframe just need to change the TMA timeframes to the next higher if you wish to use them this way.
HGI used with Hurst charts
- TraderJoeForex
- Trader
- Posts: 1157
- Joined: Fri Mar 08, 2013 10:29 pm
- Location: South London
HGI used with Hurst charts
You do not have the required permissions to view the files attached to this post.
- slowkey
- Trader
- Posts: 791
- Joined: Sun Dec 04, 2011 1:27 pm
- Location: Maryland USA
HGI used with Hurst charts
Pips400 Hi and Happy New Year ...
Hurst was not showing up on some of the time periods. I think you left out "timeframe" in the following code which was present in Radar's 1a version and seems to work right. Line 268 ...
With this change the indicator shows up on all time periods.
Cheers,
Doug
Hurst was not showing up on some of the time periods. I think you left out "timeframe" in the following code which was present in Radar's 1a version and seems to work right. Line 268 ...
Code: Select all
while ( iCustom (NULL,TimeFrame,TMA_centered_name,TMA_fast_value,0,x) < iCustom
------ >(NULL,0,TMA_centered_name,TMA_slow_value,0,x) )
// Radar's version has ------>
while ( iCustom (NULL,TimeFrame,TMA_centered_name,TMA_fast_value,0,x) < iCustom
------->(NULL,TimeFrame,TMA_centered_name,TMA_slow_value,0,x) )Cheers,
Doug
The Gann Ribbons ... A new tool for looking at Time Periods, Price and Dynamic S/R in any system.
Now using HGI on 60 minutes and up & 10.7 with Hurst Targets intraday.
Bob's HGI Fourm
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3524
"No problem can be solved from the same level of consciousness that created it."
Albert Einstein
Now using HGI on 60 minutes and up & 10.7 with Hurst Targets intraday.
Bob's HGI Fourm
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3524
"No problem can be solved from the same level of consciousness that created it."
Albert Einstein
-
global
- Trader
- Posts: 67
- Joined: Wed Aug 15, 2012 2:16 am
HGI used with Hurst charts
Happy New Year to All!
Thanks for making all these fantastic indicators available. The MTF Hurst Target and MTF Hurst Target v1a make trading decisions so much easier. However, I would like to see the price points of the hurstextensionline1,hurstextensionline2 and hurstextensionline3 lines for any candle in the past to visually and also via iCustom calls, observe how the price reacted in relation to these levels in the past.
I suppose that to modify those indicators to add that feature would require putting their current code in a loop and writing the hurstextensionline1,hurstextensionline2 and hurstextensionline3 values to three buffers for each candle we check in the loop but I'm really not sure how to do that, especially with the upgraded Empty4 language.
If it's easy for any of you coders to add that functionality, I'll really appreciate it if you can. Thanks
Thanks for making all these fantastic indicators available. The MTF Hurst Target and MTF Hurst Target v1a make trading decisions so much easier. However, I would like to see the price points of the hurstextensionline1,hurstextensionline2 and hurstextensionline3 lines for any candle in the past to visually and also via iCustom calls, observe how the price reacted in relation to these levels in the past.
I suppose that to modify those indicators to add that feature would require putting their current code in a loop and writing the hurstextensionline1,hurstextensionline2 and hurstextensionline3 values to three buffers for each candle we check in the loop but I'm really not sure how to do that, especially with the upgraded Empty4 language.
If it's easy for any of you coders to add that functionality, I'll really appreciate it if you can. Thanks
-
Cherry
- Trader
- Posts: 145
- Joined: Wed Feb 12, 2014 9:53 am
- Location: Brisbane, Australia
HGI used with Hurst charts
Thanks for your reply, I see now where I missed the change of parameters to 0 to cancel the range colour.TraderJoeForex » Thu Jan 01, 2015 6:38 am wrote:Cherry - yellow is the color I choose to represent the +- range which can be set to what you chose. I have this set to 0 as I am using the OBV_TMAtrueslope to highlight the shift in angle of slope of the TMA - I am not concerned with the slope value just whether the slope angle is heading up or down compared with the previous candles so this is why the bars on my chart are either red (heading down) or blue (heading up).
Pipstubborn - yes same as you, using next higher timeframe as a filter only trading in that direction.
I've attached my H1 template along with TMA bands and OBV_TMAtrueslope indicators - the rest I've taken from those posted on this thread. If trading a different timeframe just need to change the TMA timeframes to the next higher if you wish to use them this way.
Looking at your H1 template you have one OBV_TMA with setting for 5 on the current timeframe and the other with setting of 11 on the D1 (1440) timeframe.
I sorry if I'm dense here but in your explanation it sounds as though you use both 5 and 11 for the current timeframe (**current timeframe 5 and 11TMA slope must be shifting in the same direction (i.e. OBV_TMATrueSlope previous closed bar is blue for both 5 and 11 for a buy or red for both 5 and 11 for a sell ) and then also 5 and 11 for the higher timeframe but using the TMA bands to see this. (I use the TMA band to show a higher timeframe picture for 5 and 11 as a guide)
I hope you don't mind confirming for me if both the OBV indi's should be for the current timeframe with the 2 different settings or if in fact you do use the HTF for the 11.
Happy New Year to yourself and all here.
Cherry
- pips400
- Trader
- Posts: 279
- Joined: Tue Jan 01, 2013 9:03 pm
HGI used with Hurst charts
Thanks again Doug, have no idea how that happened as I only fixed the previous bug and didn't touch that part of the code. Anyway, important thing is it's fixed.slowkey » Wed Dec 31, 2014 10:20 pm wrote:Pips400 Hi and Happy New Year ...
Hurst was not showing up on some of the time periods. I think you left out "timeframe" in the following code which was present in Radar's 1a version and seems to work right. Line 268 ...
With this change the indicator shows up on all time periods.Code: Select all
while ( iCustom (NULL,TimeFrame,TMA_centered_name,TMA_fast_value,0,x) < iCustom ------ >(NULL,0,TMA_centered_name,TMA_slow_value,0,x) ) // Radar's version has ------> while ( iCustom (NULL,TimeFrame,TMA_centered_name,TMA_fast_value,0,x) < iCustom ------->(NULL,TimeFrame,TMA_centered_name,TMA_slow_value,0,x) )
Cheers,![]()
Doug
Happy New Year
Pips400
You do not have the required permissions to view the files attached to this post.
Trade the edge not the moment
Dragons Lair Trading - My Personal Trading Journal and Strategy
Dragons Lair Trading - My Personal Trading Journal and Strategy
-
Radar
- Trader
- Posts: 437
- Joined: Fri Mar 23, 2012 5:39 pm
- Location: Round the bend ;)
HGI used with Hurst charts
Hey Pips400,
Yeah, that was my quick & nasty "find & replace" bug from the first MTF version... I thought I killed it in the 1a version, though
I have embedded the indy into a MTF EA, and am creating a 14 sample SMA of the extension for every timeframe... Not the best idea, really, 'cos it has taken over 16 hours to get through 3 months' of data, and still have a couple more years worth to get through
Time to overload a function (tma_centred_value), I reckon
Have fun!
Radar =8^)
Yeah, that was my quick & nasty "find & replace" bug from the first MTF version... I thought I killed it in the 1a version, though
I have embedded the indy into a MTF EA, and am creating a 14 sample SMA of the extension for every timeframe... Not the best idea, really, 'cos it has taken over 16 hours to get through 3 months' of data, and still have a couple more years worth to get through
Time to overload a function (tma_centred_value), I reckon
Have fun!
Radar =8^)
Check out my new, (well, old now), manual trade & automatic scale-in manager,
StackManV2
StackManV2
- slowkey
- Trader
- Posts: 791
- Joined: Sun Dec 04, 2011 1:27 pm
- Location: Maryland USA
HGI used with Hurst charts
Oh this is what happened. There was a version one Hurst Targets by Pips. Second a MTF version you put out. Third another version 1a that corrected timeframe that you put out. The 4th version Pips put with a fix of his code using your first MTF version not seeing the second 1a version you put out. That made a 4th version that did not include your code correction from the 1a version. Now finally this version has both of the code corrections by you and Pips. This makes the 4th version of the MTF Hurst Target. I did not know that Pips had not seen the 1a version of the code. This must be what happened. So this is version 4 folks and all who downloaded the previous versions of the MTF Hurst Target should get rid of them and download this version. Probably should give this a version number like V4 or something. Code look solid now at first glance. So if one of you want to do that it will be less confusing for those who read this thread historically.Radar » Thu Jan 01, 2015 7:08 am wrote:Hey Pips400,
Yeah, that was my quick & nasty "find & replace" bug from the first MTF version... I thought I killed it in the 1a version, though
I have embedded the indy into a MTF EA, and am creating a 14 sample SMA of the extension for every timeframe... Not the best idea, really, 'cos it has taken over 16 hours to get through 3 months' of data, and still have a couple more years worth to get through
Time to overload a function (tma_centred_value), I reckon
Have fun!
Radar =8^)
Pedro may want to post this in post 1 since this is a really nice indicator. I appreciate both of your work on this because now I can see the 4 hour Hurst on the 15 minute chart which makes a nice intraday trading direction and a wonderful tool to trade Nadex options. You can buy options based on realistic targets. Very sweet. This is actually the best option tool I have ever seen.
Cheers and Happy New Year to both of you. God Bless.
Doug
The Gann Ribbons ... A new tool for looking at Time Periods, Price and Dynamic S/R in any system.
Now using HGI on 60 minutes and up & 10.7 with Hurst Targets intraday.
Bob's HGI Fourm
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3524
"No problem can be solved from the same level of consciousness that created it."
Albert Einstein
Now using HGI on 60 minutes and up & 10.7 with Hurst Targets intraday.
Bob's HGI Fourm
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3524
"No problem can be solved from the same level of consciousness that created it."
Albert Einstein
-
Radar
- Trader
- Posts: 437
- Joined: Fri Mar 23, 2012 5:39 pm
- Location: Round the bend ;)
HGI used with Hurst charts
Nicely explained, Doug 
Thanks for that
I'll leave it with Pips400... He's a much better coder than I'll ever be
Have a good one.
Radar =8^)
Thanks for that
I'll leave it with Pips400... He's a much better coder than I'll ever be
Have a good one.
Radar =8^)
Check out my new, (well, old now), manual trade & automatic scale-in manager,
StackManV2
StackManV2
- TraderJoeForex
- Trader
- Posts: 1157
- Joined: Fri Mar 08, 2013 10:29 pm
- Location: South London
HGI used with Hurst charts
Cherry, both OBV_TMATrueslopes are current timeframe and 5 and 11 respectively - both can also display the slope of a higher timeframe but I have this font as background color as have no need to display (so this could just be left as 0 rather than 1440).
Hope this clarifies.
Hope this clarifies.
-
Cherry
- Trader
- Posts: 145
- Joined: Wed Feb 12, 2014 9:53 am
- Location: Brisbane, Australia
HGI used with Hurst charts
Yes thanks, I get it now. Just thought the extra timeframe meant another timeframe would be displayed on that indi inplace of the current one.TraderJoeForex » Fri Jan 02, 2015 5:20 am wrote:Cherry, both OBV_TMATrueslopes are current timeframe and 5 and 11 respectively - both can also display the slope of a higher timeframe but I have this font as background color as have no need to display (so this could just be left as 0 rather than 1440).
Hope this clarifies.