richard
EFS has no knowledge of what 1 tick corresponds to and with the Formula Wizard it is not possible to define custom variables so you will have to manually modify the commands in Set1 and Set2
For example in Set1 the command to go long is Strategy.doLong("", Strategy.STOP, Strategy.THISBAR, Strategy.DEFAULT, vDonchian.getValue(DonchianStudy.UPPER))
You will need to change it to the following Strategy.doLong("", Strategy.STOP, Strategy.THISBAR, Strategy.DEFAULT, vDonchian.getValue(DonchianStudy.UPPER)+0.01)
Note that the above assumes that 1 tick is equal to 0.01. Replace 0.01 with whatever value is appropriate.
In the case of Set2 you will have to subtract the value of 1 tick from the Lower Donchian channel.
Hope this helps
Alex
Comment