Jump to content

Pipzen


Recommended Posts

  • Replies 55
  • Created
  • Last Reply

Top Posters In This Topic

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 by BobR
Link to comment
Share on other sites

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().

Link to comment
Share on other sites

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 by MetaCrazy
checked content of file
Link to comment
Share on other sites

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);

}

Link to comment
Share on other sites

  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...