Multiple TP strategy with SL #638
ehsan-panahi-ce
started this conversation in
General
Replies: 2 comments
This comment was marked as off-topic.
This comment was marked as off-topic.
-
When a price hits TP (set with If instead you want to set TP to "TP2" once the price hits a certain level, you can set if self.data.Close[-1] >= 1.5:
for trade in self.trades:
trade.tp = 1.6 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I want to implement a strategy that have multiple tp. when the price hit TP1 (TP1=1.500) , instead of closing the trade, I want to update the TP to TP2 (TP2 =1.600). and so on.
Beta Was this translation helpful? Give feedback.
All reactions