Oops, my bad
, haven't checked your site for some time. Didn't realize that you've done it already. Anyway, thanks for your ea, I think it really improves S/R trading profitability.

Grid - New indicator that replaces chart grid 60 replies
Grid (not grid system) or horizontal lines indicator 6 replies
Trading the Sixths with Snowballs 68 replies
Grid, Burst Grid, Grid Risk and Grid Profit 1 reply
Double Time Grid and Pip Grid 0 replies
DislikedAlong these lines, have you thought of setting the grid spacing according to some volatility measure such as ATR?Ignored
if you want to compile yourself you also need newest versions of offline_charts.mq4 and common_functions.mq4, i have fixed bugs in both of these files.
Also the previous version of snowball did not contain the code for pause lines (only the other lines), I don't know why I forgot this although I already officially documented the feature already. It is now included.
MT4 timeout problems and occasional freezing during timeframe switch should be solved now, it was caused by the offline chart library.
DislikedWhat is your average roi per month, 7bit? After all this time I've found the best strategy is one that involves a very favorable RR.Ignored
DislikedHi erikte279 !
7bit is sharing a fantastic trade management EA and more importantly a great trading idea with us. The least you could do is read the whole thread.
BTW, if you had done that, you would have realized that your questions are not really appropriate for this EA for 2 reasons :
- it's a trade management EA and takes signal depending on YOUR signal producing EA ;
- The main goal of the EA is to make the concept of RR obsolete.
7bit told us many times his monthly roi and even gave us charts of his equity...Ignored
DislikedJust having a thought that even if I want to secure profit early with auto-tp levels for smoother equity curve, I still want the add on grid sequence to go on before it hit my final target (like the cascading arrow levels shown in chart).Ignored
DislikedHi 7Bit,
http://codebase.mql4.com/6211
This market profile price level maybe is usefule for detecting the levels that anti-grid places.Ignored
DislikedHi, 7Bit
I’ve been testing your EA and have got to say it’s great just what I’ve been looking for. I have been using this viper grid EA found here (http://www.forexfactory.com/showpost.php?p=3601747[font=Calibri][size=3]) but stopped because of the drawdown. Now I would like to use your EA on multiple pairs but am never confidant of the stop distance as each...Ignored
void defaults(){ if (IsTesting()){ return(0); } if (Symbol6() == "GBPUSD"){ lots = 0.1; stop_distance = 30; } if (Symbol6() == "EURUSD"){ lots = 0.1; stop_distance = 20; } // add all your favorite pairs here }
[color=LightBlue][color=Black]int init(){[/color] [color=Gray] if (!IsDllsAllowed()){ MessageBox("DLL imports must be allowed!", "Snowball"); return(-1); } IS_ECN_BROKER = is_ecn_broker; CLR_BUY_ARROW = clr_buy; CLR_SELL_ARROW = clr_sell; CLR_CROSSLINE_ACTIVE = clr_stopline_active; CLR_CROSSLINE_TRIGGERED = clr_stopline_triggered;[/color] [/color][b] defaults();[/b] [color=Gray] points_per_pip = pointsPerPip(); pip = Point * points_per_pip;[/color] [color=Gray][...][/color]
DislikedHi 7Bit,
http://codebase.mql4.com/6211
This market profile price level maybe is usefule for detecting the levels that anti-grid places.
I have the MT4 version of this indi, through me signal, if you need it.
RegardsIgnored
extern int First_av = 5; extern int Second_av = 10; extern int Third_av = 20; int R1=0,R5=0,R10=0,R20=0,RAvg=0; int i=0; R1 = (iHigh(NULL,PERIOD_D1,1)-iLow(NULL,PERIOD_D1,1))/Point; for(i=1;i<=First_av;i++) R5 = R5 + (iHigh(NULL,PERIOD_D1,i)-iLow(NULL,PERIOD_D1,i))/Point; for(i=1;i<=Second_av;i++) R10 = R10 + (iHigh(NULL,PERIOD_D1,i)-iLow(NULL,PERIOD_D1,i))/Point; for(i=1;i<=Third_av;i++) R20 = R20 + (iHigh(NULL,PERIOD_D1,i)-iLow(NULL,PERIOD_D1,i))/Point; R5 = R5/First_av; R10 = R10/Second_av; R20 = R20/Third_av; RAvg = (R1+R5+R10+R20)/4;
DislikedI have give it a thought, 7bit is right, it need to be fixed grid size.
but different pairs has different size.
eurusd and gbpjpy are different.
so here is the code that calculate the daily average range. not ATR. but daily average range.
[code]
extern int First_av = 5;
extern int Second_av = 10;
extern int Third_av = 20;...Ignored
Disliked7Bit,
I seem to be having some 'errors' or I am using it wrong.
I tried putting in a "stop" horizontal line the other day and it said another object already had the name 'stop'.I imagine that is the 'stop' 'button'.
Ignored
QuoteDislikedAlso, none of the trendlines seem to have worked after I put in "start long" or "start short" etc..
QuoteDislikedIt would be cool if it added back the positions if they retrace, get stopped out etc..That would be a challenge I think.
QuoteDislikedOh, 1 more option for some people would be to change TP to unlimited?I just put in 200 for each.
Dislikeduse the description field of the line, not the name
see above
it will add the stopped positions if it continues. Do you use a FIFO broker? They mess around with your stoplosses and manipulate them, it should stop only one stoploss at a time, not all at once. You need a non-NFA, non-FIFO broker, otherwise stoplosses do not work correctly.
just set it to 0Ignored