|
change in EuroX2_sl_v1
yes, of course
I change the lotsice.
For example for the lot size I take allways accountBalance() / 1000 or 1200...I think is better 1000
And another change is this that you can find in this post
if (iMACD(NULL,1,14,26,9,PRICE_CLOSE,MODE_MAIN,0) > iMACD(NULL,60,14,26,9,PRICE_CLOSE,MODE_MAIN,1)) state = 2;
if (iMACD(NULL,1,14,26,9,PRICE_CLOSE,MODE_MAIN,0) < iMACD(NULL,60,14,26,9,PRICE_CLOSE,MODE_MAIN,1)) state = 1;
Here I compare one MACD of 1M time fram with other form 60M time frame.
Other are Pips I put in 10
And in the last
extern double TakeProfit = 80;
extern double TrailingStop = 40;
extern double InitialStop = 80;
I think no more change I do
Regards
|