User note:
This EA will calculate your "lot size" whenever you change "pips risk", "money risk", or "percent risk" (percent of account balance).
When you change one field, the EA will calculate the rest base on "pips risk" and that field.
The EA will remember your lot size, pips risk, money risk, percent risk on each pair (as global variables, you can see them when you press F3 on chart window). If you want to reset these data, use the scripts go along with this EA to delete them then the EA will re-create them with the input data.
Pip in this EA is equal to tick in chart.

useStopLoss	= true	: EA will open order with stop loss equal to "pips risk".
useStopLoss	= false	: EA will open order without stop loss.

First to use Lot(1),Money(2),Percent(3) : field that you want EA use to calculate when your account balance change.
-----------------------------------------------------------
Buy, Sell, Close All, Close Profit 	: function as their own names.
Buy Stop, Sell Stop 				: pips from order to current price is defined in input window.

-----------------------------------------------------------
useHiddenSLTP = false 	: the EA will be just a normal order panel for you to entry with hard levels.
useHiddenSLTP = true	: the EA will calculate to close your order as "take profit" field (exactly as "take profit" field if "isIncludeAllFees" is true)

Case "useHiddenSLTP = true" example:
	you entry an order buy at 1.1000 with take profit = 10 pips.
	price's now at 1.1005, you change take profit to 20 pips.
	price's now at 1.1010 -> still not close.
	price's now at 1.1020 -> order close, your profit is (20 pips profit - swap - commission).
	
	if "isIncludeAllFees" = true, EA will wait until your actual profit >= 20 pips then it close your order. You go home with with whole 20 pips profit.
	