For example, a buy order, the new stop losses should only be going up right? But when watching the open trade, it goes both up and down. Why?
Here's what my trailing stop looks like

For example, a buy order, the new stop losses should only be going up right? But when watching the open trade, it goes both up and down. Why?
Here's what my trailing stop looks like

@l-andorrà it’s actually on the on ticks tab.
I was just trying out on chart stuff to see before I made the link
This is the results from backtest

This is the live. As you see, it's opening trades the same way it does as the other one.

This is how I'm opening trades. Super simple.
https://fxdreema.com/shared/aySO6Q5Pd
I have a simple EA running on a Renko chart.
Renko chart is developed by an indicator (I can upload here if you guys want)
When I run a back test, my EA works perfectly
However, on live chart, the EA doesn’t work properly.
It doesn’t open trades when it’s supposed to, and on some charts, not at all.
But on strategy tester, it works.
And ideas? Thanks
If I have my my EA running on multiple trades, for the "No Trade" block, does that apply to all trades or just the currency pair?
Example, If there is an open EURUSD trade, will the EA still open a trade on USDCAD chart or will it not open the trade because the EURUSD trade is open?
@l-andorrà Yes. Been doing more testing. Trades open properly when value = 0.00000 but not 1.00000. Pretty frustrating.
I have a condition where if Candle[1] is true, buy.
BUT... When running a backtest, it opens even when Candle[1] has no data in the value window. Why?
It's only supposed to open a trade when indicator's value == 1.00000

Here's the logic:
https://fxdreema.com/shared/XWGqVevQd
I want to open a trade when a candle opens and close that trade when the candle closes.
I've tried using a time filter but that didn't work.
Here's what I tried:
https://fxdreema.com/shared/WZrobY2F
I have a Heiken Ashi exit indicator. Why is it closing prematurely?
It's supposed to close if a bearish candle is present, but it closed when there was no bearish candle.
Here's a picture
Here's the link:
https://fxdreema.com/shared/uvv2NF86e
@roar for that EA it’s opening trades but not where it’s supposed to. I want it to trade at the position like the pic, but it’s off a lot and misses some
@roar aren’t they different? One MA is based off close price and the other on open. Here’s what I’m trying to do btw

I tried a couple different things.
When MA(closed) is crosses below MA(open), sell order.
Also this,
https://fxdreema.com/shared/eSIEFwG2
However, it doesn't execute the buy/sell whenever the crossover happens.
Is there a bug?