simoniex Posted February 17, 2010 Report Share Posted February 17, 2010 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 Quote Link to comment Share on other sites More sharing options...
⭐ deadsoul Posted February 17, 2010 Report Share Posted February 17, 2010 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); } //+------------------------------------------------------------------+ Quote Link to comment Share on other sites More sharing options...
dswk Posted February 17, 2010 Report Share Posted February 17, 2010 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 !! ;-) Quote Link to comment Share on other sites More sharing options...
toritoo Posted February 17, 2010 Report Share Posted February 17, 2010 Re: Wick-o-gram EA why does not make any trade Quote Link to comment Share on other sites More sharing options...
simoniex Posted February 17, 2010 Author Report Share Posted February 17, 2010 Re: Wick-o-gram EA why does not make any trade do some backtest,check your own setting M5 to M15 Quote Link to comment Share on other sites More sharing options...
simoniex Posted February 17, 2010 Author Report Share Posted February 17, 2010 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.html Quote Link to comment Share on other sites More sharing options...
pray624 Posted February 17, 2010 Report Share Posted February 17, 2010 Re: Wick-o-gram EA why does not make any trade Has the above noted EA been corrected for above change? If not could someone correct it. Seems like interesting system. Any results from the EA? Thanks. Quote Link to comment Share on other sites More sharing options...
Cyrillic Posted February 17, 2010 Report Share Posted February 17, 2010 Re: Wick-o-gram EA I backtested it but was unsuccessfull in producing any profit, does anyone have a different result? Quote [spoiler:26ukmy10]Never trust, never fear, never beg[/spoiler:26ukmy10] Link to comment Share on other sites More sharing options...
simoniex Posted February 20, 2010 Author Report Share Posted February 20, 2010 Re: Wick-o-gram EA I backtested it but was unsuccessfull in producing any profit, does anyone have a different result? yeap i think this EA programming is not that perfect yet 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.