Hide the StopLoss
- This topic has 5 replies, 5 voices, and was last updated 2 years ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
Forums › ProRealTime English forum › ProOrder support › Hide the StopLoss
Is there a way to hide your stop loss. It feels like IG/brokers are fishing for our stoplosses.
How often has the market turned right after the stoploss has been hit?
I don’t want to use the command:
1 |
SET STOP %LOSS sl |
Can you write by code
1 2 3 4 5 6 7 |
if XXX then sell at market endif if YYY then exitshort at market endif |
What do I replace XXX and YYY with to get the same value as
1 |
SET STOP %LOSS sl |
if you are not swinging a real big d**k i would not worry about the broker is stop hunting you xD
take a second and think about how many orders there are out there, if you could see them as lines on the chart, i promise you you could not see one single candle
Hi @SnorreDK
If LongOnMarket and Close > longexit then
Sell at longexit STOP
EndIf
if ShortOnMarket and Close < shortexit then
ExitShort at shortexit STOP
EndIf
Even your pending orders are kown by the broker, so a better solution would be to exit at market whenever you exit price is hit, be it either a TP or a SL.