I know something even better!
Go to a roulette table, bet everything in red, there's insane profits! It can turn 400 usd to 4000 usd in 2 hours
Posts made by roar
-
RE: Martingale on next candleposted in General Discussions
-
RE: Triger an order when different between Values confirmedposted in Questions & Answers
The one i sent calculates the difference in 3 bars' time - if the gap between lines was, say, 12 then and now it is 17 -> order is triggered.
-
RE: Triger an order when different between Values confirmedposted in Questions & Answers
@Jtex555 said in Triger an order when different between Values confirmed:
within 3 candle stick.
What do you mean by this? The value grows by value 5 in time of 3 bars?
this can be done with formula-block
stoch mainline - stoch signal linelike this
https://fxdreema.com/shared/lNXkAMFle -
RE: builder cant set pending limit order by pipsposted in Questions & Answers
atr, by default, shows a price fraction (like 0.003421)
https://fxdreema.com/shared/LqRr6HOhd
thats for atr -
RE: builder cant set pending limit order by pipsposted in Questions & Answers
https://fxdreema.com/shared/NxMZ0yxob
Something like this..
I dont know about your indicator, i assumed the indicator gives its output as pips (usually indicators output price levels or fractions)Hope you get the idea
-
RE: builder cant set pending limit order by pipsposted in Questions & Answers
use Formula block to add the pips to current level, so you get the level you need
-
RE: comparing between 2 or more candlesposted in Questions & Answers
use condition block
- there you will find the candle option
- you can select which part of the candle you compare, high low open close etc..
- you can select which candle you mean, id 0 is the current candle, id 1 is previous, id 2 is the one before id 1 ...
-
RE: Need Undo and Redo Buttonposted in Questions & Answers
there is something better already - try the "history" button on upper right
-
RE: add lot sizeposted in Questions & Answers
@bossx
In the builder, you see the menu on left: first there is constants, then there is variables. These are the lists of constants and variables.
Read more: https://fxdreema.com/help/working-with/constants-and-variablesI used a simple formula to calculate the values - after trade the formula calculates a new variable that is bigger than the old one, and then it replaces it.
In the "on Init" tab you see a small system that resets the sequence to the first lot amount. You can copy those blocks to your Ontick process to reset whenever you need
-
RE: add lot sizeposted in Questions & Answers
https://fxdreema.com/shared/sj5zjSuL
but you should reset the sequence at some point, yeah ?

-
RE: How to limit "number" of trading symbols? if I drag EA into 28 pairs but want to limit only 4 pairs. ?posted in Questions & Answers
In other words, the 4 pairs can say if the ea trades or not?
You will need global variables, so the eas can talk to each other -
RE: FRACTALS DEFINITIONposted in Questions & Answers
your link doesn't work
while in builder, go top-left, Projects -> Create a shared copy -
RE: FRACTALS DEFINITIONposted in Questions & Answers
@roar said in FRACTALS DEFINITION:
https://fxdreema.com/shared/xzRcbD5db
i modified the example to store the fractal prices, and then compare them to candle0
this one. at least appears to me
-
RE: FRACTALS DEFINITIONposted in Questions & Answers
https://fxdreema.com/shared/xzRcbD5db
i modified the example to store the fractal prices, and then compare them to candle0
-
RE: FRACTALS DEFINITIONposted in Questions & Answers
here.
https://fxdreema.com/shared/XLFjbWlcd
it checks once per bar, if there is a fractal.
if it is fractal up, it modifies the variable to 1
if it is fractal down, it modifies the variable to -1now you can just check the variable value, is it 1 or -1
block 9 is actually useless, because the variable must be 1 if it is not -1 (except beginning, its 0 then)
this example doesn't care about candle 0, it just checks fractal states. if you need the fractal's price, not state (up or down), you will need more variables to store that price data.
-
RE: FRACTALS DEFINITIONposted in Questions & Answers
Fractal formation is something like up, up, top (arrow paints here), down, down.
So the fractal appears on candle id 2So you want the ea to remember the last fractal state, was it up or down? This can be done with a variable.
-
RE: Price value liveposted in Questions & Answers
by default, thats how every ea works. every tick.
maybe you are using "once per bar" block or testing with model "open prices only" - just change these to work every tick -
RE: MT4>>MT5posted in General Discussions
- Using all CPU cores for calculation and backtesting in 64-bit, can make it 500% faster.
- Partial order filling
- More Pending Order Types
- Built-in Economic Calendar (Programmable triggers for news events, I suppose. If Yes = Great.)
- Order Depth.
- Backtesting multi-currencie EAs at the same time etc. Multi-threaded. Multi-currency. Real ticks.
- Better reports.
- More Timeframes (finally).
- More markets, like stock exchanges.
- Native SQL Export.
- Distributed computing (multi server power) etc.
I totally agree with you, I would prefer MT5 over MT4 any day

Couple more pros:- position netting (at least it suits my particular needs)
- better strategy tester interface
- more reliable backtesting
- ability to use fxdreema's comment block to track variable values while visual testing (i need dis)
I remember the admin saying he hates mt5 because he has to deal with its retarded coding, luckily we users don't
