I'm trying to program a new formula that will automatically enter and exit trades with stop losses implemented. How would I make it so I could know if I have reached the stop or not? For example, if there was such a function as the following:
If (StopReached() )
...
Something like the above is what I need. I need to know at the particular instant if the Stop has been reached or not. How would I do this?
If (StopReached() )
...
Something like the above is what I need. I need to know at the particular instant if the Stop has been reached or not. How would I do this?
Comment