I have a file w/ the pairs of all the symbols I currently look at in it. Here is what is in the file:
What I want to do is read each line into it's own variables.
I know I need to use FileOpen, FileRead, and then FileClose once I've populated the arrays. But every combination I use fails.
For anyone that's curious, I want to write the Date,OHLC data to files w/ the names of the pairs.
TIA.
PHP Code
AUDCAD AUDCHF AUDJPY AUDNZD AUDUSD CADJPY CHFJPY EURAUD EURCHF EURDKK EURGBP EURJPY EURNZD EURUSD GBPAUD GBPCAD GBPCHF GBPJPY GBPNZD GBPUSD NZDCHF NZDJPY NZDUSD USDCAD USDCHF USDJPY
Inserted Code
string SymbolName[], FileName[];
For anyone that's curious, I want to write the Date,OHLC data to files w/ the names of the pairs.
TIA.