abuamira Posted April 19, 2009 Report Share Posted April 19, 2009 Re: XPROFUSTER (forecast indicator) just looked at the coding for xprofuter and it's just a few lines of nothing. see below I've found out that it's actually a copy of the original Dayimpulseoverlay indicator, and the xprofuter people just renamed it and tried to pawn it off as their own. here is the description in the coding of the original pogrammer. * Filename: DayImpulseOverlay.mq4 * Author: DriverDan, based on the original by Tartan at the link below * Date: Nov 3, 2005 * * Description: This is Day Impulse overlaid on the main chart. Requires DayImpulse2DD. * * Sums the close - open for the past "per" bars and shifts it forward * "drawShift" bars. Sometimes works well at predicting movement. * * Signal2 is just the current bar's close - open shifted "drawShift" * periods forward. This is what you see as the main signal draws. It * isn't updated as time moves forward so that you have something to look * back on. * * WARNING: Looking at past bars will be deceiving. It may look like it * predicts perfectly on some pairs but remember that it is constantly * updated. The most accurate live bar is the current one. * * The future is not set. * And here is the coding of xprofuter.... nothing much there to future analyze the market. #property indicator_chart_window #property indicator_buffers 1 #property indicator_color1 Magenta extern int per = 14; // Period for signal extern int update = 1; // 1 = continuously update, 0 = freeze // Buffers for signals double drawBuffer[]; int init() { string title = "XProfuter(" + per + ")"; SetIndexStyle(0, DRAW_LINE, 0, 2); SetIndexBuffer(0, drawBuffer); // Shift everything forward SetIndexShift(0, per); // Titles for each line SetIndexLabel(0, "Signal(" + per + ")"); IndicatorShortName(title); return(0); } int start() { int counted_bars = IndicatorCounted(); int shift, i, limit, lim; double prevSignal = -1, barClose = -1, imp; if(update == 1) { imp = iCustom(NULL, 0, "XprofuterDD", per, 0, 0, 0, 0, 0, per) * Point; barClose = Close[0] - iCustom(NULL, 0, "XprofuterDD", per, 0, per) * Point; // Loop through and calculate the signals. Everytime this runs we recalculate the // current and all future signals. The future is not set :) for(shift = per - 1; shift >= 0; shift--) { imp = iCustom(NULL, 0, "XprofuterDD", per, 0, shift) * Point; drawBuffer[shift] = barClose + imp; } } return(0); } Quote Link to comment Share on other sites More sharing options...
CL3RIC Posted April 26, 2009 Report Share Posted April 26, 2009 Re: XPROFUSTER (forecast indicator) HI SEFC when will completed inidcator reprogram xprof and sefc arrow? :oops: Quote Link to comment Share on other sites More sharing options...
SEFC Posted April 26, 2009 Report Share Posted April 26, 2009 Re: XPROFUSTER (forecast indicator) HI SEFC when will completed inidcator reprogram xprof and sefc arrow? :oops: Bahasa Indonesia Mohon maaf Mr.Cl3ric... saya sudah menghentikan penelitian dari program xpro itu, karena saya menganggap tidak berguna. Sedangkan untuk SEFC Arrow, saya masih ada kesulitan dengan gambar yang bertumpuk... ide dari SEFC Arrow itu sebenarnya dari perhitungan Zig Zag..dimana jika nilai akhir sudah meninggalkan beberapa bar sebelumnya dan low price sudah tidak tembus dari bar tersebut sampai test 3 kali maka arrow akan muncul secara permanen.. Google translate.. We're sorry Mr.Cl3ric, I stop the program from the research xpro that, because I do not consider useful. While for the SEFC Arrow, I still have trouble with the image of overlapping ... SEFC Arrow's idea is actually a calculation of the Zig Zag .. where if the end is to leave some of the previous bar and low price transparency is not from the bar until the test is 3 times the arrow appears permanently .. Quote SEFC Mode= Red light ...(off) .. "Indonesia Forex Community" 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.