
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
So if i've got your suggestion this part will look like this:
1:
2. Yes, it has Start,init, deinit.
3.Ok i will keep _path
4. I don't care of the name, if it works :)
5. It will be like this:
Oh , the TelegramL.mqh The clean version does not have the get message id modification .
Here is the latest
Thank you!
I've discovered that i'm also missing
Thank you!
I've discovered that i'm also missing
You have these definitely . Place the telegramL in the includes telegram subfolder and call it from there , alongside the other one
You have these definitely . Place the telegramL in the includes telegram subfolder and call it from there , alongside the other one
You right! I've found and placed them properly, and now everything is working! 🤩
You right! I've found and placed them properly, and now everything is working! 🤩
Awesome , well done 😎
@Lorentzos Roussos i have a little-off topic maybe question for you, if you want to help me again...
Now what I have on the CSV file generated from the EA is like this:
Now the "big" question...
If i modify any parameters such as the enter price of a pending order, or SL/TP, there is a way to update also the corrisponding row?
Let's imagine that i want to modify this row from:
to:
Is this something possible to do?
This is usefull also to better understand how to delete the corrisponding row once the order is closed or deleted.
I've read something here about the FILE_SEEK function but it's still unclear...
Thank you in advance!
@Lorentzos Roussos i have a little-off topic maybe question for you, if you want to help me again...
Now what I have on the CSV file generated from the EA is like this:
Now the "big" question...
If i modify any parameters such as the enter price of a pending order, or SL/TP, there is a way to update also the corrisponding row?
Let's imagine that i want to modify this row from:
to:
Is this something possible to do?
This is usefull also to better understand how to delete the corrisponding row once the order is closed or deleted.
I've read something here about the FILE_SEEK function but it's still unclear...
Thank you in advance!
Hello , i think you have to read the contents store them , find the row and rewrite the entire file . I think .
That is why the structures had the save/load methods in the beginning to avoid this situation :)
It is better if you have everything your program needs to operate in memory and then have save intervals when needed to write to a file .
Since it's not efficient to save/load with csv i am not familiar with editing them , and i only use them for exporting to excel .
I suggest you switch to FILE_BIN and write binaries which is faster and easier to manage as well .