@uriel-0 I don't think anyone can do this, everyone classes support/resistance differently, find a good indicator or describe what conditions fit your definition.
Best posts made by jstap
-
RE: Support/Resistance EA example practiceposted in Questions & Answers
-
RE: RSI condition to close tradeposted in Questions & Answers
@william-1 Use a flag under your conditions, so when RSI X> 90 the flag is set to true, then when RSI X< 70 set flag back to false. above the close block check if flag = true so when RSI X< 70 trades are closed.
-
RE: Draw Objects on Chart during Visual backtest?posted in Questions & Answers
@mantadiver In the orange chart & objects you have many options, if not working try adding a pass block above.
-
RE: Timesposted in Questions & Answers
@legendarymike To make the shared link easier for people to click click it so it opens in a web page, then copy from there otherwise people have to open a shared link of there own and then copy the half link to past over half there own.
-
RE: MANUAL TRADING ON MT5 BACKTESTERposted in Questions & Answers
@timberwolves Any button on on tick will work on back test, use on chart for live/demo.
-
RE: How to add a Text Box on Chart for inputs?posted in Questions & Answers
@shaynefw You have to use an edit field, try this should work:
-
RE: Constants Market properties pivot pointposted in Questions & Answers
@bagheria If you hover over it tells you to use a int constant, R4 will = 0, R3 will = 1 etc.

-
RE: Modify pip variable not working for meposted in Questions & Answers
@robertk I mean the value of the variable, may want to make it a constant so you can change in your inputs, this should work as I do it all the time

-
RE: Using a Constant within a Terminal Variable nameposted in Questions & Answers
@sauce They both get put into a variable, so to use/reference either just use that variable (just re type the name).
Rather than me enplane everything ask about whatever your not sure about.
-
RE: Only one trade with same base or quoteposted in Questions & Answers
@dutchyynl In market properties you have base/quote, when placing a trade save this into a variable, check with a condition if different before placing a trade.
-
RE: Series of candlesposted in Questions & Answers
@sirluk You could use flags so when MA crosses it's set to true so when the next crosses a trade is placed, make sure the flags are reset, also when a MA has crossed it becomes above or below so when another crosses both are in the place you need.
-
RE: Problem of falling MAs.posted in Questions & Answers
@sirluk You can do it like this, just ensure the best numbers are used for pair,
Have changed + to - because it was wrong:
-
RE: Problem of falling MAs.posted in Questions & Answers
@sirluk This should do what you want, have removed the once per bar as will only allow 1 trade of each type, have made the buy and sell tree separate, test and once working add back together if required.
-
RE: HELPposted in Questions & Answers
@tjaart Read the instructions, search the forum, once a start has been made ask questions so help can be given. @l-andorrà offers a service where you can pay for help in this.
-
RE: Is it possible to limit the amount of open Buy and Sells?posted in Questions & Answers
@fxbam Put check trades count above your buy/sell put the required settings inside and it will limit your trades, I use it all the time.
-
RE: Pullback Trading + Manual Linesposted in Questions & Answers
@gtoat777 On the Deinit tab put a pass block with a delete objects by type, put buttons inside.
-
RE: Controlling two parts - Buys side and Sells sideposted in Questions & Answers
@alphaomega I am lost because I showed you how to stop the other type of trades from running, meaning your code would work as expected.
Use bucket of trades or pink for each trade to get the values you want for both buy and sell separately.