You need to add a shared link to look at, otherwise what you have done is just a guess.
Best posts made by jstap
-
RE: why is mt5 ea not workingposted in Questions & Answers
-
RE: HOW TO CREATE ROBOT WITH FRACTALSposted in Questions & Answers
Yes because it is using ID0, no fractal ever appears on the current candle. Select ID2
-
RE: Exclusive bot for one trading account onlyposted in Questions & Answers
Yes put it on init, use if different and terminate block below
-
RE: Exclusive bot for one trading account onlyposted in Questions & Answers
I am sure you are not dumb, everybody learns somehow and you got this far, like this:

-
RE: display the entered timeframe constantposted in Questions & Answers
Comment, text code input, constant with the TF
-
RE: why is mt5 ea not workingposted in Questions & Answers
Once per bar you are checking candle 0, remove this for test, or check candle 1.
-
RE: ATR Stop Loss - Add ATR multiple above or below last two candles highs or lows?posted in Questions & Answers
Try adding this in adjust for buys, -iATR(NULL,0,14,0);
this for sells +iATR(NULL,0,14,0);
to multiply add *2 or something in between ) and ;
14 is the ATR period you want to use, NULL is for current symbol. 0 is the current time frame, put this in the stop loss box that's using the level you want to adjust -
RE: How to combine 2 EAs in metaeditor??posted in Questions & Answers
It is possible, but there is a vast amount of code to go through, let FX combine it all, then change what is needed,
-
RE: MACD linesposted in Questions & Answers
In meta trader, the signal line is the signal line, the histogram is the main line.
-
RE: TARGET PROFIT FOR THE DAY RECOVERYposted in Questions & Answers
Check profit (period of time)< place trade, > close all trades
-
RE: TARGET PROFIT FOR THE DAY RECOVERYposted in Questions & Answers
check profit < above placing trade blocks, check profit > above a close trades block.
-
RE: Need drawing to disappear once price went through it.posted in Questions & Answers
Use the price level and when the price goes beyond delete the object by name.
-
RE: askposted in Questions & Answers
Bear in mind ZigZag is constantly repainting on the current leg. To get the retracement % you need the high/low values, then you can get the %value, then decide what classes this value is being hit (current price/close). This line will show you how to get the % level. PERCENT1=LOW+0.2*(HIGH-LOW); OR PERCENT2=LOW+0.8*(HIGH-LOW); 0.2 and 0.8 represent the 20%, but as you are always subtracting a low number from a big number, there are times when things need to be reversed.
-
RE: Need help with making EAposted in Questions & Answers
I will add this, bots that buy and sell in opposite directions can make a lot of profit quickly, but they are at serious risk of price runaway, so basically if the price doesn't return, you make a loss or blow the account, in the long run, this will out way the profit made.
-
RE: Simple pending order from a horizontal line?posted in Questions & Answers
You can find this number by this formula: Middle Number=Lower Number+0.3×(Higher Number−Lower Number);
Middle number is a variable recording the level in between, 0.3 is the percent (30%) between the high and low from high, so from low would be the same but 0.7 (70%) -
RE: Create license or Period for EAposted in Questions & Answers
For period just select current = selected time frame, if not something like yellow terminate. For the license, you could add specific login numbers on init, or terminate.
-
RE: How to create your own custom blocks step by step??posted in Questions & Answers
You can try to learn from this, but there is no step by tutorial: https://fxdreema.com/forum/topic/19004/help-custom-mql-code/28
-
RE: CTrader download softwareposted in Questions & Answers
This is all about meta trader, so probably never
-
RE: single candle Templateposted in Questions & Answers
Use standard condition blocks you can get all these values, then compare them to any other value you want.
