Jump to content

Wick-o-gram EA


simoniex

Recommended Posts

Dear Member,

 

I'm not the programmer. As I found Wick-o-gram is quite a nice indicator for scalping. almost 90% accuracy.

After that, I found the Wick-o-gram EA that you guys wanted long time ago.

I hope you enjoy this forum!

 

 

hxxp://[email protected]/file/223703236/47a428b8/wick_EA_v4.html

 

If anyone wants to modify the EA, you are much welcome to make it better!

 

Regards,

Simoniex

Link to comment
Share on other sites

Re: Wick-o-gram EA

 

the ea give this in tester :

2010.02.17 23:25:01 2009.11.05 04:46 wick EA v4~ EURUSD,M15: invalid integer number as parameter 3 for ObjectSetText function

 

any idea?

 

and here is the wick indicator if any one aske..

 

 

//+------------------------------------------------------------------+

//| Wick.mq4 |

//| Seavo |

//| [url]http://www.forexfactory.com/member.php?u=17692[/url] |

//+------------------------------------------------------------------+

#property copyright "Seavo"

#property link "http://www.forexfactory.com/member.php?u=17692"

#property indicator_separate_window

#property indicator_buffers 2

#property indicator_color1 Green
#property indicator_color2 Red
#property indicator_width1 8
#property indicator_width2 8
//---- buffers

double ExtMapBuffer1[];
double ExtMapBuffer2[];

int PipFactor = 1;
//+------------------------------------------------------------------+

//| Custom indicator initialization function |

//+------------------------------------------------------------------+

int init()

{

//---- indicators

SetIndexStyle(0,DRAW_HISTOGRAM);

SetIndexBuffer(0,ExtMapBuffer1);

SetIndexStyle(1,DRAW_HISTOGRAM);

SetIndexBuffer(1,ExtMapBuffer2);

string short_name = "Wick";

IndicatorShortName(short_name);
  IndicatorDigits(1);
  // Cater for fractional pips
  if (Digits == 3 || Digits == 5)
  {
     PipFactor = 10;
  }

//----

return(1);

}

//+------------------------------------------------------------------+

//| Custor indicator deinitialization function |

//+------------------------------------------------------------------+

int deinit()

{

//----

//----

return(0);

}

//+------------------------------------------------------------------+

//| Custom indicator iteration function |

//+------------------------------------------------------------------+

int start()

{

int counted_bars=IndicatorCounted();

//---- check for possible errors

if (counted_bars<0) return(-1);

//---- last counted bar will be recounted

if (counted_bars>0) counted_bars--;

int pos=Bars-counted_bars;



//---- main calculation loop
double dResult1;
double dResult2;
while(pos>=0)

{
if (iOpen(NULL, 0, pos) > iClose(NULL, 0, pos)){
  dResult1 = iHigh(NULL, 0, pos) - iOpen(NULL, 0, pos);
  }
if (iOpen(NULL, 0, pos) <= iClose(NULL, 0, pos)){
  dResult1 = iHigh(NULL, 0, pos) - iClose(NULL, 0, pos);
  }
if (iOpen(NULL, 0, pos) > iClose(NULL, 0, pos)){
  dResult2 = iLow(NULL, 0, pos) - iClose(NULL, 0, pos);
  }
if (iOpen(NULL, 0, pos) <= iClose(NULL, 0, pos)){
  dResult2 = iLow(NULL, 0, pos) - iOpen(NULL, 0, pos);
  }

ExtMapBuffer1[pos]= (dResult1/Point)/PipFactor ;
ExtMapBuffer2[pos]= (dResult2/Point)/PipFactor ;

pos--;

}

//----

return(0);

}

//+------------------------------------------------------------------+

Link to comment
Share on other sites

Re: Wick-o-gram EA

 

the ea give this in tester :

2010.02.17 23:25:01 2009.11.05 04:46 wick EA v4~ EURUSD,M15: invalid integer number as parameter 3 for ObjectSetText function

 

any idea?

 

 

Hi Deadsoul,

 

Replace the line in EA where is ObjectSetText by this one :

ObjectSetText(l_name_24, l_name_24, 12, l_fontname_16, l_color_12);

Thx for kudos !! ;-)

Link to comment
Share on other sites

Re: Wick-o-gram EA

 

Can you share the indicator as well ?

because I couldn't find by searching........

Thanks a lot ^:)^

 

you can find indicator in this forum, EA only here.

 

Hi guys,

 

This is a simple scalping method using only the wick of a candlesticks, TP minimum 5 pips and has been tested successfully with EUR/USD

 

Need feedback from other members to test it with other pairs..... :mrgreen:

 

Package system includes :

 

1. ScalpWick Manual Trading

2. Video tutorial

3. and free Wick-o-gram indicator from me...

 

Enjoy...

 

http://[email protected]/file/102563296/a21ca495/Scalpwick.htm

l

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

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