@tulefi Probably 09:00 but put into a comment so you can check.
Posts made by jstap
-
RE: Finding low price of a particular periodposted in Questions & Answers
-
RE: Using a Constant within a Terminal Variable nameposted in Questions & Answers
@sauce Actually it changes the value put into the global variable.
You could change the current variable to use quote instead of base or create a new.
-
RE: Using a Constant within a Terminal Variable nameposted in Questions & Answers
@sauce Yes and allows you to change from your inputs.
-
RE: MANUAL TRADING ON MT5 BACKTESTERposted in Questions & Answers
@l-andorrà I will do when I get a minute, it's learnt from Miros code.
-
RE: Using a Constant within a Terminal Variable nameposted in Questions & Answers
@sauce They both get put into a variable, so to use/reference either just use that variable (just re type the name).
Rather than me enplane everything ask about whatever your not sure about.
-
RE: Using a Constant within a Terminal Variable nameposted in Questions & Answers
@sauce I think this is what your trying to achieve, cant fully test though as markets are closed, all except for global variables work on back test though:
-
RE: Trailing Stop not workingposted in Questions & Answers
@jim67 Think the TP is also classed as a stop.
-
RE: I want the stop loss level to stop loss when Horizontal Line is reached.posted in Questions & Answers
@yazar-ilyas How do you want this to work? if price reaches the line trades could be closed, the EA could draw a line so when you move this is the SL level.
-
RE: Modify pip variable not working for meposted in Questions & Answers
@robertk I mean the value of the variable, may want to make it a constant so you can change in your inputs, this should work as I do it all the time

-
RE: Modify pip variable not working for meposted in Questions & Answers
@robertk This should do it (change the value from 0 though):

-
RE: Using a Constant within a Terminal Variable nameposted in Questions & Answers
@sauce (where I have written variable, put what ever you have called yours)
You can put the current TF and symbol in to variables like this:

This should give you the last 3 letter of the symbol string variable:
variable= StringSubstr(variable,3,3); (may need to change the numbers)
create a string variable and place the above code into a custom code block.
You can then create a separate string variable that gathers info something like
variable+" "+variable; into custom code.
