@sktsec can you help create a sample project of it?? pls
Unsolved Lot-size Chart display EA
-
Im think of making a lotsize calculator ea
So how do i make the ea to show me the lotsize to use based on my balance .
Example what is 3% of my balance = Print lotsize.
Possible???
@jstap @l-andorrà @ambrogio
Please lend in ur minds -
Do you want it to show the value on screen only or to use it as a real lote size on your trades?
-
@l-andorrà just to display it on my chart in text only,
i will input it manually on limit order myself -
@ambrogio you help me check this yet??
-
@FX-Gnosis In that case you willneed the formula to do that calculation and then using as many formula blocks as necessary. However, I'm not the guy knowing that formula. If you know it, I can help you to implement it, though.
-
@l-andorrà
Market properties --> Money per tick
Market properties --> Tick sizeThe formula could be
your_money/(Money per tick/Tick size)Money per tick actually means money per tick per lot
-
@sktsec Interesting. I didn't know that.
-
@sktsec so how do i implement with this??
-
@FX-Gnosis
Say,
x = your_money/(Money per tick/Tick size)
sl_fraction is the stop loss fraction.The full formula is
x / sl_fractionUsing the result to check that is correct before you really use it
-
@sktsec can you help create a sample project of it?? pls