Forex Strategy Builder and Trader

Post Reply
Radar
Trader
Posts: 437
Joined: Fri Mar 23, 2012 5:39 pm
Location: Round the bend ;)

Re: Forex Strategy Builder and Trader

Post by Radar »

Hey Angat,
Angat wrote:I have used FSB extensively, one major limit I found was the SL and TP options. It needs something like a straight up if price goes up 30 pips move SL to +15. I have requested in the FSB forum ages ago...This would stop a lot of average trades turning into bad trades and may have a major impact on profitability of FSB generated strategies.
I've been digging around in FSB, and found a few built-in indicators to set SL & TP, so I guess it's possible to code a trailing/jumping stop "indicator" module.

I left a message in the "Wish List" thread on the FSB forum, asking for a trade management module, but I guess it would be easier to have it coded as an indicator, so will pop a message in the Indicators sub-forum, and see if anyone's interested in coding a trailing/jumping stop indicator, and a scale-in indicator.

Have fun!

Radar =8^)
Check out my new, (well, old now), manual trade & automatic scale-in manager,
StackManV2
User avatar
Popov
Trader
Posts: 36
Joined: Sun May 19, 2013 3:14 am

Re: Forex Strategy Builder and Trader

Post by Popov »

Indicators in FSB use data set, brokers and market settings. They do not have access to trades and positions and therefore a Jumping SL cannot be made as a custom indicator.

Integrated SL, TP, BE are coded in the core of the backtester.

I have plans to expose trading stats to the indicators, in a way that to be possible to make custom indicators as SL, TP, and such that add or reduce a position depending on the current profit ,but it will not happen in the upcoming releases.

...

As I know, there are no such indicators build in Empty4 platform, right? A trader codes them in his expert adviser. In the same way one can add such features to the FST expert. There is no problem also an skillful programmer to add them to the code of FSB. According to the license, FSB / FST can be freely modified for personal use. Also such improvements can be contributed to the project and included in the next releases.
Radar
Trader
Posts: 437
Joined: Fri Mar 23, 2012 5:39 pm
Location: Round the bend ;)

Re: Forex Strategy Builder and Trader

Post by Radar »

Hey Popov,
Popov wrote:Indicators in FSB use data set, brokers and market settings. They do not have access to trades and positions and therefore a Jumping SL cannot be made as a custom indicator.

Integrated SL, TP, BE are coded in the core of the backtester.
Ahh, I saw them whilst looking at different exit options, and assumed that they were indicators, (well, modules really, I know they're not indicators), and could be over-ridden by a custom version.
I have plans to expose trading stats to the indicators, in a way that to be possible to make custom indicators as SL, TP, and such that add or reduce a position depending on the current profit ,but it will not happen in the upcoming releases.
I'm looking forward to that! :) I have a crazy scale-in method where I'll risk a certain percentage of locked-in profit each time I scale in... Each scale-in trade has to hit break-even before I open the next one... When I get in on a long enough run, I can double my lot-size whilst still risking the same percentage of locked-in profit :)
As I know, there are no such indicators build in Empty4 platform, right? A trader codes them in his expert adviser. In the same way one can add such features to the FST expert. There is no problem also an skillful programmer to add them to the code of FSB. According to the license, FSB / FST can be freely modified for personal use. Also such improvements can be contributed to the project and included in the next releases.
Ahh, if I could only get my head around coding... It just doesn't sink in :(

I was thinking along the lines of indicator <=> module, and got myself nicely confused ;)

Have fun!

Radar =8^)
Check out my new, (well, old now), manual trade & automatic scale-in manager,
StackManV2
User avatar
slowkey
Trader
Posts: 791
Joined: Sun Dec 04, 2011 1:27 pm
Location: Maryland USA

Re: Forex Strategy Builder and Trader

Post by slowkey »

An interesting response by Popov to a previous question on Empty4.

http://forexsb.com/forum/post/18680/#p18680

:)

Doug
The Gann Ribbons ... A new tool for looking at Time Periods, Price and Dynamic S/R in any system.

Now using HGI on 60 minutes and up & 10.7 with Hurst Targets intraday.
Bob's HGI Fourm
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3524


"No problem can be solved from the same level of consciousness that created it."

Albert Einstein
User avatar
slowkey
Trader
Posts: 791
Joined: Sun Dec 04, 2011 1:27 pm
Location: Maryland USA

Re: Forex Strategy Builder and Trader

Post by slowkey »

I wanted everyone to start to become acquainted with this new feature in FSB 3.0 custom sorting. It can be experienced right now in the 2.98 RC beta.

This is the first post by Adam and followups where it was first mentioned and discussed.
http://forexsb.com/forum/post/12300/#p12300

It is more fully discussed by Adam in the following post and followups.
http://forexsb.com/forum/post/18489/#p18489

There is more information on sorting in the following post and followups on an earlier beta release.
http://forexsb.com/forum/post/18801/#p18801

This adds a powerful new feature to the generator with new possibilities for strategy development.

:)

Yes there will be videos on version 3.0 coming. That project will be developed at

http://forexsb.com/forum/topic/4198/dou ... o-project/

where I can get expert opinion and input from developers and members. I hope to compile a complete video help series to the new version. That is a little ambitious so I will have to understand the new version completely.

Doug
The Gann Ribbons ... A new tool for looking at Time Periods, Price and Dynamic S/R in any system.

Now using HGI on 60 minutes and up & 10.7 with Hurst Targets intraday.
Bob's HGI Fourm
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3524


"No problem can be solved from the same level of consciousness that created it."

Albert Einstein
User avatar
Popov
Trader
Posts: 36
Joined: Sun May 19, 2013 3:14 am

Re: Forex Strategy Builder and Trader

Post by Popov »

slowkey wrote:An interesting response by Popov to a previous question on Empty4.

http://forexsb.com/forum/post/18680/#p18680

:)

Doug
FSB does less things than Empty4, but what it does is better. I was familiar with MT before starting FSB. If MT was good enough, FSB would never existed.

One example: searching if an indicator is rising
The most of experts do this something like this:

Code: Select all

If (indicator[0] > indicator[1])
{
   // It is rising
}
other use better code:

Code: Select all

If (indicator[0] > indicator[1] + epsilon)
{
   // It is rising
}
Do you think this is good enough?

I don't.

I'm 100% sure that some good programmers have excellent and robust expert advisers, but the general users don't. MT doesn't care if you make bad expert. It's your problem. In the other hand, FSB tries to do the things correctly for everyone.

So I may say, if you are good programmer or have good expert adviser, Empty4 is better for you.
FSB is for faster check of a theory or generating a strategy with a predefined structure. Empty4 is for programming of complex strategies.
User avatar
slowkey
Trader
Posts: 791
Joined: Sun Dec 04, 2011 1:27 pm
Location: Maryland USA

Re: Forex Strategy Builder and Trader

Post by slowkey »

So I may say, if you are good programmer or have good expert adviser, Empty4 is better for you.
FSB is for faster check of a theory or generating a strategy with a predefined structure. Empty4 is for programming of complex strategies.
I am happy to say Popov that there are many of these "good programmers" on Stevenhopwood.com :D

Many very interesting ideas have been developed in code including Steve's shell EA and MPTM.
Many bright coders hang out here. Some maybe know C# like slipshod too. :D


Doug

:D
The Gann Ribbons ... A new tool for looking at Time Periods, Price and Dynamic S/R in any system.

Now using HGI on 60 minutes and up & 10.7 with Hurst Targets intraday.
Bob's HGI Fourm
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3524


"No problem can be solved from the same level of consciousness that created it."

Albert Einstein
User avatar
Popov
Trader
Posts: 36
Joined: Sun May 19, 2013 3:14 am

Re: Forex Strategy Builder and Trader

Post by Popov »

I am happy to say Popov that there are many of these "good programmers" on Stevenhopwood.com

Many very interesting ideas have been developed in code including Steve's shell EA and MPTM.
Many bright coders hang out here. Some maybe know C# like slipshod too.

Excellent, I'll need help at some time when I start implementing the new FSB Pro features in FST.
We'll need to expand the expert and the library in order to provide data for several symbols to FST.

When I start working on that problem I'll probably open a separate topic for discussing ideas and code.


I like this forum! It covers multiple subjects of the trading process.
User avatar
slowkey
Trader
Posts: 791
Joined: Sun Dec 04, 2011 1:27 pm
Location: Maryland USA

Re: Forex Strategy Builder and Trader

Post by slowkey »

Spending a lot of time testing the beta and learning all the features so I can compile a complete video help section on version 3. These will be short 5-10 minute videos eventually covering the version in detail. That way people can just pick out something they are unfamiliar with and learn by video. This will take some time but will open up the program to more people I think.

:)

Doug
The Gann Ribbons ... A new tool for looking at Time Periods, Price and Dynamic S/R in any system.

Now using HGI on 60 minutes and up & 10.7 with Hurst Targets intraday.
Bob's HGI Fourm
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3524


"No problem can be solved from the same level of consciousness that created it."

Albert Einstein
User avatar
slowkey
Trader
Posts: 791
Joined: Sun Dec 04, 2011 1:27 pm
Location: Maryland USA

Re: Forex Strategy Builder and Trader

Post by slowkey »

Image

The EURUSD 112 and 113 strategies have not lost. Do not trade real frequently but stay out of the chop.
Will see. Profit got bumped up when one of them got its lots set wrong so went ahead and adjusted them to be the same.
The Gann Ribbons ... A new tool for looking at Time Periods, Price and Dynamic S/R in any system.

Now using HGI on 60 minutes and up & 10.7 with Hurst Targets intraday.
Bob's HGI Fourm
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3524


"No problem can be solved from the same level of consciousness that created it."

Albert Einstein
Post Reply

Return to “Automated trading systems”