@gtoat777 Lines and notifications are created from different blocks, to limit the number and occurrences put some sort of a do/don't condition above.
Posts made by jstap
-
RE: Draw Line + MT4 Alertsposted in Questions & Answers
-
RE: Counting candlesposted in Questions & Answers
@william-1 There is 2 loops in there, the first will count candles when ma20 is above ma50, the second counts candles when ma20 is below ma50, when 1 is counting the other will be at 0. The two blocks underneath you put in your buy/sell tree, change settings to suit, you can change the minimum candles in the inputs. Once you have the first set of loops doing what you require, copy, add variables and change settings, when you have enough to do all you require you have the basis of your EA.
-
RE: Drawing a horizontal line at a fixed value between 8 am and 3 pmposted in Questions & Answers
@bradleybear True, I did it myself : )
-
RE: Counting candlesposted in Questions & Answers
@william-1 How do you mean? Use the link and generate a copy for yourself, put the variables in a comment block, then you can watch on back test to see what the loop is doing, from there you can see how to add whatever else you need to create your EA.
-
RE: SL and TP Based on S/Rposted in Questions & Answers
@magmax01 So when a trade is placed you have the SL at your S/R line so the pips are the distance between ask/bid and the S/R level, if when a trade is placed get the SL distance saved in a variable so you can multiply and use for a TP.
-
RE: Creating a scannerposted in Questions & Answers
@m-moosa Not if only notification is needed, no position is for when placing a trade, you may have to restrict how often notification is sent so you don't get repeated notifications.
-
RE: Creating a scannerposted in Questions & Answers
@m-moosa Then you need a condition block inside left operand candle 1 close > right operand MA??, connected to an alert block, this way every time this happens you will get an alert.
-
RE: Time Filter - "Relative to Start Time" not working??posted in Questions & Answers
@dre I would think this is how this works, you could a shared link here if still doesn't work. Your other option is to just set end time at 01:00, I personally don't have this block passing over midnight, I would put 23:00 - 23:59 and then connect yellow to another block 00:00 - 01:00, you loose a minute but should work if single block doesn't.
-
RE: How to limit the number of trades?posted in Questions & Answers
@joe_fx Then you have all you need, just set all settings as needed, create the opposite for sells.
-
RE: exchange related pairposted in Questions & Answers
@l-andorrà although I have never done it you could get the market name of the trade just placed a pink for each trade block-modify variables block with a loop, then use this to select a certain set of blocks starting with a set current market block to place trades on all correlating markets. To have this list dynamic is a lot more difficult, if you find an indicator that tells you currently correlating markets this is likely possible.
-
RE: How to limit the number of trades?posted in Questions & Answers
@joe_fx < will set to only 1 but to be fare the no trade block will limit to only 1, you will need to add other conditions to achieve something else, every trade is only taken when the rsi has done what's required, if you have other stipulations to take a trade say what they are.
-
RE: Creating a scannerposted in Questions & Answers
@m-moosa Yes it's possible but your question is far too open to give you a help on how to achieve, put a more specific question like when the RSI on current time frame and market is above 50 do this, and when below 50 do this. As I am sure you can see there is too many variables to this question.
-
RE: For Each Pending Order (Oldest / Newest) and If Demo Account... not working?posted in Bug Reports
@vnpython-0 You do not need if deo account unless you have EA only doing something when on a demo account.
It's looping from new to old, so set it to old to new, all settings work in the order they are in, so if you have skip 1nth order it will start on 2 either the 2nd or the one before last depending on loop direction, every nth order will skip orders so if set on 5 then it will only recognise every 5th order, so 5-10-15 etc, not more than nth is the maximum trades/orders it will look at. only use sections that are relevent to what you need.
-
RE: How to limit the number of trades?posted in Questions & Answers
@joe_fx Your RSI condition was just too unlikely:

-
RE: Indicator appears with ZigZag, com indicate direction I wantposted in Questions & Answers
@rodrigo-ortuzar I tried to use the indicator rise/fall but the results are now whats needed.
-
RE: thx, will try it.posted in Questions & Answers
@ziyaad9310 Use magic number 0 or whatever number was used to place trade, try and create, put a shared project link with any question for problems you're having here.
-
RE: help, need an ea to close all buy or sell trade when x $ profit reached.posted in Questions & Answers
@ziyaad9310 Set your magic number to 0, or the number the other EA is using.
-
RE: still cant gt my stops to be modified on manual tradesposted in Questions & Answers
@crazycnw Change your magic number to 0.