stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

10.7/10.9 INDI SOLUTIONS
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=3550
Page 2 of 72
Author:  taipan [ Mon Apr 07, 2014 3:54 am ]
Post subject:  10.7/10.9 INDI SOLUTIONS

James Roscoe » Mon Apr 07, 2014 10:58 am wrote:Okay, I give up. Where is the TDMTL indicator? I searched FF and Forex TSD, there are dozens of iterations fof the indi. Which one is bob using?

Thanks for the help

James
That is the Demark TrendLine indicator. I think it can only be compiled using new build 600+ and cannot be compiled and used in build 509. Encountered a lot of errors when tried to compiled using Empty4 build 509.
Author:  nanningbob [ Mon Apr 07, 2014 3:57 am ]
Post subject:  10.7/10.9 INDI SOLUTIONS

Mouteki?? Section at FF I have one at home
Author:  fok [ Mon Apr 07, 2014 4:09 am ]
Post subject:  10.7/10.9 INDI SOLUTIONS

James Roscoe » Mon Apr 07, 2014 2:58 am wrote:Okay, I give up. Where is the TDMTL indicator? I searched FF and Forex TSD, there are dozens of iterations fof the indi. Which one is bob using?

Thanks for the help

James
:hi:
10.7 TDMTL_ALERT V1.2.ex4
10.7 TDMTL_ALERT V1.2.mq4
Cheers
Author:  James Roscoe [ Mon Apr 07, 2014 5:20 am ]
Post subject:  10.7/10.9 INDI SOLUTIONS

fok » Mon Apr 07, 2014 4:09 am wrote:
James Roscoe » Mon Apr 07, 2014 2:58 am wrote:Okay, I give up. Where is the TDMTL indicator? I searched FF and Forex TSD, there are dozens of iterations fof the indi. Which one is bob using?

Thanks for the help

James

:hi:



Cheers
Thanks! :yahoo:
Author:  James Roscoe [ Mon Apr 07, 2014 6:08 am ]
Post subject:  10.7/10.9 INDI SOLUTIONS

taipan » Mon Apr 07, 2014 3:54 am wrote:
James Roscoe » Mon Apr 07, 2014 10:58 am wrote:Okay, I give up. Where is the TDMTL indicator? I searched FF and Forex TSD, there are dozens of iterations fof the indi. Which one is bob using?

Thanks for the help

James
That is the Demark TrendLine indicator. I think it can only be compiled using new build 600+ and cannot be compiled and used in build 509. Encountered a lot of errors when tried to compiled using Empty4 build 509.
Hi taipan, yes that was a worry for me. I had already upgraded to 600+ after I realized that the coders here had moved on from the prior builds. 10.7 does not work on 500 builds.

So thanks to the coders here for dragging me to the next level! :clap:
Author:  spotdespot [ Mon Apr 07, 2014 8:34 am ]
Post subject:  10.7/10.9 INDI SOLUTIONS

This is a question for Tommaso really I think. If you see the attached image it shows white and aqua lines that are weekly and daily opens respectively. Obviously for today they are in the same position so overlap. I would have expected the daily and weekly stoch to be "high" and not "low" as price is above the daily & weekly opens. Am I missing something?

On a separate note - there is a minor cosmetic issue it seems with the levels in the indis. For the AEJ one you updated for >600 builds the levels were dictated by the parameter inputs and changing timeframe would draw the levels. It seems this isn't happening for the 10.7/10.9 ones in the same way. No big deal obviously - just a cosmetic thing.

Cheers,
Dave.
audchfh1.png
Author:  milanese [ Mon Apr 07, 2014 8:45 am ]
Post subject:  10.7/10.9 INDI SOLUTIONS

spotdespot » Mon Apr 07, 2014 8:34 am wrote:This is a question for Tommaso really I think. If you see the attached image it shows white and aqua lines that are weekly and daily opens respectively. Obviously for today they are in the same position so overlap. I would have expected the daily and weekly stoch to be "high" and not "low" as price is above the daily & weekly opens. Am I missing something?

On a separate note - there is a minor cosmetic issue it seems with the levels in the indis. For the AEJ one you updated for >600 builds the levels were dictated by the parameter inputs and changing timeframe would draw the levels. It seems this isn't happening for the 10.7/10.9 ones in the same way. No big deal obviously - just a cosmetic thing.

Cheers,
Dave.
I will later do here some updating with using the autosunday calculations to for the stoch calculations as in the moment only the TMAslope uses this in the indicators...

Cheers :)

Tommaso
Author:  rocketman99 [ Mon Apr 07, 2014 8:58 am ]
Post subject:  10.7/10.9 INDI SOLUTIONS

milanese » Mon Apr 07, 2014 9:45 am wrote:
spotdespot » Mon Apr 07, 2014 8:34 am wrote:This is a question for Tommaso really I think. If you see the attached image it shows white and aqua lines that are weekly and daily opens respectively. Obviously for today they are in the same position so overlap. I would have expected the daily and weekly stoch to be "high" and not "low" as price is above the daily & weekly opens. Am I missing something?

On a separate note - there is a minor cosmetic issue it seems with the levels in the indis. For the AEJ one you updated for >600 builds the levels were dictated by the parameter inputs and changing timeframe would draw the levels. It seems this isn't happening for the 10.7/10.9 ones in the same way. No big deal obviously - just a cosmetic thing.

Cheers,
Dave.
I will later do here some updating with using the autosunday calculations to for the stoch calculations as in the moment only the TMAslope uses this in the indicators...

Cheers :)

Tommaso
Can you add the following to the new indi:

extern bool PushAlert = true;

//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
void fireAlerts(string sMsg)
{

if(PopupAlert)
Alert(sMsg);

if(EmailAlert)
SendMail("Stoch Alert On "+Symbol(),sMsg);

if(PushAlert)
SendNotification(sMsg);

}

Also, can you add labels to the buffers so that when I hover over the lines it does not say "value1", "value2" etc. Saves me from having to look at the code to figure out what colour line is which.

Thanks for the great work.
Author:  milanese [ Mon Apr 07, 2014 9:09 am ]
Post subject:  10.7/10.9 INDI SOLUTIONS

rocketman99 » Mon Apr 07, 2014 8:58 am wrote:
Can you add the following to the new indi:

extern bool PushAlert = true;

//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
void fireAlerts(string sMsg)
{

if(PopupAlert)
Alert(sMsg);

if(EmailAlert)
SendMail("Stoch Alert On "+Symbol(),sMsg);

if(PushAlert)
SendNotification(sMsg);

}

Also, can you add labels to the buffers so that when I hover over the lines it does not say "value1", "value2" etc. Saves me from having to look at the code to figure out what colour line is which.

Thanks for the great work.
I will take a look to do this :)

Cheers :)

Tommaso
Author:  spotdespot [ Mon Apr 07, 2014 9:31 am ]
Post subject:  10.7/10.9 INDI SOLUTIONS

milanese » Mon Apr 07, 2014 9:45 am wrote: I will later do here some updating with using the autosunday calculations to for the stoch calculations as in the moment only the TMAslope uses this in the indicators...

Cheers :)

Tommaso
Great - thanks Tommaso. Incredible work you have done with Bob here. Thank you.

Cheers,
Dave.
All times are UTC Page 2 of 72