Buy/Sell every time Bid rises/falls by "n" pips??
-
I made an EA based on renko charts, so every time the price rises by ltes say 20 pips, it buys, and same when it falls.....(Take note I'm a Position trader)
-
Oh I 4got to mention the problem.....The EA didnt work....
-
@tashab ask and bid are not indicators
You can put condition like this : ask >= 20 pips from open price candle ID0
I don't tested it -
@tashab You have the right idea but, (I think) bid will not rise and fall, if you try candle open then may work, candles are drawn from the bid line.
-
@ambrogio I think I get ur idea! Thnx!
-
@jstap Thnkx, let me try it out!
-
-
@tashab You'll have to start/stop trade when your conditions are correct. Allow/stop trades with flag's and check above buy/sell.
-
@tashab if it's on every bar (if a Renko bar has 20 pips) you can do with once per bar block, then bear candle / bull candle block, or if Renko bars are less than 20 pips, there is also a block bulls in a row / bears in a row, you can specify how many, to add up to 20. More options > Candle ID 1! (last closed candle) this way you know what it is, bear or bull.
-
@cpxiom thnkx I got done!!