@roar
I didn't find that part, thank you got the answer : )
Posts made by seb 0
-
RE: Put an EA on the marketposted in Questions & Answers
-
Put an EA on the marketposted in Questions & Answers
Evening,
I wanted to know if I could put an EA i built with fxDreema on the MT5 market. Is it copyright free or... ?
Thanks clarifying it. -
RE: DAX30 Pending Orderposted in Questions & Answers
@yoloyacht
Are you trying to place a pending order while the market is closed ? -
RE: I want to create a variable, but I can't find a possible way to do thatposted in Questions & Answers
@khalids222
To create a variable you need to do this :
https://fxdreema.com/shared/qxFbyE1td
In the 3d step write the type of variable, its name, and the value it will take by default. Once created you can use this variable to load the value of something, here the price of candle 1. Once the first block passes the variable isn't equal to 0 anymore but to the price of the market. And you can use it on the next blocks. -
RE: A Setposted in Questions & Answers
With this configuration
you will have something close to what you want, but still can open two trades on a 0.03 volume instead of one.
Else you can use a variable like that https://fxdreema.com/shared/1uA6HIgBb -
RE: Make trades ignore straddlesposted in Questions & Answers
@luqmaan
You just need to add this condition above the others conditions which need to be satisfied to open a trade.
If you want to buy when MA5>MA20, then,
Before : If MA5>MA20 -> Buy now
Now : If MA5>MA20 and if ATR>0.002 -> Buy now -
RE: Make trades ignore straddlesposted in Questions & Answers
@luqmaan
Yes you can apply a "time filter" block, or a condition block with the ATR.
The ATR measures the "volaitlity" of the market, the average size of the "X" last bars. Can add the condition that the ATR must be above a certain value relatively to the price of the instrument. -
RE: Standard Stochastics indicator K line above D lineposted in Questions & Answers
@equinox
Usually you want to buy when the main line is above the signal one. Reverse? -
RE: Get ZigZag leg candle IDposted in Questions & Answers
@l-andorrà
Well found!
I searched for "zigzag candle ID" the post didn't appear in suggestions https://fxdreema.com/forum/search?term=zigzag candle id&in=titlesposts
Also none of these topics tell you how to get the candle ID from ZZ Highs or Lows as i can see. Or maybe im blind. And i need it, but I can get it with my little structure above : ) -
Get ZigZag leg candle IDposted in Questions & Answers
I was wondering if there was a conventional way to get the candle ID from the ZigZag H1 or L1..?
Otherwise we can do that : https://fxdreema.com/shared/J4cjZ1Xjc -
RE: Another trend line projectposted in Tutorials by Users
@alphaomega
If you are testing it on live, the lines can take some time to appear as the opportunities are not frequent. You can backtest it to see quicker result, or make the parameters less strict. -
RE: Another trend line projectposted in Tutorials by Users
@alphaomega
I see that you have a red square beside the EA name, are you sure you have it enabled ?

-
RE: Another trend line projectposted in Tutorials by Users
@alphaomega
Try this on "once per bar"
https://fxdreema.com/shared/jbgI13yne -
RE: Another trend line projectposted in Tutorials by Users
@alphaomega
Hey no problem! I will probably update it later : ) -
Another trend line projectposted in Tutorials by Users
First time i'm posting in this section, just wanted to share with you my project drawing trend lines.
It draws dynamic support resistance lines, on higher lows and higher highs, using RSI, and linear regression formula, to find best placement of the line.
This is one version of the project which as all can be indefinitely upgraded.. if you want to add something.
https://fxdreema.com/shared/jbgI13yne -
RE: just looking to collaborate.posted in General Discussions
Actually don't necessarily make vary the volume. Make vary SLs and TPs.
-
RE: Draw curvesposted in General Discussions
@l-andorrà
Thanks.
However there is nothing to interpret when the curve is far away from the actual one, especially the last bars.
It's better to search confirmation in two symbol pais(like EUR/USD-EUR/JPY). Also the following of the previously drawn curve, with the 2-3 next bars can be kinda forward confirmation for me. -
Draw curvesposted in General Discussions
This project i've made draws curves.
It compares a block of "n" bars at time "t", with a block of "n" bars at time "t-x", on multiple time-frames and finds the closest block from the current one.
More concretely it compares the difference from the bar ID1+1 to the bar ID1, to the difference from bar IDR+1 to the bar IDR. Repeats it for :- ID1+2 - ID1 ; to : IDR+2 - IDR
- ID1+3 - ID1 ; to IDR+3 - IDR
- Until ID+n
The comparisons give more weight to the most recent bars, and once the job has been done for a maximum number of historical data on the actual time-frame, it repeats the process on another one, on comparison with the base one always, scaling differences using the ATR ratio. Then the EA keeps the ID and the time-frame of the block with the lowest deviation, and draws it below the current bars, extending it with the 10 next bars.
https://fxdreema.com/shared/tb6KEDaX -
RE: Can we create a custom indicator like this one?posted in Questions & Answers
@fxmich78
Not sure to understand.
If you want the entries to depend on the fact that the line is above or below the price, you need another condition i don't know. -
RE: Right way for Candle Break-Out..?posted in Questions & Answers
@jjot
Orders are executed at the point the settings are defining. Each case open trades at different point.