No mate, but FX will only use one already created
Posts made by jstap
-
RE: Moving average into stochasticposted in Questions & Answers
-
RE: Moving average into stochasticposted in Questions & Answers
You can do this on your PC platform, but not on FX Dreema, your only choice is finding a aftermarket indicator, to run on PC.
-
RE: Compile error occur . Pls help me how to fix.posted in Questions & Answers
This makes sense
why error said "constant" expected -
RE: Compile error occur . Pls help me how to fix.posted in Questions & Answers
This is why I prefer working with MT4 not MT5, the problem is in your no position nearby block, the formula block is working correctly and multiplying the used pips, then you get that issue. You can try asking support why it's happening: https://fxdreema.com/support
-
RE: magic numberposted in Questions & Answers
Not sure what you mean? Magic number is in your inputs.
-
RE: Make a trade once per indicator signalposted in Questions & Answers
Principle is the same "if this = this do this", but if different timeframes mean different settings. You have the flags to allow/stop trades, now new trees that will set these, condition PSAR is < or > candle ID4, this means that as soon as the dot is on 4 (so when 3 closes) you can set the flag false.
-
RE: How to delete pending order after 5 barposted in Questions & Answers
Both these methods work in backtest
-
RE: Make a trade once per indicator signalposted in Questions & Answers
This should do it, you'll have have to add sells and change conditions to how you want:
-
RE: Make a trade once per indicator signalposted in Questions & Answers
There is no once per signal, you have to create it with flags, once per bar may do it, but SAR will be the same on many candles,.
-
RE: Make a trade once per indicator signalposted in Questions & Answers
Set flags, if trade can be placed set flag to tree, if not leave a false, check with a check flag block, you can switch on/off as you like.
-
RE: Do the advisors created in fxdreema have restrictions for trading on a real account? I've encountered this issue - trades open on the demo account, but not on the real accountposted in Questions & Answers
If created correctly they work the same on live as backtest, sometimes though they perform differently on backtest to a live environment.
-
RE: Martingale EA - Platform Restartsposted in Questions & Answers
No I would set a new tree with a for each block, these are loops so under a no trade block will start and run the loop only once, so for continual checking of pips away needs to be free from the no trade block, once a trade is placed a no trade block stops passing.

-
RE: open trade after crossover not beforeposted in Questions & Answers
Set your candle ID's in your condition to 1, there is a cross but on current candle can reverse quickly, setting to 1 means it will wait until next candle before checking
-
RE: Martingale EA - Platform Restartsposted in Questions & Answers
Then you set 4 terminal variables by different name, this is the name you use to read them.
-
RE: Martingale EA - Platform Restartsposted in Questions & Answers
yes is the only way to have it remember after close. The easiest way is to set as soon as placing a trade, this is just an example, once saved in a terminal variable you can read it anywhere:
-
RE: open trade after crossover not beforeposted in Questions & Answers
For a start once per bar needs to be beneath the condition, check profit - close should be in a separate tree, this will make only 1 trade per candle, if still over trading the cross, you need to add more logical conditions to restrict.

-
RE: Martingale EA - Platform Restartsposted in Questions & Answers
Yes, you need to use/store/delete within a global variable (terminal variable on here)
-
RE: Trailing Stop as per ATRposted in Questions & Answers
2 use a breakeven block set with stoploss, 3 set start to relevant value, but be warned as setting stop (trail pips) to 1:2 then it will likely close at this value.