i wrote a *efs file for automated trading and I need a *.txt output file (I´m working with ninjatrader, which is reading the *.txt file)
The output contens of the *.txt-file for Ninja-using is exact :
"DAX","BUY","2","1","SCALE","MKT","0","0","2","5", "3","2","TRUE","0","0",
- I need exact this order and in quotation marks
In my *.efs I wrote:
.
.
.
ninjaEntry.open("w");
ninjaEntry.writeln (""DAX","BUY","2","1","SCALE","MKT","0","0","2","5 ","3","2","TRUE","0","0",")
ninjaEntry.close();
.
.
.
it is not accepted by *.efs. If I write ("DAX,BUY,2,1,.....") it is accept by *.efs, I get the output DAX, BUY, 2,1,....but I need in my output-file "DAX","BUY"....all in quotation marks
What can I do?
All the best
The output contens of the *.txt-file for Ninja-using is exact :
"DAX","BUY","2","1","SCALE","MKT","0","0","2","5", "3","2","TRUE","0","0",
- I need exact this order and in quotation marks
In my *.efs I wrote:
.
.
.
ninjaEntry.open("w");
ninjaEntry.writeln (""DAX","BUY","2","1","SCALE","MKT","0","0","2","5 ","3","2","TRUE","0","0",")
ninjaEntry.close();
.
.
.
it is not accepted by *.efs. If I write ("DAX,BUY,2,1,.....") it is accept by *.efs, I get the output DAX, BUY, 2,1,....but I need in my output-file "DAX","BUY"....all in quotation marks
What can I do?
All the best
Comment