Topic: How to add a comment to every opened order of FST?

Hello!
One broker is allowing trading binary options in MT4. And to set the expiration period of the order, i must to add a comment (some number) to every order i am placing. Number set in comment is the expiration period in minutes.
What i need to do for, to my EA runned in FST, added a comment with some number? For example "5" - that means 5 minutes expiration.
Thank you!

Re: How to add a comment to every opened order of FST?

You can set a custom comment in the expert.
It Works for the new FSB-MT4 Bridge.mq4 and for the legacy MT4-FST Expert.mq4.

Compile the file when you are ready with the modification.

http://s22.postimg.org/9w2zgo5vh/set_custom_comment_in_bridge.jpg

Re: How to add a comment to every opened order of FST?

Thank you very much!!!

And one more question!
In FSB strategy options i see base martingale system. But i want to use another lot multiplier system. Exactly for my binary options trading with 100% on loss and 70% on win, i use this formula: (sum of loosed lot sizes)*1.43=next trade lot size. Example with starting lot size=1 for 5 consecutive loss: 1; 1.43; 3.47; 8.45; 20.52...

Is it possible to add my own money management formula?
Thanks!

Re: How to add a comment to every opened order of FST?

You can only set a constant Martingale multiplier. You can try different combinations of Martingale Multiplier and Max positions lots limit

5 (edited by metall_trade 2014-11-23 00:59:23)

Re: How to add a comment to every opened order of FST?

May be i can modify  FSB-MT4 Bridge.mq4 to he ignore lot parameters putted in FST, i can write manually in FSB-MT4 Bridge.mq4 fixed amount of lots for each count of consecutive losses?
It is not a problem always to modify EA with new lot parameters all the time. All i just want, that he to open first trade - 1lot, if i loose the next trade lot must be 1.43, if again loose than 3.47, if too then 8.47,  if too then 20.52, on win (consecutive losses=0) start again from lot size=1.

consecutive loss | next trade lot size
                     0           1
                     1           1.43
                     2           3.47
                     3           8.45
                     4           20.52
                        ...

Thanks again for your time!!!

Re: How to add a comment to every opened order of FST?

How do you received these numbers: [1; 1.43; 3.47; 8.45; 20.52...]. Are they constitute a predefined  sequence?

Re: How to add a comment to every opened order of FST?

Popov wrote:

How do you received these numbers: [1; 1.43; 3.47; 8.45; 20.52...]. Are they constitute a predefined  sequence?

I think that metall_trade probably has taken these numbers from this source:
https://www.youtube.com/watch?v=FyAeujRwLxM that was referred before.

This hedging method is based on this:
http://www.forex-central.net/sure-fire- … rategy.php

There are meny variations and EA's available of this hedging method.

Re: How to add a comment to every opened order of FST?

These numbers are sequence calculated for binary options broker with trading conditions 100%/70%
You bet 1, if you win then +0.7(70%)
           if you loose then -1(100%)
So to return lost amount, you must bet in next trade 1*1.43=1.43-30%=1

Formula:
0 losses bet X
1            X*1.43
2            (X+(X*1.43))*1.43
3            (((X+(X*1.43))*1.43)+(X+(X*1.43)))*1.43
4            ....


The simplest way is to write manually in FSB-MT4 Bridge.mq4
some code like: if consecutive loss = 1 then lot size = 1.43
                if consecutive loss = 2 then lot size = 3.47
                if consecutive loss = 3 then lot size = 8.45
                if consecutive loss = 0 then lot size = 1
But where and what to write i don't know...

Re: How to add a comment to every opened order of FST?

Some one can help me? :\

Re: How to add a comment to every opened order of FST?

If we do it, we have to do it in the right way to be sure the solution will be useful for the other user too.

Please post the idea behind this formula. Why the multiplier is 1.43? Is it constantly 1.43 or can be modified? What is the name of this method?

I need this info to make correct option names and to document it properly.
If you do it only in the expert, you'll not be able to backtets this system. This is not the way our software works. Another problem is that the order amount comes from  FST. A modification in the expert will break all other trading systems.

I can make a private modification of FST (and FSB for backtetsing) for you. I'll send you a PM with the offer.