stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

The New Beast!
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=63
Page 9 of 24
Author:  Sgt.Forex [ Fri Dec 09, 2011 12:04 pm ]
Post subject:  Re: The New Beast!

hmm, the version i am testing at the moment has been downloaded yesterday.
maybe this helps you.

cheers
Author:  Ribelo [ Fri Dec 09, 2011 12:35 pm ]
Post subject:  Re: The New Beast!

Can you show the screen shot? That would be a lot easier.
Author:  Sgt.Forex [ Fri Dec 09, 2011 12:43 pm ]
Post subject:  Re: The New Beast!

I allready closed these trades manually but you can see them.

cheers
Author:  Ribelo [ Fri Dec 09, 2011 11:07 pm ]
Post subject:  Re: The New Beast!

I will try to find a bug, but so far no signs of exploration. Not happened to me in my account, as well as there is no problem during the backtest. Looked through the the code and nothing. The only difference is the lack of recovery functions in case reentryline = 0, but you trade short so, even if it were true, any price is greater than 0.
Author:  jlcgarcia [ Sat Dec 10, 2011 5:34 pm ]
Post subject:  Re: The New Beast!

Hi Ribelo,

I was doing a backtest with GBPUSD and I also had two positions open at the same time. The first two positions of the backtest.

Can you see please?

The same problem I had with a real account on thursday when the program opened two positions on the audnzd.


Regards


José Luis
Author:  Ribelo [ Sat Dec 10, 2011 6:17 pm ]
Post subject:  Re: The New Beast!

My only idea is reentryline = 0, or no reentryline. So I changed it ...

Code: Select all

     if ( ReEntryLineVal > 0 ) {
            if ( Ask > ReEntryLineVal ) {
               return;
            }
            if ( BottomLine > ReEntryLineVal ) {
               return;
            }
         }
to this..

Code: Select all

      if ( ObjectFind(reentrylinename) == -1){
         if (OpenTrades > 0 ) {
            Alert("Re Entry Line is not found and the amount of open orders is greater than zero! Check GlobalVariables");
         return;
         }
      } else {
         if ( ReEntryLineVal > 0 ) {
            if ( Ask > ReEntryLineVal ) {
               return;
            }
            if ( BottomLine > ReEntryLineVal ) {
               return;
            }
         } else {
            Alert("Re Entry Line is equal to zero");
         return;
         }
      }
Every order is saved in GlobalVariables, so now when the error occurs, please press the F3 and check GlobalVariables. If there is a MagentaTradeOpen or BoxTradeOpen and reentryline is not equal to zero, I have no idea why this happens. Update in first post.
Author:  jlcgarcia [ Sat Dec 10, 2011 8:31 pm ]
Post subject:  Re: The New Beast!

Thanks Ribelo.

I have backtested with your modification and don't have had this problem again.

José Luis
Author:  380273421 [ Sun Dec 11, 2011 2:36 am ]
Post subject:  Re: The New Beast!

Ribelo wrote:SERIOUS WARNING

* Most Forex traders lose all their money.
* Using the robot posted here in trading Forex does not guarantee success.
* Trading this robot could lead to serious financial loss.
* Trading this robot without understanding its underlying trading strategies guarantees traders will lose their money.
* This is not a set-and-forget ea; there is no such thing and anyone who tries to claim there is, is either stupid or lying. This ea requires frequent manual intervention.
* At best, a trading robot is only 90% as good as the manual strategy it trades. At best. At worst, it can be much less effective. If the strategy is rubbish, so is the robot.
* To trade this robot, you have to understand:
* How to use EA's.

I TRADE THIS EA LIVE.


List of changes compared to the Beast.

Stealth.
AutoCalcLot.
AutoCalcTradeClosureLine using RSI trend.
White Box Trade using RSI trend.
Volatility calculated using ChaserL Sixths.
ReEntryLine calculated using Sixths and RSI.
AutoCalcTradeClosureLine for box trade.
Removed TrendDetectionModule
Removed some things from TradaManagementModule
OnlyTradeCurrencyTwice, and Zeljko now are based on global variables.
Add Cbi Module.

auto.calc.rec.var - AutoCalculateRecoveryVariables:
If we start from BoxTrade Recovery = 1.1.2.4, else 1.2.6.
RecoveryBreakEvenProfitPips based on ATR.
RecoveryTrailingStopAt based on ATR.

_______________________________________________

Unless I find any mistakes do not plan to make changes to the EA. I added all the things that I wanted. Today, on 1 December, let go SimpleBeast live in these pairs:
EUR/USD, GBP/USD, AUD/USD, EUR/AUD, GBP/AUD, USD/CAD, EUR/CAD, GBP/CAD, AUD/CAD and EUR/GBP, AUDNZD, USDNZD.

MM: 1000PLN / 0.01 Lot which gives approximately $ 400 / 0.01 Lot.

myfxbook account

Regards,
Ribelo.
1:start time 22:15 ?GMT? 2:use all pairs?How much start-up capital? :?
Author:  hankeys [ Sun Dec 11, 2011 4:32 pm ]
Post subject:  Re: The New Beast!

when loading it to the Empty4 this log is created

1;39;;;Function "ReplaceReEntryLine" is not referenced and will be removed from exp-file

is there any problem?
Author:  Ribelo [ Sun Dec 11, 2011 4:47 pm ]
Post subject:  Re: The New Beast!

I know about the error and every time I forget the delete function. It does not matter.
All times are UTC Page 9 of 24