MetaCrazy Posted September 8, 2010 Report Share Posted September 8, 2010 anyone know the difference between the standard $599 EA and the lite $99 EA? Quote Link to comment Share on other sites More sharing options...
BobR Posted September 8, 2010 Report Share Posted September 8, 2010 (edited) anyone know the difference between the standard $599 ea and the lite $99 ea? $500.00 :)) The blurb at the web site says the standard version will handle up to 15 lots at a time while the lite version is limited to 1.5 lots. The standard version is also billed as standard account ready. If you can afford to fund one of those, $500 is just a drop in the bucket for you. Edited September 8, 2010 by BobR Quote Link to comment Share on other sites More sharing options...
hatchsead Posted September 8, 2010 Report Share Posted September 8, 2010 Here is the complete package with EX4 & DLL (must be educated) : Could someone please educate Quote Link to comment Share on other sites More sharing options...
richdad711 Posted September 8, 2010 Report Share Posted September 8, 2010 Hi metacrazy Please make use of the ex4 found on post#11. That version has already been educated to trade up to 15 lots. Cheers halcyonn 1 Quote Link to comment Share on other sites More sharing options...
richdad711 Posted September 8, 2010 Report Share Posted September 8, 2010 Hi metacrazy Please make use of the ex4 found on post#11. That version has already been educated to trade up to 15 lots. Cheers Quote Link to comment Share on other sites More sharing options...
BobR Posted September 8, 2010 Report Share Posted September 8, 2010 it looks like the .dll makes an entry somewhere in the filesystem or the registry and is always aware of the expiry coded into the key. FWIW, I found the product key stored at two places in the registry: HKCU\Software\Pipzen\ProductKey and HKEY_USERS\S-1-5-...-1003\Software\Pipzen\ProductKey taipan and iwjw 2 Quote Link to comment Share on other sites More sharing options...
BobR Posted September 8, 2010 Report Share Posted September 8, 2010 regarding the expiry date, i did change my system date to October 10, 2010 and everything seems to be still working. I'd be willing to bet that the expiration date is compared to the one provided by the MT4 server. Quote Link to comment Share on other sites More sharing options...
MetaCrazy Posted September 8, 2010 Report Share Posted September 8, 2010 I'd be willing to bet that the expiration date is compared to the one provided by the MT4 server. there is no Month() or Year() variable in the EA code. if there is a time check it must be internal to the DLL. Quote Link to comment Share on other sites More sharing options...
BobR Posted September 8, 2010 Report Share Posted September 8, 2010 there is no Month() or Year() variable in the EA code. if there is a time check it must be internal to the DLL. The DLL would use MT4's TimeCurrent() function for the comparison -- far easier to deal with the binary nature of the product key than decimal functions like Month() and Year(). Quote Link to comment Share on other sites More sharing options...
MetaCrazy Posted September 9, 2010 Report Share Posted September 9, 2010 (edited) The DLL would use MT4's TimeCurrent() function for the comparison -- far easier to deal with the binary nature of the product key than decimal functions like Month() and Year(). i think you may be correct. there is a file write function in the code that uses TimeCurrent(). the DLL must access that file for expiration. the file name is ForexPipZen.txt. i just checked the ForexPipZen.txt file and it it is a log file that keeps track of errors. so don't know how the expiration takes place. Edited September 9, 2010 by MetaCrazy checked content of file Quote Link to comment Share on other sites More sharing options...
acosma Posted September 9, 2010 Report Share Posted September 9, 2010 Any coders here ... please educate the dll. thanks. Quote Link to comment Share on other sites More sharing options...
richdad711 Posted September 10, 2010 Report Share Posted September 10, 2010 hope hawkfx will get back to us very soon with educated PIPZEN.DLL got 5 trades with this and all stopped out.... http://www.mt4i.com/users/rea006 Quote Link to comment Share on other sites More sharing options...
halcyonn Posted September 10, 2010 Report Share Posted September 10, 2010 Richdad what that ea R.E.A? looks like a steady winner! Quote Link to comment Share on other sites More sharing options...
hawkfx Posted September 10, 2010 Report Share Posted September 10, 2010 Please put the indicator IndX1.ex4 should be on indicators folder. Quote Link to comment Share on other sites More sharing options...
richdad711 Posted September 10, 2010 Report Share Posted September 10, 2010 Richdad what that ea R.E.A? looks like a steady winner! yeah, it is pretty much a steady winner. anyways, R.E.A. stands for Richdad Expert Advisor Quote Link to comment Share on other sites More sharing options...
richdad711 Posted September 10, 2010 Report Share Posted September 10, 2010 Please put the indicator IndX1.ex4 should be on indicators folder. #property copyright "Copyright © 2008 ForexPIPZen.com" #property link "[email protected]" #property indicator_separate_window #property indicator_buffers 3 #property indicator_color1 Black #property indicator_color2 Blue #property indicator_color3 Yellow extern int short = 3; extern int long = 13; extern int smooth = 5; extern string DO.NOT.EDIT = "-DO NOT EDIT VARIABLES ABOVE-"; extern string DO.NOT.EDIT. = "-Variables are internally calibrated-"; extern string WWW.FOREXPIPZEN.COM = "-ForexPIPZen.com/FAQ for details-"; double g_ibuf_112[]; double g_ibuf_116[]; double g_ibuf_120[]; double g_ibuf_124[]; double g_ibuf_128[]; int init() { IndicatorBuffers(5); SetIndexStyle(0, DRAW_NONE); SetIndexStyle(1, DRAW_HISTOGRAM); SetIndexStyle(2, DRAW_HISTOGRAM); IndicatorDigits(Digits + 2); SetIndexDrawBegin(0, 38); SetIndexDrawBegin(1, 38); SetIndexDrawBegin(2, 38); SetIndexBuffer(0, g_ibuf_112); SetIndexBuffer(1, g_ibuf_116); SetIndexBuffer(2, g_ibuf_120); SetIndexBuffer(3, g_ibuf_124); SetIndexBuffer(4, g_ibuf_128); IndicatorShortName("ZEN Oscillator WARNING DO NOT EDIT VARIABLES"); SetIndexLabel(1, NULL); SetIndexLabel(2, NULL); return (0); } int start() { double ld_8; double ld_16; int li_4 = IndicatorCounted(); if (li_4 > 0) li_4--; int li_0 = Bars - li_4; for (int li_24 = 0; li_24 < li_0; li_24++) g_ibuf_124[li_24] = iMA(NULL, 0, short, 0, MODE_SMA, PRICE_MEDIAN, li_24) - iMA(NULL, 0, long, 0, MODE_SMA, PRICE_MEDIAN, li_24); for (li_24 = 0; li_24 < li_0; li_24++) g_ibuf_128[li_24] = iMAOnArray(g_ibuf_124, Bars, smooth, 0, MODE_SMA, li_24); bool li_28 = TRUE; for (li_24 = li_0 - 1; li_24 >= 0; li_24--) { ld_16 = g_ibuf_124[li_24] - g_ibuf_128[li_24]; ld_8 = g_ibuf_124[li_24 + 1] - (g_ibuf_128[li_24 + 1]); if (ld_16 > ld_8) li_28 = TRUE; if (ld_16 < ld_8) li_28 = FALSE; if (!li_28) { g_ibuf_120[li_24] = ld_16; g_ibuf_116[li_24] = 0.0; } else { g_ibuf_116[li_24] = ld_16; g_ibuf_120[li_24] = 0.0; } g_ibuf_112[li_24] = ld_16; } return (0); } Quote Link to comment Share on other sites More sharing options...
halcyonn Posted September 10, 2010 Report Share Posted September 10, 2010 yeah, it is pretty much a steady winner. anyways, R.E.A. stands for Richdad Expert Advisor what about Richdad's clan? Quote Link to comment Share on other sites More sharing options...
hawkfx Posted September 10, 2010 Report Share Posted September 10, 2010 Here it is educated... http://www.multiupload.com/9VDRLMAJGN I don't think is a winner... taipan, jacknie, halcyonn and 7 others 10 Quote Link to comment Share on other sites More sharing options...
halcyonn Posted September 10, 2010 Report Share Posted September 10, 2010 HawkFx greatly appreciate your help. the backtests still look reasonably good though Richdad had 5 losses in a row in forward test and you also have the view throwing doubt on its profitability...any reason why you think its not profitable? thanx once more! Quote Link to comment Share on other sites More sharing options...
iliotest Posted September 10, 2010 Report Share Posted September 10, 2010 Here it is educated... http://www.multiupload.com/9VDRLMAJGN I don't think is a winner... THANKS hawkfx Which tool do you use to read read the DLL. i tried to do thay few weeks ago with other EA and was imposible for me... buen trabajo compañero Quote Link to comment Share on other sites More sharing options...
MetaCrazy Posted September 10, 2010 Report Share Posted September 10, 2010 hawkfx, do you still need the authorization code with this? i can't tell because i originally installed the demo version with the authorization code. Quote Link to comment Share on other sites More sharing options...
arconite Posted September 17, 2010 Report Share Posted September 17, 2010 Anyone seeing green with this EA? Quote Link to comment Share on other sites More sharing options...
jtaka Posted September 17, 2010 Report Share Posted September 17, 2010 anyone have manual? Quote Link to comment Share on other sites More sharing options...
tuoitrecuoi Posted September 19, 2010 Report Share Posted September 19, 2010 not good ea, educated here http://www.megaupload.com/?d=9CEL8RBP Quote Link to comment Share on other sites More sharing options...
iliotest Posted October 7, 2010 Report Share Posted October 7, 2010 not good ea, educated here http://www.megaupload.com/?d=9CEL8RBP this version 108.8889 i dont think is educated, it is only decompiled. is not working for me Any body have the version 109 to share??? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.