hmm, the version i am testing at the moment has been downloaded yesterday.
maybe this helps you.
cheers
The New Beast!
- Sgt.Forex
- Trader
- Posts: 55
- Joined: Wed Nov 16, 2011 11:03 am
- Location: Germany
Re: The New Beast!
Money makes the world go round! 
-
Ribelo
- Trader
- Posts: 62
- Joined: Thu Nov 17, 2011 12:58 am
Re: The New Beast!
Can you show the screen shot? That would be a lot easier.
- Sgt.Forex
- Trader
- Posts: 55
- Joined: Wed Nov 16, 2011 11:03 am
- Location: Germany
Re: The New Beast!
I allready closed these trades manually but you can see them.
cheers
cheers
You do not have the required permissions to view the files attached to this post.
Money makes the world go round! 
-
Ribelo
- Trader
- Posts: 62
- Joined: Thu Nov 17, 2011 12:58 am
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.
Last edited by Ribelo on Thu Apr 26, 2012 5:59 pm, edited 1 time in total.
-
jlcgarcia
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
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
You do not have the required permissions to view the files attached to this post.
-
Ribelo
- Trader
- Posts: 62
- Joined: Thu Nov 17, 2011 12:58 am
Re: The New Beast!
My only idea is reentryline = 0, or no reentryline. So I changed it ...
to this..
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.
Code: Select all
if ( ReEntryLineVal > 0 ) {
if ( Ask > ReEntryLineVal ) {
return;
}
if ( BottomLine > ReEntryLineVal ) {
return;
}
}
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;
}
}
-
jlcgarcia
Re: The New Beast!
Thanks Ribelo.
I have backtested with your modification and don't have had this problem again.
José Luis
I have backtested with your modification and don't have had this problem again.
José Luis
-
380273421
- Trader
- Posts: 17
- Joined: Fri Dec 02, 2011 7:44 am
Re: The New Beast!
1:start time 22:15 ?GMT? 2:use all pairs?How much start-up capital?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.
-
hankeys
- Trader
- Posts: 21
- Joined: Fri Nov 18, 2011 12:55 pm
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?
1;39;;;Function "ReplaceReEntryLine" is not referenced and will be removed from exp-file
is there any problem?
-
Ribelo
- Trader
- Posts: 62
- Joined: Thu Nov 17, 2011 12:58 am
Re: The New Beast!
I know about the error and every time I forget the delete function. It does not matter.