Forum

EA Trading multiple charts - imponderable! returns data at wrong time..

Ok this EA has been running for about 6 months. Just thought I would check a funny sell order, and this is what I found. The Trace line printed 3 different time event series on the same line! 1. My trace showed IMA moving averages of USDJPY showing at yellow line on chart.(115.994 ma3) (115.966 ma2)

Basic code. Help can you make this string array code work.

string look1, look2, symarray[ 5 ]; symarray[ 5 ] = { "EURUSD" , "EURJPY" , "GBPUSD" , "USDCHF" , "JPYGBP" }; ArraySetAsSeries (symarray, false ); // index starting 0 at left look1=symarray[ 0 ]; look2=symarray[ 1 ]; Print ( "symarray 2 elements 0 = " +look1+ " and 1= " +look2); Simple eh! except