@smartdevils I don't think detecting a ranging market is this simple, you can though get != in the standard condition block.
Posts made by jstap
-
RE: CAN WE USE condition for Side waysposted in Questions & Answers
-
RE: send VARIABLES to TELEGRAMposted in Questions & Answers
@xdv You will see what I meant here https://fxdreema.com/shared/rmprr1vWc you can also rum on strategy tester to see what all's doing.
-
RE: Exit after certain higher highs and lower lowsposted in Questions & Answers
@rebearv This https://fxdreema.com/shared/qXjr2FZ4e will move and save the candle prices once every candle.
This can be done with mathematics (code) and is the typical meta trader way but this is all contained within FXDreema.
-
RE: How to close trade when "X" amount is reachedposted in Questions & Answers
@petrus313 For each individual trade, close profitable trades will close each one as it reaches profit, to close all when average profit is met condition block with profit => value close trades block underneath.
-
RE: Why dont candle (0) cross entries work??posted in Questions & Answers
@james-d Your welcome, quite often is a simple fix.
-
RE: send VARIABLES to TELEGRAMposted in Questions & Answers
@xdv Add as text input, anything in " " like "TEXT" will show as text, add to this with + like "TEXT"+"TEXT", variables/constants are added by the name so adding a few together would look like, "TEXT"+variable1+" "+variable2. To add this to a text box save into a string variable.
-
RE: Why dont candle (0) cross entries work??posted in Questions & Answers
@james-d Try your condition above once per bar.
-
RE: RISK Managementposted in Questions & Answers
@tonygbrobot I use these settings and is always about the correct size, don't forget the spread can affect the finished value, if it's still not right put a shared link here so things can be checked.
-
RE: William %R cross EMA 13posted in Questions & Answers
@lhnphuon Again it's finding a coder, someone that can convert MT4 to MT5.
-
RE: Stop EA at Daily Targetposted in Questions & Answers
@paiz Do as @l-andorrà said but use check profit period of time, if you want to close when profit reached use >= close and before trade use <.
-
RE: send VARIABLES to TELEGRAMposted in Questions & Answers
@xdv This has come up a few times, I saw a comment on one last week, not sure what it was called called though and don't have link.
-
RE: check conditions 4hrposted in Questions & Answers
@fxdreema-8 You can do this in condition blocks, candle ID1 on 4H settings is the previous candle, the MA you want to reference with 5M in settings will do this.
-
RE: Exit after certain higher highs and lower lowsposted in Questions & Answers
@rebearv In the upper(ish) right section of FXDreema you have the variable section, create with any name you want, double = numeric, put this into a modify variables block(place under a pass block to ensure it works) in the modify block place the condition that you want in the variable.
-
RE: William %R cross EMA 13posted in Questions & Answers
@lhnphuon I can't help with this, the code is similar but not the same, a coder possibly can but not sure who. If you can find what what this indicator does you can likely find a MT indicator that does the same, if you find what it does and add information here I'll have a look.
-
RE: YESTERDAY HIGH AND LOW CUSTOME INDICATORposted in Questions & Answers
@lekan4forex That's why I said put the buffers into a comment block, pass block above->comment block below, then on backtest you can see what is contained in buffers, if it is just yesterdays high/low, condition block with market properties >x or <X candle ID1 day time frame high or low.
-
RE: YESTERDAY HIGH AND LOW CUSTOME INDICATORposted in Questions & Answers
@lekan4forex Do these buffers contain the relevent price levels? Put them in a comment to check there correct. Also you can get yesterdays high/low in standard FXDreema blocks.
-
RE: Closed days and EAposted in Questions & Answers
@bagheria Then you can't use market closed but everything else works, just copy.
-
RE: RISK Managementposted in Questions & Answers
@tonygbrobot In the buy/sell blocks instead of fixed lot, use account % vs stop loss.
-
RE: Closed days and EAposted in Questions & Answers
@bagheria You can get time/date with code, you could then use a condition with the date/times in (use a string/text) the value, in this link you will see how to get market closed aswell (only works on MT4).