How Break-Event and Trailing Work
In this example, you use only buy trade. Sell trade is the same as just work the opposite direction.Break-Event
Break-Event works with like trigger and action. When the trigger happened EA do the action. TriggerBreak-Event Start: This is the trigger value. For example, your value is 200 points. So when you buy trade goto 200 points profit or more. EA fire the trigger and goto the action.
ActionBreak-Event Step: This is the action value. For example, your value is 30 points. So EA will set stoploss your buy trade's OPEN PRICE + BREAK-EVENT STEP VALUE. If your open price is 1.20000 then your StopLoss will be set 1.20000 + 30 Points = 1.20030
Trailing
Trailing works with like trigger and action. When the trigger happened EA do the action. TriggerTrailing Step: This is trailing trigger value. For example, your value is 200 points.
There are two-way trigger work
Step 1# - When you trade's current stoploss set in loss or if your trade doesn't set any stoploss then trigger calculation fellow step 1#
if your trade in profit 200 points then trigger happened.
Calculation - OPEN PRICE - CURRENT PRICE >= TRAILING STEP VALUE
Step 2# - When you trade's current stoploss set in profit then trigger calculation fellow step 1#
if current price move more then 200 points from your current stoploss level then trigger happened.
Calculation - CURRENT STOPLOSS - CURRENT PRICE >= TRAILING STEP VALUE
ActionTrailing Stop: This is the action value. For example, your value is 100 points. When any trigger happened EA set new StopLoss in below calculation
Calculation - CURRENT PRICE - TRAILING STEP VALUE = New StopLoss