With a terminal variable, you need to update the variable manually, as long as you have put the result into the variable it will remain.
Best posts made by jstap
-
RE: Pls help me, the remote destop window update so i want the ea run as the previous latest value wasposted in Questions & Answers
-
RE: How to create trendline based robot and indicatorposted in Questions & Answers
Add the indicator into FX then you can select it in most blocks
-
RE: How to change time frame automatically when certain % drawdown is reached?posted in Questions & Answers
There are different ways, but this - ChartSetSymbolPeriod(0, NULL, PERIOD_H4); - added to custom code when you want the timeframe changed should do it. So when you have worked out the drawdown.
-
RE: How to identify highs and lowsposted in Questions & Answers
The blocks work but it depends on what you need, these blocks will move to a new high/low when found. That's why I said try, if it fits your needs then good, but if not I have no other way.
-
RE: Lots of dealsposted in Questions & Answers
Set this up and if not working add a shared link and say what the problem is.
-
RE: red news filterposted in Questions & Answers
FXSI indicator will show you all this and is also free to get. This will give you an idea of how you can use it, this is mt4 but mt5 is also free: https://fxdreema.com/shared/eC6KELGPb
FXSSI.Calendar.ex4 -
RE: Trailing stopposted in Questions & Answers
Trailing will move for any trade, group will move for all but also move back, I only use for each trade
-
RE: EA only opens 1 trade, when there are 5 conditions, what am I doing wrongposted in Questions & Answers
This setup will give you 1 trade in total, for 3 trades have 3 separate trees using different group numbers, group 0 no trade - group 0 buy now, group 1 no trade - group 1 buy now, ETC
-
RE: Price crosses above ANY drawn line?posted in Questions & Answers
You need to pick them in a loop not by name
-
RE: custom indicator parameter (field) problemposted in Questions & Answers
They are enums add this to the enumerations at the top of indicator:
enum Mode
{
Historical,
Current
};enum Style
{
Colored,
Monochrome
};Add Mode & Style as the type and this should make it work
-
RE: How To Delete Horizontal Lines Once In Positionposted in Questions & Answers
It is deleting but it is instantly re-drawing, as you can see in here: https://fxdreema.com/shared/Z2O0s4zQ if you only allow it to draw once it deletes
-
RE: Dont Open Buy Trade if Sell already is Running in Profitposted in Questions & Answers
I think this will do what you want:

-
RE: Trailing take profit stopposted in Questions & Answers
I have to say I don't get the point in a trailing TP unless it is a group of trades so the TP is calculating the value of all trades and setting a combined TP. For me, SL works because it trails behind until price reverses
-
RE: Trailing take profit stopposted in Questions & Answers
Use SL, not TP, the whole point in SL is it trails behind to secure profit, by bringing TP towards the open you are changing the R to R and changing the entire point of the original trade, although moving SL does it is not a close when reached measure, it is a blanket to save losses if price changes direction, otherwise profit will increase until the maximum is reached
-
RE: How To Delete Horizontal Lines Once In Positionposted in Questions & Answers
pass once to draw, then reset before you draw the next day
-
RE: Issues with brokerage hours.posted in Questions & Answers
Is a slow way but only test on times when you know the hours, in the EA set rules to work on the the times you know

