Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm testing strategy on Forex with this:

strategy.entry(id="Sell", long=strategy.short)
strategy.exit("Exit-Sell Win", "Sell", limit=takeProfit)
strategy.exit("Exit-Sell Loss", "Sell", stop=stopLoss)

I verified all the contents of the variable, everything is fine. The comportment is ok: the order exit on limit or stop

The issue is that I never get the label "Exit-Sell Loss" On the chart as on List of Trades I can only see the signal "Exit-Sell Win"

Thanks for your support

question from:https://stackoverflow.com/questions/65943510/no-stop-signal-on-tradingview-forex-trade-strategy

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
561 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...