[ARCHIVE] Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 3. - page 268
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello!
Please advise, if it's not difficult: how to write EA results to file without deleting previous entries. I use function FileHandle=FileOpen(FileName,FILE_CSV|FILE_READ|FILE_WRITE,";"); but only last record is saved, at new tick the old record is reset or deleted.
After opening move pointer to the end of the file:
FileSeek(handle, 0, SEEK_END);
I want to write an indicator to display the closing price ratio with a period of 51 and 34 ... but something got confused ... how to display what would be visible on the entire history ... look at pliz ...
I have the following question: How to switch timeframes simultaneously on several currency pairs (simultaneously). Thank you in advance.
Dear professionals!
What am I doing wrong again? I want to try this indicator in my EA, but it doesn't give any readings in the comments or in the printout, or rather it does, but nothing:
Please check it!Dear professionals!
What am I doing wrong again? I want to try this indicator in my EA, but it doesn't give any readings in the comments or in the printout, or rather it does, but nothing:
Please check it!which indicator?
which indicator?
Price Rate of Change
But it's already working! Put 1 at the end as the EA works on bar opening. Sorry for the inconvenience! Thank you!
The indicator forms several hundreds of OBJ_TRENDsegments on the history interval .You need to output the difference of values (OBJPROP_TIME2 - OBJPROP_TIME1) for each object into an array.
Question: is there a direct access to the object property storage or should I loop through all the objects to get the required data? Thanks for the answer, sorry if it's a silly question!
Thank you very much)))
after opening, move pointer to end of file:
FileSeek(handle, 0, SEEK_END);
Thank you