Recent Discussions on xpworx forum - metatrader 4 - mql4 - metatrader 5 - mql5 - indicators - experts - scripts - tools http://www.xpworx.com/forum/discussions/feed.rss Fri, 18 May 12 00:00:03 -0400 Recent Discussions on xpworx forum - metatrader 4 - mql4 - metatrader 5 - mql5 - indicators - experts - scripts - tools en-CA xpMail - Send Email Anywhere. http://www.xpworx.com/forum/discussion/7/xpmail-send-email-anywhere. Sat, 13 Aug 2011 17:17:12 -0400 codersguru 7@/forum/discussions Do you want to send emails from your expert to gmail, hotmail, yahoo, etc?
Do you want to send attachment?

This is the xpMail.
]]>
MT4 File functions http://www.xpworx.com/forum/discussion/8/mt4-file-functions Mon, 05 Sep 2011 03:33:29 -0400 nondisclosure 8@/forum/discussions First, I've got to say, your work as inspired me to get back into coding.  I've had so much fun since I have.

Here's my question; in the code for said DLL, you call the following functions: CreateFile, WriteFile, and ReadFile.  But I'm trying to figure out where you're calling them from.

Can you help me figure that out?  I wish to create something like this on my own.  Any help you can provide would be greatly apprecieated.

]]>
Auto Fibo Indicator http://www.xpworx.com/forum/discussion/6/auto-fibo-indicator Sat, 13 Aug 2011 15:43:01 -0400 codersguru 6@/forum/discussions Auto Fibonacci Indicator?
]]>
Array indexing and Lesson 12 http://www.xpworx.com/forum/discussion/13/array-indexing-and-lesson-12 Wed, 14 Mar 2012 07:45:15 -0400 nikhilvs 13@/forum/discussions
Thanks for your wonderful course. I'm now reviewing again and I'm confused by this snippet in Lesson 12:

while (pos > 0) 
   {
      dHigh = High[pos];
      dLow = Low[pos];
      dResult = dHigh - dLow;
      ExtMapBuffer1[pos] = dResult;
      pos --;
   }

Why do we not put the while condition as 'while (pos >= 0)'? At present, we never seem to process the case where pos = 0, so we never process the latest bar on the chart?

Thanks

Nikhil
]]>
Xpma expert http://www.xpworx.com/forum/discussion/12/xpma-expert Wed, 29 Feb 2012 07:41:48 -0500 s1quash 12@/forum/discussions Close All Script http://www.xpworx.com/forum/discussion/9/close-all-script Wed, 07 Sep 2011 23:44:59 -0400 codersguru 9@/forum/discussions script.

Please tell me what do you think?
]]>
xpMA indicator ... What do you wish to see? http://www.xpworx.com/forum/discussion/5/xpma-indicator-...-what-do-you-wish-to-sees Sat, 13 Aug 2011 01:03:18 -0400 codersguru 5@/forum/discussions
Tell me what do you want to see in xpMA indicator?

CodersGuru
]]>
ZigZag_Channel + EA http://www.xpworx.com/forum/discussion/11/zigzag_channel-ea Fri, 14 Oct 2011 08:10:27 -0400 robcole 11@/forum/discussions Hi coders guru,


thx for the indi and the ea, i have tried both with little success but...


Do you follow the ATC 2011?


Tim, currently the second, his ea uses ZigZag for his breakout-strategy and since that I had the idea, to draw horizontal lines from the last high and low, and to use any break as trade signal.

I've implemented it in the indicator,


_______________


{
      ObjectCreate(dn_name,OBJ_HLINE,0,Time[bar2],price2,Time[bar2],price2);     
      ObjectSet(dn_name,OBJPROP_STYLE,STYLE_SOLID);
      ObjectSet(dn_name,OBJPROP_WIDTH,2);
      ObjectSet(dn_name,OBJPROP_COLOR,LowerBandColor); 
      WindowRedraw();
   }


____________________


and he also shows the lines correctly, but unfortunately, the EA does no more trade after that.

Can you please check this out or put it in another way?


 


THANK YOU very much!!

]]>