Where should i start?
-
ive been messing aorund with alot of different posibilities and i cant seem to get my buys and sells right or my t/p or t/l right can someone help me get on the right page to get it built? im not sure what buttons to use when crafting this EA
An EA the trades on each candlestick
Conditions:
opens a buy a few ticks up after the candlestick opens (or if the candlestick goes back to open then back up)opens a sell a few ticks down after the candlestick opens(or if the candlestick goes back to open then back down)
close position at the open of the candlestick (using as a stop loss in for when the candlestick goes the other direction)
close position at the end of the candlestick (use at a take profit for a buy or sell)
-
Ticks from start - this is how many ticks were registered since the EA started. 1, 2, 3 and so on... basically a counter that increments on every tick. You can't compare that value to Candle Open.
But what do you mean by "few ticks up"? Ticks are those events when the price changes. Maybe you mean pips, not ticks. In this case you can do something like this:

Candle Close is the current price, so this condition will pass when the body of the candle is > than 10 pips. Or maybe this, which should be the same:

About the "end of the candle", I have to say this: https://fxdreema.com/tutorial/builder/things-not-to-do#1