• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Suggestion Monkey Pips ( from the original author )

Hi Trevor,
we are getting good results with 305 if we check Ask, Bid rate changes comparing with velocity time as you have done in 701.
if( (int) TimeCurrent() - lastBuyOrder > VelocityTime && rateChangeBid < VelocityTrigger * Point * deleteRatio )
r = OrderDelete( OrderTicket() );
============================================
//===============================
double priceNowBid = tickBid[size-1];
double priceThenBid = tickBid[0];
for( int i = size - 1; i >= 0; i-- ){
if( timeNow - tickTime > VelocityTime ){
priceThenBid = tickBid;
break;
}
}
rateChangeBid = ( priceNowBid - priceThenBid );
if( rateChangeBid / Point > 5000 ) rateChangeBid = 0;
============================================
if( rateChangeBid > VelocityTrigger * Point && avgSpread <= maxSpread && totalBuyStop < TradeDeviation ) {

Please could you share setting, timeframe and pairs that you are using?
Thanks.
 
Hi. I hope not to be impertinent, I did backtesting with the monkeypips305 and now I want to take it to real account but there will be no trades. Do you have any configuration so there will be more trades? Thanks in advance.
 
Hi Brunda! Can you please post/attach your "modified" 305? Thanks
(Sorry to ask again but "james jamie" is spamming the thread)
 
Monkey PiPs, = waste of time. I respect the author. But to do all this and that is to much trouble.

Just use this EA on Cent Acct. Easy Peasy Japanesey!!! Make money!!!

TF=5M
Dude i think your replies are stupid and you give a solution of an ea that blows accounts over and over again.. your somewhat smart
 
Hi Trevor,
I got admired with your most intelligent logic of below little piece of your code and you shared.
void manageTicks(). initially I thought of making use of RExecuteAsync() function which is part of R for Asynchronous execution of the orders. But in practical, its not yielding any expected/positive results in live. the only alternative is to opt mt5. I made use of some header libs and constructed an adviser out of it. it appears to be a reasonable option to trade with. as you said earlier,
1. back testing with 100% accurate data will not result in forward testing with demo account.
2. Forward testing results with Demo account will never match with live account.
3. forex is the plat form to feed the brokers not the traders.

The only option is to test with real live account with any broker(with different account types).
partially I am able to run it on mt5 . please guide/advise/suggest.

upload_2019-10-6_0-59-29.png

upload_2019-10-6_1-0-44.png

I am unable to find to test with fixed spread option in this.
 

Attachments

  • upload_2019-10-6_0-59-29.png
    upload_2019-10-6_0-59-29.png
    51.5 KB · Views: 1,109
  • upload_2019-10-6_1-0-44.png
    upload_2019-10-6_1-0-44.png
    20.1 KB · Views: 1,091
Hi Trevor,
I got admired with your most intelligent logic of below little piece of your code and you shared.
void manageTicks(). initially I thought of making use of RExecuteAsync() function which is part of R for Asynchronous execution of the orders. But in practical, its not yielding any expected/positive results in live. the only alternative is to opt mt5. I made use of some header libs and constructed an adviser out of it. it appears to be a reasonable option to trade with. as you said earlier,
1. back testing with 100% accurate data will not result in forward testing with demo account.
2. Forward testing results with Demo account will never match with live account.
3. forex is the plat form to feed the brokers not the traders.

The only option is to test with real live account with any broker(with different account types).
partially I am able to run it on mt5 . please guide/advise/suggest.

View attachment 99202

View attachment 99203

I am unable to find to test with fixed spread option in this.

Hi Brunda: You are geting the benefit of what Trevor shared here freely. People are asking you questions but you are not answering. Instead, you are asking for even more help from Trevor.
 
I’ve been testing a ECN (real) account for the second week, while nothing happens ...
One currency pair, server with ping 2-3ms
 
3. forex is the plat form to feed the brokers not the traders.
Okay , then what are you seeking about more in this market

Do you have a good approach for using in a successful real account condition

The author is researching on Mt5 and as I read , CTrader and perhaps Fixed API platform and software

As you know Broker is important factor and the time of good condition of trading (Volatility , not spiky or gaped candle , huge slippage , Quotes , ...)

This EA I think behaves like Assar EA series (versions) that would need price action , like jumping price speed that have their disadvantages
 
Back
Top