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,.
Best posts made by jstap
-
RE: Make a trade once per indicator signalposted in Questions & Answers
-
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: 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: 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: No Position Nearby - Question about the Time Filterposted in Questions & Answers
I rarely use no position nearby block, I have in the past but it rarely works as I would expect. As for 3rd risk of 1 I would set lot as % to 0.33 on each trade (100/3 = 33.3), then close all when profit reached, Check profit (period of time) but this would only look for profit in a given time.
-
RE: No block connectionsposted in Questions & Answers
This is unusual, but sometimes it does seem to happen, from what others have said this is because of a problem with the browser you are using, is not fully compatible.
-
RE: No block connectionsposted in Questions & Answers
Youwish, I was being nice! I told you others have had this problem... good luck because you have already done what has previously fixed this for people! So is unlikely to be your problem...
-
RE: No block connectionsposted in Questions & Answers
I don't have any, anyone that can possibly help will see this and give advice on what they know. Unfortunately all you can do at the minute as change your set up, then report back if you fix the issue.
-
RE: Project not loadingposted in Questions & Answers
Not sure, but probably need to put it in your MT4 / MT5 experts folder and load from your platform.
-
RE: Important questionposted in Questions & Answers
You can, sometimes is easier to change externally: https://fxdreema.com/shared/ds1aZi4Hb
-
RE: Important questionposted in Questions & Answers
The variable type is set in FX, sting = text, double = 0.0, int = 0, bool = true/false, date time is similar to int, you can search google for these definitions. The bool constant is checked in the condition, then it sets true of false to the string variable, " " tells the block you are setting text instead of a numeric number. true = 1 false = 0
-
RE: How can a file be created on back testing?posted in Questions & Answers
You can write in backtest, try this: https://fxdreema.com/shared/mSTWWc6Cb
file should be created here: <terminal_data_folder>/Tester/files/test_output.csv
-
RE: daily profitposted in Questions & Answers
Above trade tree - check (period of time) < x.xx. In a separate tree, above close block - check (period of time) > x.xx.
-
RE: Logic (true-false) block not behaving as I expectedposted in Questions & Answers
You have nothing setting that flag, default will be false, meaning this is the only option that will create a trade.
-
RE: what is the difference between close and close psitions blocks/posted in Questions & Answers
Close (pink) will only work correctly under a for each, the for each selects in a loop the trade/trades to close. Close positions will close all selected (this will us a loop, but is internal)
-
RE: WHY OPTIMIZATION IS SO SLOW WHEN I USE "ON TRADE" BLOCKS ?posted in Questions & Answers
Under your buy or sell block - modify variable to 0 - for each closed trade (set up as you want) - formula + trade profit and save into the variable you just set to 0.
-
RE: Problem generating Oninit code?posted in Questions & Answers
No mate, only the Amazon version, you can get the app to view it on the ipad.
-
RE: And Blockposted in Questions & Answers
bool is simply true/false, so i9t either pass es on to next or not, without seeing inside blocks your conditions may be the bigger problem, once per bar above means it fires first requiring the condition to be true at that point in time, once per bar is generally better under the conditions. The and block is pointless in this case, because condition on top of condition on top of condition without the and means 3 conditions have to be true to work. The and block is expecting the 3 above blocks to be true at the same time, but if the bool is false then only 2 can be, if you connect the yellow bool dot to the and block then the 3rd condition will be skipped and and will work of 2 conditions.