All I am trying to do is setup a buy every time current open is greater than the pervious day’s close, and exit on a trailing stop of 2.5%.
I have tried and tried many different ways, but basically this should be very simple to do. Here are is my setup and output.
Strategy config:
Set1
Open[0] > Close[1]
EnterLong(DefaultQuantity, “”)
SetTrailStop(“”, CalculationMode.Percent, 0.025, false)
On the chart (attached) it is clearly doing something else.
Any help would be welcomed!!!
PS. I guess there is no attachment possible since I cannot produce a 39K pdf print of the chart. But trust me, it is entering buys on the open well below previous day’s close.

Comment