Стратегия TradingView ATR stop (MTF) - PullRequest
0 голосов
/ 07 марта 2019

Я хочу включить в свою стратегию простой останов ATR.ATR ссылается на другое разрешение (60 минут).Мне требуется возможность изменить «множитель ATR».

atrlength = input(14, "ATR Length")
atrmultip = input(3, "ATR Multiplier")
atrresCustom = input(title="Custom Resolution", type=resolution, 
defval="60")
useatrCurrentRes = input(false, title="Use Current Resolution")
res = useatrCurrentRes ? period : atrresCustom
atr = atr(atrlength)
mtfatr = security(tickerid, res, atr)
atrstop = (mtfatr*atrmultip)
strategy.entry("LONG", strategy.long, when=buy_alert)
strategy.entry("SHORT", strategy.short, when=sell_alert)
strategy.exit("SL/TP", loss=atrstop, profit=atrstop)

Это ключевая часть моей стратегии, и мне нужно иметь ее до применения других параметров моей стратегии.

Вывод этого кода - закрытие позиций в одной и той же свече установки.

Есть идеи, что я здесь не так делаю?

...