sorry dude i cannot be more specific to plot more details on where you liedstill havent shown me where i lied??
everyone report that trololo
Trevor ,
over the world available positive people and negative people. so should do focused only our positive point.
Good work Treor and love what you did....![]()

Incase everyone is confused with all the posts i have made recently:
In simpler words... I hope
Monkey dont make profit in live trading because after OrderSend broker does not respond quick enough for monkey to do OrderModify... ie place the stop in profit. Sure you might be lucky enough to make profit from time to time but dont expect it to be consistent.
This has got nothing to do with slippage
This has nothing to do with spread or commission
This has nothing to do with the broker ( somewhat but if i explain that you get confused again )
THIS IS A PROBLEM WITH MT4
we need async execution
Incase you are confused why your account is not trading like my demo? ( Because I really do have the exact same version with default settings )
This is because the ea is spread-adaptive... meaning with higher spread ( I also add in commission ) the ea wait for higher velocity. it is directly proportional.
But with these higher spread accounts the trades are of a better quality.. so just be paitent ye?
Incase you are wondering if you need multi terminals?
No.... Its me that suggests that madness and I dont even trade this ea live
nice.......trevor... please don't stop R&DHi Trevor,
First, we all very thank full for your relentless efforts in creation of this fantastic EA. Believe me that I tested more than 20000 eas with source code.
among them, according to my little knowledge, experience, I found 4 EAs interesting to me 1. Cash Profit, 2 RUSSIAN BEAR High Frequency Trading HFT 2018, 3. DemoEADNN (Neural network ea) and your's Monkey Pips. Yes I agree that other 2 EAs are not at all profitable for live trading. But the logic in those 4 EAs(including yours) inspired me a lot to learn mql programming. interestingly, in all these 4 EAs, no indicator was used. they are all purely, price action/tick action eas. I don't want to place here irrelevant and unnecessary information at here. I am getting good results with MP in live account with variable spread for only USDJPY pair. let me share the settings and results later.
My humble request to you is that please don't stop R&D to evolve yours EA as a perfect successful product. People who have some technical knowledge of mql programming only realize your intelligent logic of your ea. please please please don't respond to useless , non constructive, irrelevant posts.
I too realized that Asynchronous execution of trade is very important to get succeed in forex trading especially in scalping. for Asynchronous execution, below is the information I would like to share. please have a look into it and check if it is use full for our purpose.
Once again many thanks for extension of your sharing your intelligent logic with us.
https://www.forexfactory.com/showthread.php?t=260422
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 ) {