Home About Contact
ForexForums.org




Reply
Old 04-06-2008, 11:55 PM   #1 (permalink)
Administrator
 
kokas's Avatar
 
Join Date: Sep 2006
Location: Portugal
Posts: 507
BollTrade

Ron Thompson

This EA is designed for EURUSD M15 it was developed by Ron Thompson on

Yahoo MetaTrader_Experts_and_Indicators Group

This EA places BUY and SELL MARKET ORDERS depending on how far outside the Bollinger Bands the current price falls. This is a counter-trade system, that is, it SELLS when the UPPER bands are exceeded by BDistance pips and BUYS when the LOWER Band is exceeded. BDistance, BPerion and Deviation control the Bollinger Bands

It depends on retracement and exhaustion to make profit.

It only places one trade per bar.

If enabled (IStep greater than 0) the system will double lot sizes when there is a loss. This is an attempt to recover the previous loss, and make money on the current trade. And there are styles (IStyle) of lot growth for loss recovery

The greatest failure of this EA will come when you don't have enough money to support the Martingles steps anymore, so start your lot sizes small.

LotIncreasement grows the lot size based on your starting balance, risking more money when you have more money. It is built in, based on Starting Balance and LotResolution, and is independent of IStep and the Martingale process.


---Starting Balance---

The formula for Lots is AccountBalance() / StartingBalance

Lets say your AccountBalance() is currently 550$

if you want to trade 10.0 lots, put 55 into StartingBalance 550 / 55 = 10
if you want to trade 1.0 lots, put 550 into StartingBalance 550 / 550 = 1
if you want to trade 0.5 lots, put 1100 into StartingBalance 550 / 1100 = 0.5
if you want to trade 0.1 lots, put 5500 into StartingBalance 550 / 5500 = 0.1
if you want to trade 0.01 lots, put 55000 into StartingBalance 550 / 55000 = 0.01

---LotResolution---

This controls the Lot size of step your broker/account can support
If set to 1, then your lot size is increased in 0.1 steps as your account grows
If set to 2, then your lot size is increased in 0.01 steps as your account grows

IBFX supports LotResolution of 2


---IStep---

IStep is ONLY USED WHEN IStyle==1

IStep is the USER control for progression of lot growth to recover loss
Lots are multiplied by this number for each losing trade



---IStyle---

Allows you to pick the type of loss recovery you're most comfortible with.

0 == NO LOSS RECOVERY
1 == lot growth based on IStep
2 == Modified Martingale - growth by 2.0000 with 1st step being 1
3 == Fibonacci - growth by Fibo numbers, requires 2 wins to recover the total loss
4 == future implementation


---SameBarRecovery---
Usually there is only 1 trade allowed per bar. If this option is set to true, then
another trade will be allowed on the same bar, but only if the last trade was a loss.

NOTE! - This does NOT work well with Darma's ATR option


---MinFreeMarginPct---

This percent of your account must be free for margin before an order will be placed



---ProfitMade---

The amount of pips you expect to make on EACH TRADE


---LossLimit---

The amount of pips you can afford to lose on EACH TRADE


---Other elements---

Trades are constrained to one-per-bar. This is controlled in the bar counting section of the code. Trade is only enabled if there are no orders open at the new bar.
Search for uncomment for multiple trades per bar
There is also an override for this using SameBarRecovery but only for losing trades
Attached Files
File Type: mq4 [ea]BollTrade_Ron_MT4_v05a.mq4 (21.6 KB, 48 views)
File Type: mq4 [i]BollTrade_Ron_MT4_v05a.mq4 (4.5 KB, 34 views)
kokas is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
Old 04-07-2008, 01:45 AM   #2 (permalink)
Administrator
 
kokas's Avatar
 
Join Date: Sep 2006
Location: Portugal
Posts: 507
More versions of this EA and Indicators.
Attached Files
File Type: mq4 [ea]BollTrade_Ron_MT4_v03c1.mq4 (12.4 KB, 7 views)
File Type: mq4 [ea]BollTrade_Ron_MT4_v03m EUSD_TD_ATRized.mq4 (29.1 KB, 8 views)
File Type: mq4 [ea]BollTrade_Ron_MT4_v03mD3 EUSD.mq4 (24.0 KB, 10 views)
File Type: mq4 [ea]BollTrade_Ron_MT4_v03mD3_GridExit v01 EUSD1.mq4 (27.2 KB, 7 views)
File Type: mq4 [ea]BollTrade_Ron_MT4_v03mD3_GridExit v01 EUSD.mq4 (28.0 KB, 6 views)
File Type: mq4 [ea]BollTrade_Ron_MT4_v03mD3_GridExit v02 EUSD.mq4 (24.2 KB, 9 views)
File Type: mq4 [ea]BollTrade_Ron_MT4_v03mD3_GridExit v03 EUSD.mq4 (24.6 KB, 10 views)
File Type: mq4 [ea]BollTrade_Ron_MT4_v05a.mq4 (21.6 KB, 6 views)
File Type: mq4 [ea]BollTrade_Ron_MT4_v05c.mq4 (22.5 KB, 8 views)
File Type: mq4 [ea]BollTrade_Ron_MT4_v05cx.mq4 (20.8 KB, 8 views)
File Type: mq4 [ea]BollTrade_Ron_MT4_v05d.mq4 (22.5 KB, 21 views)
File Type: mq4 [i]BollTrade_Ron_MT4_v04c.mq4 (2.5 KB, 7 views)
File Type: mq4 [i]BollTrade_Ron_MT4_v05a.mq4 (4.5 KB, 8 views)
File Type: mq4 [i]BollTrade_Ron_MT4_v05b.mq4 (5.5 KB, 13 views)
kokas is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-24-2008, 03:56 PM   #3 (permalink)
Junior Member
 
Join Date: Apr 2008
Posts: 1
thanks for the EAs...

could u post detail statements from those EAs ?

thanks again kokas


regards
ical is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 01-03-2009, 11:14 PM   #4 (permalink)
Junior Member
 
Join Date: Dec 2008
Posts: 4
BOLLTrader_ea

I started with the first and the most basic version of this EA. I had success just after changing the parameters..

I started to try the other versions and each version gets better but more complex. Each version includes new features and allows even more tweaking..

They say that this EA was designed for the Eur?usd but I have back tested with other pairs on the M15...

The newer version contains a news release filter which is a great idea

Can anyone post their results??

or email me
4xleader@gmail.com
4xleader82 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 01-03-2009, 11:29 PM   #5 (permalink)
Junior Member
 
Join Date: Dec 2008
Posts: 4
PROGRAMMERS::: when the news filter is on, we need to add a buy or sell at which the price breaks the bollinger band in the opposite way that this indicator works(trades).

So a buy order will enter as the price is ABOVE the Bollinger band (20 period) and will close out on moving averages.. (lets enter with .5 lots and once trade is at positive gain, .1 lot will exit at Mva 11, .1 lot will exit at mva 15, .1 lot will exit at mva 19, .1 lot will eixt at mva 23, .1 lot will exit at mva 27)
this is a simple but efficient way to exit out of the trade...

this strategy will only be traded when the news filter prohibiting the BOLLTrade EA from trading...

Im posting an EA that opens a buy when the price is higher than the BB and opens a sell when the price is below the BB..

and the trade will exit on the Moving averages..

Let me know if you can add the two EA together .
4xleader@gmail.com
Attached Files
File Type: mq4 BollingerEA1.mq4 (6.6 KB, 3 views)
4xleader82 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
Old 01-03-2009, 11:40 PM   #6 (permalink)
Junior Member
 
Join Date: Dec 2008
Posts: 4
Better EA

bollingerband Ea1 didnt seam to work.

here is the other EA that has the same concept. but has macd parameters to confirm entering the market.

Sorry if the code doesn't make much sense. Im new to metatrader.
Attached Files
File Type: mq4 Arron's Custom 1.mq4 (10.9 KB, 1 views)
4xleader82 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Sedo - Buy and Sell Domain Names and Websites project info: forexforums.org Statistics for project forexforums.org etracker® web controlling instead of log file analysis

All times are GMT. The time now is 08:38 PM.
Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.