Yes, "Volume size" is the lots you are going to trade. Some brokers allows 0.01 lots, others 0.1, but if you set a value that is less than the broker's minimum - the minimum is taken.
Posts made by fxDreema
-
RE: Volume size / Contract sizeposted in Questions & Answers
-
RE: My first EA FxDreemaposted in Questions & Answers
Support & Resistance is a group of indicators and they can be used of course. If you want to put SL/TP at the moment when the trade is opened, then use "Dynamic" options in "Buy now" or "Sell now" block. But you better make sure that the indicator will give you value on the right side of the trade. If you want to place SL on buy trade and the level for SL is above the current market price, no SL will be placed and error will appear.
In case you want to close the trade in the future when some condition happens, use "Condition" -> "Close each trade" for example. And if possible, connect this "Condition" after the existing "If trade is running" or yellow out of "No trade is running". Also, depending on the case, you may want to use "Once per bar" block.
-
RE: My first EA FxDreemaposted in Questions & Answers
__To summarize, the FxDreema also shows a sign of buy and sell, in this case an audible alert. In summary is to open an order immediately when you see this sign of buy, and vice versa for sell.
[attachment=1:eo352ccq]http://fxdreema.com/shared/KXrB6mWXc -
RE: My first EA FxDreemaposted in Questions & Answers
In this way you manually write the name of the indicator (filename), all of it's input parameters (separated with ",") and choose a buffer.
-
RE: block labelposted in Questions & Answers
I think it will not work
I started a redesign of blocks view, and instead of "code" I think I will put "edit" - context menu with more options. Also different group icons. And better description will be good, maybe when you put the mouse over the block's title. -
RE: Get values from Trendlines on a Chartposted in Questions & Answers
The normal way is to use buffers of course, not the objects. There is a block with name like "Levels tester..." that can show visually how any buffer behave.
-
RE: My first EA FxDreemaposted in Questions & Answers
PM sent, but let this picture be in the topic
-
RE: Get values from Trendlines on a Chartposted in Questions & Answers
There is a big list of object properties: http://docs.mql4.com/constants/objects/properties
There are many types of objects - arrows, trendlines, fibonacci - and each of them has some of these properties. Some objects, like arrows, have only one price. Others have 2 or 3 price coordinates - trendlines, rectangles.
Some properties are numeric, others are represented by numbers, like COLOR for example - each color has it's own number. Well, I was still not included colors in Condition block, but they are represented with system constants that you can write directly in "Numeric (value)". So, the red color is "Red", blue is "Blue", and this is the whole list of available colors: http://docs.mql4.com/constants/colors
In MT5 there are even more objects, predefined constants and properties.
-
RE: Price of Forex Dreamposted in Questions & Answers
Actualy I was asked for the same thing before. I thought that "starting from" is enough to describe what is that price means, but probably for some people has no logic. It's maybe because I am not a native-english person. But the truth is, it's better if everything is written in a way that a 5-years child can understand it, so I rewrote that text with another that sounds better... I hope.
-
RE: Get values from Trendlines on a Chartposted in Questions & Answers
If object names are not changing over time, you can see what's in "Condition -> Chart object attributes", and pick "Trendline...." from "Property".
Objects are identified by name in, so if you want to pick some object for other attributes like type, color, or other attributes, things goes a little bit complex, because you have to create a loop (cycle) for the available objects and ask each one of them for it's attributes. If you have many objects on the chart, this can eat some resources. In any case, there is a group of blocks (orange color, just below the big group of blocks with pink color) to create a loop for objects and with combination with "Condition" you can do some things. But again, if you know the name of the object - use it's name to select it.
-
RE: My first EA FxDreemaposted in Questions & Answers
Yes, Constants are optional, they can be added or removed from the block.
-
RE: fold unfoldposted in Questions & Answers
That's true, the whole website becomes smaller and text becomes hard to read. The font that is as a title in blocks is the smallest still readable font I choosed.
By the way you can try "Options -> Current project options -> Blocks view mode -> Smallest size", but block IDs will not be visible anymore
-
RE: My first EA FxDreemaposted in Questions & Answers
Right-click on the constant in a block -> "Set original value"
-
RE: fold unfoldposted in Questions & Answers
First two - I think for those already, after I saw projects with more than 100 blocks

What about Ctrl + Mouse Scroll?
-
RE: Price of Forex Dreamposted in Questions & Answers
Oh yes, it's lying of course, and it's also a manipulative advertising, because I want to get the money of everyone who enters that page

Now, let's do some math. The price for 12 months is $95. If you divide $95 to 12, you will get the result of 7,916666.... This is the smallest price per month.
-
RE: Importing Custom Indicatorposted in Questions & Answers
To know if some indicator can be used, and how, I created "Levels tester" block. Connect this block with "Just pass" and load the custom indicator inside. Choose one of the buffers available. Run that EA (in visual mode) and in the chart you will see levels of the buffer.
-
RE: MM Fixed Ratio Position Sizing created by Ryan Jonesposted in Questions & Answers
It starts with 1 lot here.
Sorry, but I really don't like to try projects with tons of input parameters, I don't know what happens on other's PCs.I can see you are using TS and BE, both, for whatever reason. These blocks are working with SL, so I don't think your trades will be with SL=0 all the time.
-
RE: My first EA FxDreemaposted in Questions & Answers
If you have installed the plugin and try to export (build) .mq4 or .ex4 file from shared project, it should go to your /experts subfolder... at least this is in theory. If it doesn't work, you can use another browser or temporary disable the plugin, to download the file in "Save as" mode.
-
RE: My first EA FxDreemaposted in Questions & Answers
Oh, I'm showing this strategy because your strategy sounds a bit complex for me to do it (the strict connection between order and trade, especially in case of more than one trade at a time).
Export as mq4 file and the project data will be in it. Then, load this file into your account in fxdreema.
-
RE: Exit Conditionsposted in Questions & Answers
Something like this? http://fxdreema.com/shared/Uzvugs75d
When backtesting, white checksigns are the moments where it tries to close the trade, yellow x-signs are the moments where it says that no close will happen on the next check.
Those 3 blocks on the right are optional, they does not matter in the strategy and can be removed. Block "a" is connected between "5" and "10" because otherwise "10" changes the environment for "a".
Every "n" minutes - this is a block who can pass once at the last minute in the period. When started for the first time, it does not pass.