Is there any help on this?
Posts made by GSMtricks
-
New candle - Open trade issueposted in Questions & Answers
I see when a new candle opens (i have same time signal) it wants to open a trade.
I need to open trade in exactly 1-3 seconds after the candle is opened.
I create a test project [https://fxdreema.com/shared/Fv0LNg9xc](link url)
But seems it doesn't work at all.
Is there any issue to open new trade once candle is opened? -
RE: Open trade when candle openposted in Questions & Answers
@hadees said in Open trade when candle open:
try building the project on timer tab ?
Have tried. Doesn't work https://fxdreema.com/shared/RE98NFa7
-
RE: Open trade when candle openposted in Questions & Answers
It's not about the connection.
I see on times that there is already 10 seconds passed and a lot of tick has been in a place and only after that FXdrema triggers my block. -
RE: Open trade when candle openposted in Questions & Answers
Yes, my problem is ONLY on live trading.
-
Open trade when candle openposted in Questions & Answers
Hi all,
I Saw there a lot of topics, have tried many examples but the problem still in place for me.
I would like to open a new trade exactly when a new candle opens. It can be second 00, or 01... but it seems there is no way.
With a block once per bar (have tested it already) it opens a trade sometimes after 10 seconds or even more.Is there any way to open trade exactly when a new candle opens. ( I use 5 min chart only)
-
RE: Bug with DoubleToStringposted in Bug Reports
@roar Cool.
Could you give me an example if 12.19999999999 have in variable named for example: RateThank you.
-
RE: Bug with DoubleToStringposted in Bug Reports
@roar Don't understand what do you mean ;(
All that do I need to have just 2 digits after the DOT. No like 12.19999999999 - need just 12.19 that all. -
RE: Is there a way to check if block in status on/off?posted in Questions & Answers
I figured this out. I am not using the button as a button, I used shape....
-
RE: Bug with DoubleToStringposted in Bug Reports
Yes, I don't know why this happens. Check all, but still sometimes after compiling it works as needed, and most times - as described above.
-
Is there a way to check if block in status on/off?posted in Questions & Answers
Is there a way to check if block in status on/off?
The idea to make one only button, then click on it - it enables block, but if this block already enabled - switch it off. -
Bug with DoubleToStringposted in Bug Reports
Hi, I used DoubleToString(trading_amount_initial,2) for making numbers like 12.11 (for example)
The problem is that numbers still in format 12.11111111111111
Sometimes they are ok, but sometimes like i wrote above. -
RE: Server time to Unix and compareposted in Questions & Answers
Figured this out.
And it works!
Thx -
Server time to Unix and compareposted in Questions & Answers
Hi all. I need some help.
I am storing expiration time (binary options) in Unit format.
Example:
date_expiry: 1570951168
So I need to check status of current trade when the current (server time ) is > than date_expiry
There two questions.- Will it work if I convert ( don't know how for now current server time to Unix format ) current server time to Unix format and then will use the formula: current server time ( Unix) > than date_expiry, than ...
- How to store current server time into a variable ( know how to store but don't know how to convert ) in Unix format?
Thank you.
-
Not objects deleted while deinitposted in Questions & Answers
Hi all,
Strange problem with object deleting.
I have a let's say 10 objects started with a name ss_text_xxx
on deinit i choose -> delete object -> name start with - > ss_text_
As a result, some objects DELETED but some of them still on place.
Why does this happen?
Any advice?FIXED. Can delete this topic.
-
RE: How to include library?posted in Questions & Answers
Super. It works!!!
Now I got the HTTP response than I am storing it into temp_variable, than parsing.Maybe some suggestion for FxDreema.
Maybe you can add some special chars for custom code and this part will not be validated and compiling will work.
I do mean:
<<<<> custom mql <<<<>
Code between <<<<> - will not be validated
Thank you again for your help!
-
RE: How to include library?posted in Questions & Answers
I am done. Compelled.
Now will try to get the data from the variable.
string dataDoes it mean that i will read a string from variable named data?
-
RE: How to include library?posted in Questions & Answers
@gsmtricks said in How to include library?:
{"api":"online","appid":"11111"}
Thank you for help.
Feel stupid:

-
RE: How to include library?posted in Questions & Answers
So let me provide full information.
- I have variable created and named: test_json ( for example )
- In some time I write there JSON data: {"api":"online","appid":"11111"}
What do I need:
- Read JSON string from a variable test_json ( here is data: {"api":"online","appid":"11111"} )
- Save to variable test_status: online
- Save to variable test_appid: 11111
That all.
If someone can provide me working custom mql code for FxDremma I will be able to use it as an example for my strategy,
