Hi Again ,
i was trying in the last 2 weeks somthing new using volume ... to extract each volume for each currency (such as USD or NZD or GBP )
it was quit complicated alittle but ironically the answer was quit simple
the indicator is build basically over triangler structure of date or 3 pairs and then we move forward for other pairs using the date given by the previous structure
now the question is "how to build a useful indicator using this !!?"
PHP Code:
double X = iVolume("EURGBP",PERIOD_D1,0);
double Y = iVolume("GBPJPY",PERIOD_D1,0);
double E = iVolume("EURJPY",PERIOD_D1,0);
double EUR = MathRound(MathSqrt((X*E/Y)));
double GBP = MathRound(X/EUR);
double JPY = MathRound(E/EUR);
double USD = MathRound(U/GBP);
Comment("JPY=",JPY,"\n","GBP=",GBP,"\n","EUR=",EUR,"\n","USD=",USD);
plus i think it can give multiple results using iHigh or iLow
any ideas ??