Forum

How would i copy a Mt4 chart template to another Mt4 broker?

How would i copy a Mt4 chart template to another Mt4 brokers charts...including all settings and same indis,trendlines,fibs etc

Can 1 Mt5 VPS run 10 Eas

When loading 1 account to the Mt5 VPS with 10 charts with different symbols ,and each chart has a different Ea attached with a different name and programming. Will the VPS run all of those Eas ,same as it does in 1 account. I dont call dll's, and the Vps details,cpu etc, are not at the upper limits

are there any brokers that have lower Mt5 Strategy tester spreads than the metaquotes demo

Hi....are there any brokers that have lower Mt5 Strategy tester real tick spreads than the metaquotes demo version for eurusd....being 0.00007 or 0.00008 average

( integer/(integer+integer) ) always gives zero in Mt5

Hi... Mt4 to Mt5 conversion... where the integers are variable counts such as, if(varA/(VarA+VarB) >.95) {VarC=-5;} ( integer/(integer+integer) ) Or (int)Mathround (integer/(integer+integer)) always gives zero in Mt5, How do i get the double solution

possible loss of data due to type conversion ..ihigh Mt5

Hi.. possible loss of data due to type conversion ,,,being the Mt5 compile warning message Also the Ea compiles and works in mt4,But mt5 compile has 0 errors and many warnings all with ihigh , ihighest ,low,lowest. There is a variable inserted, being ""cntT"" in this particular example."

Why does ilowest skip many matches in a loop

// This works,but ilowest below ,skips matches. && iLow(NULL,PERIOD_M1,ee4t)< iLow(NULL,PERIOD_M1,ee4t+2) && iLow(NULL,PERIOD_M1,ee4t)< iLow(NULL,PERIOD_M1,ee4t+1) && iLow(NULL,PERIOD_M1,ee4t)< iLow(NULL,PERIOD_M1,ee4t-1) && iLow(NULL,PERIOD_M1,ee4t)< iLow(NULL,PERIOD_M1,ee4t-2) //

mt4 variables to excel in separate columns..same row

Would someone know if its possible to send from mt4 to excel in separate columns..same row..for the same order number.. Then next row for different order number etc.. 1..order entry price , stoploss,closing price,variable calc1,var calc2, And about 10 other variable calcs Some calcs occur before

order select trailing step

Hi.. this example closes orders...but the example below it...doesnt work. ...where i am trying to create a trailing step so eventually i can include other options.. any adjustments appreciated... double tstep; int ticket; int total = OrdersTotal (); for ( int y= OrdersTotal ()- 1 ; y>= 0 ;

magic number wont close orders

Hi...for the order send below,OrderType() == OP_BUY && OrderMagicNumber() == 9000 wont close the order, but OrderType() == OP_BUY closes it, any ideas appreciated. OrderSend(Symbol(),OP_BUY,1,Ask,3,Hlo1+((Hhi-Hlo1)*0.2), Hhi,"BX128.37vavg.80",9000,0,Green); //---- if a BUY position is opened

how to do check the current chart symbol....

I was hoping someone would know how to check the current chart symbol....for the example below i have tested a couple of variations... such as... if( Symbol()==CADCHF) {gur=gur+1;} thanks in advance