Hi,
Last friday afternoon, my proOrder system didn’t sent orders on IG Market (DOW and DAX) because minimum guaranteed stop level changed from min 10 points to 5% of underlying price (1 354 points on DOW and 639 on DAX).
I use classic set stop %loss 1.4
Do you know how automatically change % level of stop order on guaranteed account in terms of volatility level for example OR Sandard deviation ?
for example : if Sandard deviation (20) crosses up 100 level then %loss is 5
thks for your help.
I complete. Move of % stop loss will be for next open order, not for order open wich keep original %loss of 1.4
Change the stoploss value this way:
if not onmarket and myCondition then
if std[14]>100 then
slpercent = 5
else
slpercent = 1.4
endif
buy at market
set stop %loss slpercent
endif
Thks Nicolas. Should work. Will see.